/* Single week / message page */

.week-hero {
    position: relative;
    padding-bottom: 18px;
}

.week-hero__media {
    position: absolute;
    inset: 0 0 auto 0;
    aspect-ratio: 16 / 9;
    min-height: 250px;
    overflow: hidden;
    background: linear-gradient(170deg, #1b3a55 0%, #0b1a26 80%);
}

.week-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.week-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 26, 38, 0.18) 0%,
        rgba(11, 26, 38, 0.4) 45%,
        rgba(11, 26, 38, 0.72) 82%,
        var(--bg) 100%
    );
}

.week-hero__inner {
    position: relative;
    z-index: 1;
    padding: 14px 18px 0;
}

.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    background: rgba(5, 15, 24, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
    color: var(--text);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}

.back-pill svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.week-hero__eyebrow {
    margin-top: 62px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.week-hero__title {
    margin-top: 2px;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.week-hero__subtitle {
    margin-top: 6px;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.week-hero__belief {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Action buttons ── */

.week-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 16px 4px;
}

.week-actions--single {
    grid-template-columns: 1fr;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--button-text);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, filter 0.15s;
}

.action-btn:active {
    transform: scale(0.985);
    filter: brightness(0.95);
}

.action-btn--read {
    background: var(--accent-dark);
}

.action-btn--listen {
    background: linear-gradient(100deg, var(--accent) 0%, #dc4e0c 100%);
}

.action-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.action-btn--listen .action-btn__icon {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.action-btn__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.action-btn--listen .action-btn__icon svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.action-btn__text {
    flex: 1;
    min-width: 0;
}

.action-btn__title {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.action-btn__sub {
    display: block;
    margin-top: 2px;
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.2;
}

.action-btn__chevron {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
    opacity: 0.85;
}

/* ── White info cards ── */

.week-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px 8px;
}

.info-card {
    background: var(--card);
    color: var(--card-text);
    border-radius: var(--radius);
    padding: 16px 16px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.info-card__head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--card-heading);
}

.info-card__head svg {
    width: 21px;
    height: 21px;
    fill: var(--card-heading);
    stroke: none;
    flex-shrink: 0;
}

.info-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Synopsis */

.synopsis__text p {
    font-size: 0.9rem;
    line-height: 1.55;
}

.synopsis__text p + p {
    margin-top: 10px;
}

.synopsis__text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 0;
    background: none;
    border: none;
    color: var(--card-heading);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.read-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.18s;
}

.read-more[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Scriptures */

.scripture-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    list-style: none;
    font-size: 0.88rem;
    font-weight: 500;
}

.scripture-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scripture-list li:not(:last-child)::after {
    content: '•';
    color: rgba(27, 59, 92, 0.45);
}

/* Takeaways */

.takeaway-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.takeaway-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.takeaway-list svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

/* Ask-a-question card */

.ask-card {
    background: #fde8de;
    color: var(--card-text);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.ask-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ask-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.ask-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--card-heading);
}

.ask-card__intro {
    margin-top: 3px;
    font-size: 0.85rem;
    line-height: 1.45;
}

.ask-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(100deg, var(--accent) 0%, #dc4e0c 100%);
    color: var(--button-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, filter 0.15s;
}

.ask-card__btn:active {
    transform: scale(0.985);
    filter: brightness(0.95);
}

.ask-card__btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

@media (max-width: 359px) {
    .week-actions {
        grid-template-columns: 1fr;
    }

    .week-hero__title {
        font-size: 2.1rem;
    }
}
