.bl-hero {
    /* background: linear-gradient(160deg, #173323, #0F2418);
    padding: 88px 24px 72px;
    color: #F4F1E4; */
    position: relative;
    min-height: 780px;
    margin-top: -104px;
    /* pulls the section up under the transparent sticky header, same as home */
    padding-top: 104px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bl-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.bl-eyebrow {
    display: inline-block;
    background: #CBE21D;
    color: #14301F;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.bl-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
}

.bl-highlight {
    color: #CBE21D;
}

.bl-sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244, 241, 228, .82);
    max-width: 600px;
    margin: 0;
}

.bl-docs {
    background: #F5F1E3;
    padding: 64px 24px;
}

.bl-docs-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.bl-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.bl-doc-card {
    background: #fff;
    border: 1px solid #E4DFC9;
    border-radius: 14px;
    padding: 22px 24px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.bl-doc-card:hover {
    box-shadow: 0 16px 32px -18px rgba(20, 48, 31, .28);
    transform: translateY(-2px);
}

.bl-doc-badge {
    display: inline-block;
    background: #E9F2C9;
    color: #46621A;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 12px;
}

.bl-doc-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1B2A20;
}

.bl-doc-desc {
    font-size: 13.5px;
    color: #5B6154;
    line-height: 1.55;
    margin: 0 0 14px;
}

.bl-doc-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #173323;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}

.bl-doc-link:hover {
    border-color: #173323;
}

.bl-empty {
    color: #5B6154;
    font-size: 14px;
}