/* ================================================
   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;
}

/* ── 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)
   ================================================ */


/* ================================================
   2b. WEDNESDAY LIVE — ARCHIVE HERO
   ================================================ */

/* ── Outer wrap ─────────────────────────────────── */
.wla-hero-wrap {
    background: linear-gradient(135deg, var(--wcno-dark) 0%, var(--wcno-dark2) 100%);
    padding: 60px 0 0;
    overflow: hidden;
}

/* ── Overline / heading area ────────────────────── */
.wla-hero-overline {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 40px;
    text-align: center;
}
.wla-hero-overline-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 146, 45, 0.18);
    border: 1px solid rgba(232, 146, 45, 0.4);
    color: var(--wcno-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.wla-hero-heading {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--wcno-white);
    line-height: 1.1;
    margin: 0 0 14px;
}
.wla-hero-heading span {
    color: var(--wcno-gold);
    display: block;
}
.wla-hero-sub {
    font-size: 16px;
    color: #a0b0c4;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Magazine grid ──────────────────────────────── */
.wla-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3px;
    max-width: 1200px;
    margin: 0 auto;
}
.wla-hero-col-main {
    display: flex;
    flex-direction: column;
}
.wla-hero-col-side {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* ── Individual panel ───────────────────────────── */
.wla-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.wla-hero-panel:hover {
    transform: scale(1.01);
    z-index: 2;
}
.wla-hero-panel--large {
    min-height: 480px;
}
.wla-hero-panel--small {
    min-height: 237px;
    flex: 1;
}

/* ── Initials fallback inside panel ─────────────── */
.wla-hero-initials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(74, 144, 194, 0.3);
    border: 2px solid rgba(74, 144, 194, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wcno-white);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* ── Panel content ──────────────────────────────── */
.wla-hero-panel-content {
    position: relative;
    padding: 28px;
    z-index: 1;
}
.wla-hero-panel--small .wla-hero-panel-content {
    padding: 20px 22px;
}

/* ── Panel pill ─────────────────────────────────── */
.wla-hero-panel-pill {
    display: inline-block;
    background: var(--wcno-blue);
    color: var(--wcno-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* ── Guest name ─────────────────────────────────── */
.wla-hero-panel-name {
    color: var(--wcno-white);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 6px;
}
.wla-hero-panel-name--sm {
    font-size: 17px;
    margin: 0 0 4px;
}

/* ── Guest title ────────────────────────────────── */
.wla-hero-panel-title {
    color: #c8d8e8;
    font-size: 13.5px;
    margin: 0 0 8px;
    line-height: 1.4;
}

/* ── Date ───────────────────────────────────────── */
.wla-hero-panel-date {
    color: var(--wcno-gold);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
}
.wla-hero-panel-date--sm {
    font-size: 10.5px;
    margin: 0 0 10px;
}

/* ── Read Story button ──────────────────────────── */
.wla-hero-panel-btn {
    display: inline-block;
    background: var(--wcno-orange);
    color: var(--wcno-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.wla-hero-panel-btn--sm {
    font-size: 11px;
    padding: 8px 16px;
}
.wla-hero-panel:hover .wla-hero-panel-btn {
    background: var(--wcno-orange-dk);
}


/* ================================================
   2c. WEDNESDAY LIVE — ARCHIVE FILTER BAR
   ================================================ */

.wla-filter-section {
    background: var(--wcno-white);
    border-bottom: 1px solid var(--wcno-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wla-filter-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.wla-filter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--wcno-muted);
    flex-shrink: 0;
}
.wla-filter-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}
.wla-filter-select {
    font-size: 13px;
    color: var(--wcno-text);
    border: 1px solid var(--wcno-border);
    border-radius: 4px;
    padding: 7px 12px;
    background: var(--wcno-light);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.wla-filter-select:focus {
    border-color: var(--wcno-blue);
}
.wla-filter-search {
    font-size: 13px;
    color: var(--wcno-text);
    border: 1px solid var(--wcno-border);
    border-radius: 4px;
    padding: 7px 14px;
    background: var(--wcno-light);
    outline: none;
    flex: 1;
    min-width: 200px;
    transition: border-color 0.2s;
}
.wla-filter-search:focus {
    border-color: var(--wcno-blue);
}
.wla-filter-search::placeholder {
    color: var(--wcno-muted);
}
.wla-filter-count {
    font-size: 12px;
    color: var(--wcno-muted);
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}


/* ================================================
   2d. WEDNESDAY LIVE — ARCHIVE CARD GRID
   ================================================ */

.wla-archive-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}
.wla-archive-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--wcno-blue);
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wla-archive-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--wcno-border);
}
.wla-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* ── Individual card ────────────────────────────── */
.wla-card {
    background: var(--wcno-white);
    border: 1px solid var(--wcno-border);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wla-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 37, 53, 0.12);
}

/* Card photo area */
.wla-card-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--wcno-dark) 0%, var(--wcno-dark2) 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.wla-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.3s ease;
}
.wla-card:hover .wla-card-photo img {
    transform: scale(1.04);
}
.wla-card-photo-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    letter-spacing: -2px;
}
.wla-card-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(26, 37, 53, 0.85);
    color: var(--wcno-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

/* Card body */
.wla-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.wla-card-pill {
    display: inline-block;
    background: #eaf3fb;
    color: var(--wcno-blue);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    align-self: flex-start;
}
.wla-card-guest-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--wcno-dark);
    line-height: 1.25;
    margin: 0 0 5px;
}
.wla-card-guest-title {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
}
.wla-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wcno-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--wcno-border);
    width: 100%;
}
.wla-card-read::after {
    content: '→';
    transition: transform 0.2s;
}
.wla-card:hover .wla-card-read::after {
    transform: translateX(4px);
}


/* ================================================
   2e. WEDNESDAY LIVE — PAGINATION
   ================================================ */

.wla-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 16px 0 0;
}
.wla-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--wcno-border);
    background: var(--wcno-white);
    color: var(--wcno-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}
.wla-pagination .page-numbers:hover,
.wla-pagination .page-numbers.current {
    background: var(--wcno-blue);
    border-color: var(--wcno-blue);
    color: var(--wcno-white);
}
.wla-pagination .page-numbers.dots {
    border: none;
    background: none;
    pointer-events: none;
}


/* ================================================
   WEDNESDAY LIVE — ARCHIVE RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
    .wla-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    /* Hero stacks vertically */
    .wla-hero-grid {
        grid-template-columns: 1fr;
    }
    .wla-hero-panel--large {
        min-height: 320px;
    }
    .wla-hero-panel--small {
        min-height: 200px;
    }
    .wla-hero-col-side {
        gap: 3px;
    }

    /* Cards single column */
    .wla-card-grid {
        grid-template-columns: 1fr;
    }

    /* Filter bar wraps */
    .wla-filter-bar {
        padding: 12px 16px;
    }
    .wla-filter-controls {
        width: 100%;
    }
    .wla-filter-search {
        min-width: 100%;
    }

    .wla-hero-overline {
        padding: 0 16px 28px;
    }
}
