/* ============================================================
   ACHIEVEMENTS PAGE STYLES
   ============================================================ */

.achievements-section {
    background-color: #f2efe9;
    padding: 100px 8%;
}

.achievements-heading {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    margin: 10px 0 60px;
}

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

.achievement-card {
    display: block;
}

.achievement-photo {
    height: 200px;
    width: 400px;
    border-radius: 10px;
    margin-bottom: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.achievement-card:hover .achievement-photo {
    transform: translateY(-4px);
}

/* Placeholder art until real achievement photos are ready — swap
   these for background-image: url(...) once you have pictures */
.achievement-photo-1 {
    background: linear-gradient(135deg, #3a2f14 0%, #B8922A 55%, #f0ede8 120%);
}

.achievement-photo-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3c1c 45%, #B8922A 100%);
}

.achievement-photo-3 {
    background: linear-gradient(135deg, #B8922A 0%, #2d2d2d 60%, #1a1a1a 100%);
}

.achievement-title {
    font-size: 18px;
    font-weight: bold;
    color: #2D2D2D;
    margin: 0 0 6px;
}

.achievement-date {
    font-size: 14px;
    color: #777;
    font-family: Calibri, sans-serif;
    margin: 0;
}

@media (max-width: 900px) {
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}
