/* ================================
   Daily Horoscope – Hero Banner
   ================================ */

/* Shared container (matches style.css layout) */
.page-container {
    max-width: 1044px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Hero Wrapper */
.daily-hero {
    position: relative;
    width: 100%;
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden;
}

/* SEO-visible image */
.daily-hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Gradient overlay for text readability */
.daily-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 16, 64, 0.88) 0%,
        rgba(20, 16, 64, 0.60) 55%,
        rgba(20, 16, 64, 0.25) 100%
    );
    z-index: 1;
}

/* Content layer */
.daily-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: flex-start; /* LEFT alignment */
    padding: 0 32px;
}

/* Title */
.daily-hero-title {
    max-width: 720px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
     text-align: left;
}


/* Page Description under Hero */
 

.page-description {
       /* slightly narrower than container for readability */
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.6;
    color: #313957;
    text-align: left;
}

/* Improve rhythm on mobile */
@media (max-width: 767px) {
    .page-description {
        font-size: 16px;
        line-height: 1.65;
        margin-top: 20px;
    }
}


/* ================================
   Mobile Optimization
   ================================ */
@media (max-width: 767px) {

    .daily-hero {
        margin: 16px;
        border-radius: 16px;
    }

    .daily-hero-image {
        height: 200px;
    }

    .daily-hero-title {
        font-size: 26px;
        line-height: 1.25;
    }
}


/* ================================
   zodiac pills
   ================================ */
   /* Zodiac Pill Navigation */
.zodiac-pill-section {
    margin-top: 32px;
}

.zodiac-pill-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Pills */
.zodiac-pill {
    padding: 10px 18px;
    background: #eeeeee;
    border-radius: 999px;
    font-size: 15px;
    color: #313957;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.zodiac-pill:hover {
    background: #313957;
    color: #ffffff;
}

/* Mobile horizontal scroll */
@media (max-width: 767px) {
    .zodiac-pill-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .zodiac-pill-container::-webkit-scrollbar {
        display: none;
    }
}


/* ===============================
   Zodiac Two Column Layout
   =============================== */

.zodiac-content {
    margin-top: 64px;
}

/* Grid layout */
.zodiac-layout {
    display: grid;
    grid-template-columns: 1fr 300px; /* left content + empty right */
    gap: 48px;
    align-items: start;
}

/* LEFT COLUMN */
.zodiac-left {
    width: 100%;
}

/* Zodiac card image */
.zodiac-hero-card {
    margin-bottom: 32px;
}

.zodiac-hero-card img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    display: block;
}

/* Text content */
.zodiac-text-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #313957;
}

.zodiac-text-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #313957;
}

.zodiac-text-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

/* RIGHT COLUMN (empty placeholder) */
.zodiac-right {
    min-height: 300px;
}

/* ===============================
   Mobile Behaviour
   =============================== */
@media (max-width: 1024px) {
    .zodiac-layout {
        grid-template-columns: 1fr;
    }

    .zodiac-right {
        display: none;
    }

    .zodiac-hero-card img {
        max-width: 100%;
    }
}


/* ===============================
   Right Sidebar: Ready to Read
   =============================== */

.ready-to-read {
    position: sticky;
    top: 100px; /* below navbar */
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
}

.ready-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #313957;
}

.ready-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ready-list li {
    margin-bottom: 10px;
}

.ready-list li:last-child {
    margin-bottom: 0;
}

.ready-list a {
    font-size: 14px;
    line-height: 1.4;
    color: #313957;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ready-list a:hover {
    color: #FF9925;
    text-decoration: underline;
}

/* Hide sidebar on mobile (already grid-based, but explicit) */
@media (max-width: 1024px) {
    .ready-to-read {
        display: none;
    }
}
