/* ===================================
   RECOGNITION & IMPACT SECTION REDESIGN
   =================================== */

.recognition-section {
    background: #FAF8F5;
    padding: 80px 0;
}

/* Section Header */
.recognition-header {
    margin-bottom: 32px;
}

.recognition-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.recognition-accent-bar {
    width: 3px;
    height: 14px;
    background: #E07856;
}

.recognition-label {
    font-size: 11px;
    font-weight: 600;
    color: #E07856;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.recognition-title {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: #2C4251;
    text-align: left;
    margin: 0 0 6px 0;
}

.recognition-subtitle {
    font-size: 13px;
    color: #8A9BA5;
    text-align: left;
    margin: 0;
}

/* Subsection Labels */
.subsection-label {
    font-size: 11px;
    font-weight: 700;
    color: #E07856;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    display: block;
    text-align: left;
}

/* External Validation Section */
.validation-section {
    margin-bottom: 32px;
}

.validation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.validation-card {
    background: white;
    border-radius: 10px;
    padding: 20px 24px;
    border: 1px solid #EAE6E1;
    border-top: 3px solid #E07856;
}

.validation-title {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: #2C4251;
    margin: 0 0 4px 0;
}

.validation-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #E07856;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 8px 0;
}

.validation-description {
    font-size: 13px;
    color: #3D5563;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.validation-btn {
    background: #2C4251;
    color: white;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease;
}

.validation-btn:hover {
    background: #3D5563;
}

/* Awards Section */
.awards-section {
    margin-bottom: 32px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.award-card {
    background: white;
    border-radius: 10px;
    padding: 16px 18px;
    border: 1px solid #EAE6E1;
    border-top: 3px solid #E07856;
}

.award-name {
    font-size: 13px;
    font-weight: 700;
    color: #2C4251;
    margin: 0 0 3px 0;
}

.award-date {
    font-size: 11px;
    font-weight: 600;
    color: #E07856;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px 0;
}

.award-description {
    font-size: 12px;
    color: #8A9BA5;
    line-height: 1.5;
    margin: 0;
}

/* Impact Metrics Row */
.impact-metrics-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: #F5F1ED;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.impact-stat {
    text-align: center;
    border-right: 1px solid #EAE6E1;
    padding: 0 16px;
}

.impact-stat-last {
    border-right: none;
}

.impact-stat-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #2C4251;
    line-height: 1;
    margin-bottom: 4px;
}

.impact-stat-label {
    font-size: 10px;
    font-weight: 500;
    color: #8A9BA5;
}

/* Platform Partnerships Section */
.partnerships-section {
    margin-bottom: 32px;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.partnership-card {
    background: white;
    border-radius: 10px;
    padding: 16px 18px;
    border: 1px solid #EAE6E1;
}

.partnership-logo {
    max-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.partnership-title {
    font-size: 13px;
    font-weight: 700;
    color: #2C4251;
    margin: 0 0 4px 0;
}

.partnership-description {
    font-size: 12px;
    color: #8A9BA5;
    line-height: 1.5;
    margin: 0;
}

/* Certifications Section */
.certifications-section {
    margin-bottom: 0;
}

.certifications-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.certification-pill {
    background: white;
    border: 1px solid #EAE6E1;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #2C4251;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.certification-pill i {
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recognition-section {
        padding: 60px 0;
    }
    
    .validation-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-metrics-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 0;
    }
    
    .impact-stat {
        border-right: none;
        border-bottom: 1px solid #EAE6E1;
        padding: 12px 8px;
    }
    
    .impact-stat:nth-child(4),
    .impact-stat:nth-child(5),
    .impact-stat:nth-child(6) {
        border-bottom: none;
    }
    
    .partnerships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
