/* HONORED PAGE - PRO MERITIS */

.honored-hero {
    height: 60vh;
    min-height: 400px;
    width: 100%;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.honored-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 120px 24px 0;
}

.honored-hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(to right, #D4CA05, #2B7A87);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeUp 1s ease backwards;
}

.honored-hero p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.9;
    animation: fadeUp 1s ease 0.2s backwards;
}

/* GRID SECTION */
.honored-section {
    padding: 100px 24px;
    background: #f5f5f7;
}

.honored-container {
    max-width: 1300px;
    margin: 0 auto;
}

.honored-heading {
    text-align: center;
    margin-bottom: 60px;
}

.honored-heading h2 {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    position: relative;
    display: inline-block;
}

.honored-heading h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #D4CA05, #2B7A87);
}

.honored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.honored-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 32px 28px;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.3s ease;
}

.honored-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.honored-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.honored-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #2B7A87;
}

.honored-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.honored-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.honored-badge {
    display: inline-block;
    background: linear-gradient(to right, #D4CA05, #2B7A87);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.honored-period {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 20px;
}

.honored-roles {
    list-style: none;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.honored-roles li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.honored-roles li:last-child {
    margin-bottom: 0;
}

.honored-roles li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2B7A87;
}

.role-name {
    font-weight: 600;
    color: #1d1d1f;
}

.role-dates {
    color: #86868b;
}

@media (max-width: 768px) {
    .honored-hero h1 {
        font-size: 36px;
    }

    .honored-heading h2 {
        font-size: 36px;
    }

    .honored-grid {
        grid-template-columns: 1fr;
    }
}
