/* Awards Page Styles */

.awards-page {
    font-family: 'Montserrat', sans-serif;
}

/* Awards Hero Section */
.awards-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('/wp-content/uploads/2025/09/robin-noguier-sydwCr54rf0-unsplash-1-scaled.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.awards-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 84, 32, 0.85) 0%, rgba(234, 232, 248, 0.7) 100%);
    z-index: 1;
}

.awards-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.awards-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.awards-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
}

/* Introduction Section */
.awards-intro-section {
    padding: 0 0 60px 0;
    background-color: var(--page-white);
}

.awards-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.awards-intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--accent-charcoal-black);
    margin: 0;
}

/* Awards Grid Section */
.awards-grid-section {
    padding: 0 0 100px 0;
    background-color: var(--page-white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: var(--page-white);
    border: none;
    border-radius: 0;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.award-card:hover {
    transform: translateY(-8px);
}

.award-logo {
    margin-bottom: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.award-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.award-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-year {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-charcoal-black);
    margin: 0;
    line-height: 1.3;
}

.award-organization {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.award-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--accent-charcoal-black);
    margin-top: 12px;
}

.award-description p {
    margin: 0 0 12px 0;
}

.award-description p:last-child {
    margin-bottom: 0;
}

.no-awards-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-awards-message a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .awards-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .awards-hero-title {
        font-size: 40px;
    }
    
    .awards-hero-subtitle {
        font-size: 18px;
    }
    
    .awards-intro-text {
        font-size: 18px;
    }
    
    .award-card {
        padding: 30px;
    }
    
    .award-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .awards-hero-title {
        font-size: 32px;
    }
    
    .award-card {
        padding: 24px;
    }
}

