
.partner-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 20px;
    text-align: center;
}

.partner-section__inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.88rem;
    color: #6c757d;
}

.partner-section__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
}

.partner-section__divider {
    width: 1px;
    height: 18px;
    background: #dee2e6;
}

.partner-section__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.partner-section__link:hover,
.partner-section__link:focus {
    color: #c0392b;
    text-decoration: underline;
    outline: none;
}

.partner-section__link:focus-visible {
    outline: 2px solid #e74c3c;
    outline-offset: 3px;
    border-radius: 3px;
}

.partner-section__icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.partner-section__name {
    font-size: 0.96rem;
}

.partner-section__desc {
    font-weight: 400;
    color: #495057;
}

.partner-section__ext {
    font-size: 0.7rem;
    opacity: 0.55;
    margin-left: 2px;
}

@media (max-width: 480px) {
    .partner-section__desc,
    .partner-section__divider {
        display: none;
    }
    .partner-section {
        padding: 10px 16px;
    }
    .partner-section__label {
        font-size: 0.72rem;
    }
}