/* ==========================================================================
   Devotee Promotion component ("Recommended for Devotees")

   Visual language: a quiet editorial note, not an ad unit — a left accent
   rule and generous spacing instead of a bordered, shadowed card. One
   shared structure (.promo), four layout variants:
   .promo--full | .promo--medium | .promo--sidebar | .promo--footer

   Mobile-first: base rules target small screens; the min-width query
   below is the only enhancement, switching full/medium to a side-by-side
   row once there is enough width for it.
   ========================================================================== */

.promo {
    --promo-accent: #92400e;
    --promo-accent-soft: #fbead2;
    --promo-ink: #2a2420;
    --promo-muted: #6b6055;

    background: #fffdf9;
    border-left: 3px solid var(--promo-accent);
    border-radius: 4px;
    padding: 18px 20px;
    margin: 28px 0;
    font-size: 15px;
    line-height: 1.55;
}

.promo__kicker {
    display: block;
    color: var(--promo-muted);
    font-size: 12.5px;
    font-weight: 600;
    margin: 0 0 8px;
}

.promo__icon {
    margin-right: 5px;
}

.promo__title {
    margin: 0 0 6px;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.35;
    color: var(--promo-ink);
}

.promo__desc {
    margin: 0 0 14px;
    max-width: 60ch;
    color: var(--promo-muted);
}

.promo__trust {
    margin: 0;
    font-size: 0.82em;
    font-style: italic;
    color: var(--promo-muted);
}

.promo__action {
    margin: 14px 0 0;
}

.promo__button {
    display: inline-block;
    background: var(--promo-accent-soft);
    color: #7a3409;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    padding: 13px 20px;
    border-radius: 6px;
    border: 1px solid var(--promo-accent);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.promo__button:hover,
.promo__button:active {
    background: var(--promo-accent);
    color: #ffffff;
}

.promo__button:focus {
    outline: 3px solid var(--promo-accent);
    outline-offset: 2px;
}

/* Full width + medium horizontal: side-by-side once there's room for it */
@media (min-width: 700px) {
    .promo--full,
    .promo--medium {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .promo--full .promo__body,
    .promo--medium .promo__body {
        flex: 1 1 auto;
    }

    .promo--full .promo__action,
    .promo--medium .promo__action {
        flex: 0 0 auto;
        margin-top: 0;
    }
}

.promo--medium {
    max-width: 720px;
}

/* Sidebar and footer cards are always narrow columns, so they stay in the
   compact, stacked layout at every viewport width, and skip the trust
   line so they don't feel crowded. */
.promo--sidebar,
.promo--footer {
    padding: 14px 16px;
    font-size: 14px;
}

.promo--footer {
    font-size: 13px;
}

.promo--footer .promo__title {
    font-size: 1.05em;
}

.promo--sidebar .promo__trust,
.promo--footer .promo__trust {
    display: none;
}
