/* Appreciations Page Custom Styles */

/* Remove top padding from first section to join with navigation */
.section-masterpieces:first-of-type {
    padding-top: 0;
}

/* Reduce spacing between testimonials section and the following banner */
.section-testimonials {
    padding-bottom: 20px;
}

.section-testimonials + .section-masterpieces {
    padding-top: 20px;
}

/* Override awards-grid to use 2 columns instead of 3 */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reduce spacing between image and text in award cards */
.section-profile .award-content {
    padding: 10px 20px 15px 20px;
}

.section-profile .award-content h3 {
    margin: 0;
    padding-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
