/* ===== Honors Page ===== */
.honors-section {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 500px;
}

.honors-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.honors-section .section-header h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.honors-section .section-header p {
    font-size: 16px;
    color: #999;
}

.honors-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 16px;
}

.honors-section .honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.honors-section .honor-item {
    text-align: center;
    transition: all 0.3s ease;
}

.honors-section .honor-item:hover {
    transform: translateY(-5px);
}

.honors-section .honor-img {
    aspect-ratio: 4 / 3;
    border: 1px solid #eee;
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.honors-section .honor-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.honors-section .honor-item:hover .honor-img img {
    transform: scale(1.05);
}

.honors-section .honor-item h4 {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .honors-section .honors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .honors-section .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .honors-section .honors-grid {
        grid-template-columns: 1fr;
    }
}
