/* ===================================
   EDUCATION SECTION REDESIGN
   =================================== */

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

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

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

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

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

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

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

/* Education Grid */
.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 28px;
}

/* Education Entry */
.education-entry {
    background: #F5F1ED;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #EAE6E1;
    border-top: 3px solid #E07856;
}

.edu-status-label {
    font-size: 10px;
    font-weight: 700;
    color: #4A9B8E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    display: block;
}

.edu-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #2C4251;
    margin: 0 0 4px 0;
}

.edu-institution {
    font-size: 12px;
    color: #8A9BA5;
    margin: 0 0 4px 0;
}

.edu-date-range {
    font-size: 12px;
    font-weight: 600;
    color: #E07856;
    margin: 0 0 14px 0;
}

.edu-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.edu-badge {
    background: white;
    border: 1px solid #EAE6E1;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #2C4251;
}

.edu-body {
    font-size: 13px;
    color: #3D5563;
    line-height: 1.7;
    margin: 0;
}

/* Professional Certifications */
.professional-certs-section {
    margin-top: 28px;
}

.prof-certs-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: #2C4251;
    margin: 0 0 14px 0;
}

.prof-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.prof-cert-card {
    background: white;
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid #EAE6E1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prof-cert-card i {
    font-size: 20px;
    color: #2C4251;
}

.prof-cert-card span {
    font-size: 12px;
    font-weight: 600;
    color: #2C4251;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .education-section {
        padding: 60px 0;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .prof-certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
