/* ================================================
   WCNO 89.9 FM — Custom Stylesheet
   /wp-content/themes/[child-theme]/css/wcno-custom.css
   
   TABLE OF CONTENTS
   -----------------
   1. Global Variables
   2. Wednesday Live — Single Post
      2a. Breadcrumb
      2b. Category Pill
      2c. Post Title & Date
      2d. Scripture Banner
      2e. Guest Card
      2f. Post Body Content
      2g. Event Block
      2h. Contact Block
      2i. On Demand Listen Bar
      2j. Tags
   3. Programs (placeholder)
   4. Shared Components
   ================================================ */


/* ================================================
   1. GLOBAL VARIABLES
   ================================================ */
:root {
    --wcno-blue:       #4A90C2;
    --wcno-blue-dk:    #3a7aad;
    --wcno-orange:     #E8922D;
    --wcno-orange-dk:  #c97520;
    --wcno-gold:       #F5B041;
    --wcno-dark:       #1a2535;
    --wcno-dark2:      #263347;
    --wcno-text:       #2d3748;
    --wcno-muted:      #8a97a8;
    --wcno-light:      #f7f9fc;
    --wcno-border:     #dce6f0;
    --wcno-white:      #ffffff;
}


/* ================================================
   2. WEDNESDAY LIVE — SINGLE POST
   ================================================ */

/* ── 2a. Breadcrumb ─────────────────────────────── */
.wl-breadcrumb {
    font-size: 11px;
    letter-spacing: 0.8px;
    color: var(--wcno-muted);
    margin-bottom: 20px;
}
.wl-breadcrumb a {
    color: var(--wcno-blue);
    text-decoration: none;
    font-weight: 600;
}
.wl-breadcrumb a:hover {
    text-decoration: underline;
}
.wl-breadcrumb .separator {
    margin: 0 6px;
    color: var(--wcno-border);
}

/* ── 2b. Category Pill ──────────────────────────── */
.wl-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--wcno-blue);
    color: var(--wcno-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
}
.wl-pill::before {
    content: '🎙';
    font-size: 11px;
}

/* ── 2c. Post Title & Date ──────────────────────── */
.wl-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--wcno-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}
.wl-date {
    font-size: 12px;
    color: var(--wcno-muted);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wl-date::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--wcno-orange);
    flex-shrink: 0;
}

.wl-body {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--wcno-text);
    margin-bottom: 36px;
}
.wl-body p { margin: 0 0 18px; }
.wl-body a { color: var(--wcno-blue); font-weight: 600; }
.wl-body strong { color: var(--wcno-dark); font-weight: 700; }

/* ── 2d. Scripture Banner ───────────────────────── */
.wl-scripture {
    background: linear-gradient(135deg, var(--wcno-dark) 0%, var(--wcno-dark2) 100%);
    border-left: 5px solid var(--wcno-gold);
    color: var(--wcno-white);
    padding: 28px 32px 24px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}
.wl-scripture::before {
    content: '\201C';
    position: absolute;
    top: -16px;
    left: 18px;
    font-size: 100px;
    color: rgba(245, 177, 65, 0.14);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.wl-scripture-text {
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 12px;
    position: relative;
}
.wl-scripture-ref {
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--wcno-gold);
    font-style: normal;
    display: block;
}

/* ── 2e. Guest Card ─────────────────────────────── */
.wl-guest-card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: var(--wcno-light);
    border: 1px solid var(--wcno-border);
    border-top: 4px solid var(--wcno-orange);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 36px;
}
.wl-guest-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border: 3px solid var(--wcno-white);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
.wl-guest-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wcno-blue), var(--wcno-dark));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wcno-white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}
.wl-guest-info {
    flex: 1;
    min-width: 0;
}
.wl-guest-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--wcno-dark);
    margin: 0 0 6px;
    line-height: 1.2;
}
.wl-guest-title {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* ── 2f. Post Body Content ──────────────────────── */
.wl-body {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--wcno-text);
    margin-bottom: 36px;
}
.wl-body p {
    margin: 0 0 18px;
}
.wl-body p:last-child {
    margin: 0;
}
.wl-body a {
    color: var(--wcno-blue);
    font-weight: 600;
    text-decoration: none;
}
.wl-body a:hover {
    text-decoration: underline;
}
.wl-body strong {
    color: var(--wcno-dark);
    font-weight: 700;
}

