.vww-bd {
    --vww-bd-cream: #f5eee5;
    --vww-bd-red: #9e111b;
    --vww-bd-red-dark: #771018;
    --vww-bd-ink: #2e2622;
    --vww-bd-muted: rgba(255,255,255,.78);
    color: #fff;
}

.vww-bd__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 34px;
}

.vww-bd__chip {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 0px 14px;
    min-height: 2em;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Palatino Linotype';
    font-style: italic;
    margin: 5px 5px 5px 0px;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.vww-bd__chip:hover,
.vww-bd__chip:focus-visible {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-1px);
    outline: none;
}

.vww-bd__chip.is-active {
    background: var(--vww-bd-cream);
    color: var(--vww-bd-red-dark);
    border-color: var(--vww-bd-cream);
}

.vww-bd__section {
    margin: 0 0 48px;
    scroll-margin-top: 120px;
}

.vww-bd__section[hidden] {
    display: none !important;
}

.vww-bd__section-head {
    margin-bottom: 32px;
}

.vww-bd__section-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.vww-bd__section-desc {
    max-width: 780px;
    margin-top: 8px;
    color: var(--vww-bd-muted);
    font-size: 14px;
}

.vww-bd__section-desc p:last-child {
    margin-bottom: 0;
}

.vww-bd__grid {
    display: grid;
    grid-template-columns: repeat(var(--vww-bd-columns, 4), minmax(0, 1fr));
    gap: 16px;
}

.vww-bd__card {
    margin: 0;
    min-width: 0;
}

.vww-bd__card-link {
    border-radius: 16px;
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--vww-bd-cream);
    color: var(--vww-bd-ink);
    border: 1px solid rgba(255,255,255,.52);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(45,0,6,.16);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vww-bd__card-link:hover,
.vww-bd__card-link:focus-visible {
    color: var(--vww-bd-ink);
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(45,0,6,.24);
    outline: none;
}

.vww-bd__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e7ded4;
}

.vww-bd__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.vww-bd__card-link:hover .vww-bd__image {
    transform: scale(1.035);
}

.vww-bd__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40,20,15,.15), transparent 42%);
    pointer-events: none;
}

.vww-bd__image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: rgba(46,38,34,.38);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    letter-spacing: .08em;
}

.vww-bd__content {
    padding: 16px 16px 18px;
}

.vww-bd__eyebrow {
    margin-bottom: 7px;
    color: var(--vww-bd-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vww-bd__name {
    margin: 0;
    color: var(--vww-bd-ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.vww-bd__excerpt {
    margin: 9px 0 0;
    color: #695d56;
    font-size: 13px;
    line-height: 1.55;
}

.vww-bd__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: var(--vww-bd-red-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.vww-bd__no-results,
.vww-bd-empty {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.8);
    text-align: center;
}

@media (max-width: 849px) {
    .vww-bd__filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -15px;
        margin-left: -15px;
        padding: 0 15px 8px;
        scrollbar-width: thin;
    }

    .vww-bd__chip {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .vww-bd__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 549px) {
    .vww-bd__section {
        margin-bottom: 38px;
    }

    .vww-bd__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vww-bd__card-link {
        display: grid;
        grid-template-columns: 42% 58%;
    }

    .vww-bd__media {
        aspect-ratio: auto;
        min-height: 160px;
    }

    .vww-bd__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 14px;
    }

    .vww-bd__name {
        font-size: 18px;
    }

    .vww-bd__excerpt {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}
