.bn-partners-section {
    background-color: #F6F8FB;
    padding: 64px 40px;
    font-family: 'Inter', sans-serif;
}
.bn-header { text-align: center; margin-bottom: 0; }
.bn-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F47A20;
    font-weight: 500;
    margin: 0 0 8px;
}
.bn-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F223D;
    margin: 0 0 10px;
}
.bn-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 16px;
}
.bn-divider {
    width: 40px;
    height: 3px;
    background-color: #F47A20;
    margin: 0 auto 44px;
    border-radius: 2px;
}
.bn-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.bn-card {
    background: #ffffff;
    border: 1px solid #dde3ec;
    border-radius: 12px;
    padding: 28px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    text-decoration: none;
    transition: border-color 0.2s ease;
}
.bn-card:hover { border-color: #F47A20; }
.bn-card.featured { border: 2px solid #F47A20; }
.bn-card.placeholder { border-style: dashed; border-color: #c8d0dc; }
.bn-card.placeholder:hover { border-color: #F47A20; background: #FEF9F5; }
.bn-featured-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #F47A20;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.bn-avatar {
    width: 100px;
    height: 100px;
    background: #F6F8FB;
    border: 1px solid #dde3ec;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}
.bn-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}
.bn-initials {
    font-size: 28px;
    font-weight: 700;
    color: #0F223D;
}
.bn-partner-name {
    font-size: 14px;
    font-weight: 600;
    color: #0F223D;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}
.bn-partner-role {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 4px;
}
.bn-tag {
    display: inline-block;
    background: #FEF0E6;
    color: #C45E0F;
    border: 1px solid #FDDBB8;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 12px;
}
.bn-btn-wrap { text-align: center; margin-top: 40px; }
.bn-btn {
    display: inline-block;
    background-color: #0F223D;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.bn-btn:hover { background-color: #F47A20; }

@media (max-width: 768px) {
    .bn-partners-section { padding: 48px 20px; }
    .bn-partners-grid { grid-template-columns: repeat(2, 1fr); }
    .bn-title { font-size: 26px; }
}
@media (max-width: 480px) {
    .bn-partners-grid { grid-template-columns: 1fr; }
}
