/* ===== NAMESPACE & FONT ===== */
.awards-section,
.awards-section * {
    font-family: Calibri, Candara, Segoe, "Segoe UI", Arial, sans-serif;
}

/* ===== LAYOUT ===== */
.awards-section {
    background: #f8fafc;
    padding: 80px 16px;
}

.awards-container {
    max-width: 1300px;
    margin: auto;
}

.awards-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}

/* ===== FILTERS ===== */
.awards-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.awards-filter-btn {
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid #c7d2fe;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #1d4ed8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awards-filter-btn:hover,
.awards-filter-btn.active {
    background: #2563eb;
    color: #ffffff;
}

/* ===== GRID ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* ===== CARD ===== */
.awards-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.awards-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.awards-card.national::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* ===== HOVER EFFECT ===== */
.awards-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 55px rgba(0,0,0,0.18);
}

/* ===== CARD CONTENT ===== */
.awards-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.awards-year {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.awards-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #020617;
    margin-bottom: 12px;
    line-height: 1.35;
}

.awards-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
}

.awards-country {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

/* ===== SCROLL ANIMATION ===== */
.awards-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.awards-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 480px) {
    .awards-card {
        padding: 20px;
    }

    .awards-card-title {
        font-size: 16px;
    }
}