/* ── 2g. Event Block ────────────────────────────── */
.wl-event {
    background: #fff8ee;
    border: 1px solid #f0d8b0;
    border-left: 5px solid var(--wcno-gold);
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin-bottom: 36px;
}
.wl-event-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--wcno-blue);
    border-bottom: 2px solid var(--wcno-border);
    padding-bottom: 8px;
    margin: 0 0 18px;
}
.wl-event-badge {
    display: inline-block;
    background: var(--wcno-orange);
    color: var(--wcno-white);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.wl-event-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--wcno-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}
.wl-event-row {
    font-size: 14px;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: baseline;
    line-height: 1.5;
}
.wl-event-row:last-child {
    margin-bottom: 0;
}
.wl-event-row b {
    color: var(--wcno-orange);
    min-width: 80px;
    flex-shrink: 0;
    font-weight: 700;
}
.wl-event-row a {
    color: var(--wcno-blue);
    font-weight: 600;
    text-decoration: none;
}
.wl-event-row a:hover {
    text-decoration: underline;
}
.wl-event-registration {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0d8b0;
    font-size: 15px;
    line-height: 1.7;
}
.wl-event-registration a {
    color: var(--wcno-blue);
    font-weight: 700;
    text-decoration: none;
}
.wl-event-registration a:hover {
    text-decoration: underline;
}
.wl-event-registration strong {
    color: var(--wcno-dark);
}

/* ── 2h. Contact Block ──────────────────────────── */
.wl-contact {
    background: var(--wcno-light);
    border: 1px solid var(--wcno-border);
    border-left: 5px solid var(--wcno-blue);
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin-bottom: 36px;
}
.wl-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--wcno-blue);
    border-bottom: 2px solid var(--wcno-border);
    padding-bottom: 8px;
    margin: 0 0 18px;
}
.wl-contact-row {
    font-size: 15px;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: baseline;
    line-height: 1.6;
}
.wl-contact-row:last-child {
    margin-bottom: 0;
}
.wl-contact-row b {
    color: var(--wcno-dark);
    min-width: 110px;
    flex-shrink: 0;
    font-weight: 700;
}
.wl-contact-row a {
    color: var(--wcno-blue);
    font-weight: 600;
    text-decoration: none;
}
.wl-contact-row a:hover {
    text-decoration: underline;
}
.wl-contact-phone {
    font-size: 20px;
    font-weight: 800;
    color: var(--wcno-orange);
    text-decoration: none;
    display: inline-block;
}
.wl-contact-phone:hover {
    color: var(--wcno-orange-dk);
}
.wl-org-logo {
    display: block;
    max-height: 60px;
    max-width: 240px;
    margin-top: 18px;
    object-fit: contain;
}

/* ── 2i. On Demand Listen Bar ───────────────────── */
.wl-listen {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--wcno-dark);
    border-radius: 10px;
    padding: 22px 28px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.wl-listen-icon {
    width: 54px;
    height: 54px;
    background: var(--wcno-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--wcno-white);
    font-size: 20px;
}
.wl-listen-copy {
    flex: 1;
    min-width: 180px;
}
.wl-listen-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #8fa0b4;
    margin-bottom: 3px;
}
.wl-listen-title {
    display: block;
    color: var(--wcno-white);
    font-size: 16px;
    font-weight: 700;
}
.wl-listen-btn {
    display: inline-block;
    background: var(--wcno-orange);
    color: var(--wcno-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 26px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.wl-listen-btn:hover {
    background: var(--wcno-orange-dk);
    color: var(--wcno-white);
}

/* ── 2j. Tags ───────────────────────────────────── */
.wl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.wl-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--wcno-blue);
    background: #eaf3fb;
    border: 1px solid #c3ddf0;
    border-radius: 30px;
    padding: 5px 14px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.wl-tag:hover {
    background: var(--wcno-blue);
    color: var(--wcno-white);
    border-color: var(--wcno-blue);
}

/* ── Horizontal Rule ────────────────────────────── */
.wl-hr {
    border: none;
    border-top: 1px solid var(--wcno-border);
    margin: 36px 0;
}


/* ================================================
   2. WEDNESDAY LIVE — RESPONSIVE
   ================================================ */
@media (max-width: 640px) {
    .wl-guest-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .wl-guest-info {
        text-align: left;
    }
    .wl-listen {
        flex-direction: column;
        align-items: flex-start;
    }
    .wl-listen-btn {
        width: 100%;
        text-align: center;
    }
    .wl-event-row,
    .wl-contact-row {
        flex-direction: column;
        gap: 2px;
    }
    .wl-event-row b,
    .wl-contact-row b {
        min-width: unset;
    }
    .wl-scripture {
        padding: 22px 20px 18px;
    }
}


/* ================================================
   3. PROGRAMS (placeholder — build next)
   ================================================ */


/* ================================================
   4. SHARED COMPONENTS (placeholder)
   ================================================ */