.farhub-today-card {
    direction: rtl;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 16px;
    max-width: 320px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Tahoma', Arial, sans-serif;
    margin: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farhub-today-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.farhub-today-card .date {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #222;
}

.farhub-today-card .date strong {
    display: block;
    margin-bottom: 3px;
}

.farhub-today-card ul {
    list-style: disc;
    margin: 0 0 10px 20px;
    padding: 0;
    color: #333;
    font-size: 14px;
}

.farhub-today-card ul li {
    margin-bottom: 4px;
}

.farhub-today-card a {
    display: inline-block;
    background: #0073aa;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.farhub-today-card a:hover {
    background: #005177;
}

.farhub-today-card .astronomy {
    font-size: 13px;
    color: #555555;
    margin-top: 8px;
    line-height: 1.6;
}

/* Holiday state */
.farhub-today-card--holiday {
    border: 1px solid #ff4d4f;
}


/* Slider alignment helper */
.farhub-today-card-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
}

/* Responsive behavior for mobile – card goes full width under slider */
@media (max-width: 768px) {
    .farhub-today-card-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .farhub-today-card {
        max-width: 100%;
        margin: 10px 0;
    }
}

/* Simple fade/slide-in animation for integration with slider */
.farhub-today-card-animate {
    opacity: 0;
    transform: translateX(20px);
    animation: farhubCardIn 0.6s ease forwards;
}

@keyframes farhubCardIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

