.bcd-page {
    background: #fcf9f8;
    color: #1c1b1b;
    font-family: 'Inter', sans-serif;
}

.bcd-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.bcd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 27, 27, .82), rgba(28, 27, 27, .42) 58%, rgba(185, 23, 47, .18));
}

.bcd-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 72px 0 58px;
}

.bcd-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.bcd-back:hover {
    color: #fff;
}

.bcd-back .material-symbols-outlined {
    font-size: 18px;
}

.bcd-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #f1a7b4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.bcd-title {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: 'Montserrat-Bold', 'Inter', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
}

.bcd-main {
    padding: 64px 0 90px;
}

.bcd-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.bcd-info-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid #eae7e7;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(28, 27, 27, .04);
}

.bcd-info-icon {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #b9172f;
    background: rgba(185, 23, 47, .08);
    border-radius: 50%;
}

.bcd-info-icon .material-symbols-outlined {
    font-size: 23px;
}

.bcd-info-card h2 {
    margin: 1px 0 8px;
    font-family: 'Montserrat-Bold', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.bcd-info-card p {
    margin: 0;
    color: #5a5a62;
    font-size: 14px;
    line-height: 1.7;
}

.bcd-section-heading {
    margin-bottom: 30px;
}

.bcd-section-heading span {
    display: block;
    margin-bottom: 8px;
    color: #b9172f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bcd-section-heading h2 {
    margin: 0;
    font-family: 'Montserrat-Bold', 'Inter', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
}

.bcd-topics {
    display: grid;
    gap: 20px;
}

.bcd-topic-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 170px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eae7e7;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(28, 27, 27, .03);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.bcd-topic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 23, 47, .35);
    box-shadow: 0 14px 34px rgba(185, 23, 47, .08);
}

.bcd-topic-image {
    min-height: 170px;
    background: #f2efee;
}

.bcd-topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bcd-topic-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
}

.bcd-topic-content h3 {
    margin: 0 0 10px;
    color: #1c1b1b;
    font-family: 'Montserrat-Bold', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.bcd-topic-content p {
    margin: 0 0 18px;
    color: #5a5a62;
    font-size: 14px;
    line-height: 1.65;
}

.bcd-topic-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: #b9172f;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.bcd-topic-link:hover {
    color: #8f1124;
}

.bcd-topic-link .material-symbols-outlined {
    font-size: 17px;
    transition: transform .25s ease;
}

.bcd-topic-link:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.bcd-empty,
.bcd-loading {
    padding: 36px;
    color: #767d85;
    text-align: center;
    background: #fff;
    border: 1px dashed #d8d2d0;
    border-radius: 14px;
}

@media (max-width: 767px) {
    .bcd-hero {
        min-height: 300px;
    }

    .bcd-hero-content {
        padding: 48px 0 42px;
    }

    .bcd-main {
        padding: 44px 0 64px;
    }

    .bcd-info-grid {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }

    .bcd-topic-card {
        grid-template-columns: 1fr;
    }

    .bcd-topic-image {
        min-height: 210px;
        max-height: 240px;
    }

    .bcd-topic-content {
        padding: 24px;
    }
}