/* Homepage News Section */

/* Top row: Hero (left) + Other Publications (right) */
.bs-hn-top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    width: 100%;
}

.bs-hn-top__hero {
    flex: 0 0 45%;
    min-width: 0;
}

.bs-hn-top__other {
    flex: 1;
    min-width: 0;
}

/* Bottom row: Press Releases (full width, 2-column grid) */
.bs-hn-bottom {
    margin-top: 20px;
}

.bs-hn-pr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

/* Hero Card */
.bs-hn-hero__link,
.bs-hn-hero__link:link,
.bs-hn-hero__link:visited {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.bs-hn-hero__link:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bs-hn-hero__image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.bs-hn-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.bs-hn-hero__body {
    padding: 12px 4px 4px;
}

.bs-hn-hero__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 6px;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
    .bs-hn-top {
        flex-direction: column;
        gap: 16px;
    }

    .bs-hn-top__hero {
        flex: none;
    }

    .bs-hn-pr-grid {
        grid-template-columns: 1fr;
    }

    .bs-hn-hero__title {
        font-size: 16px;
    }
}
