/* ============================================
   AWARDS SECTION STYLES
   ============================================ */
.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    flex: 0 1 350px;
    /* Fixed base width, allows shrinking on mobile */
    min-width: 300px;
    /* Ensure they don't get too small */
    background-color: transparent;
    padding: 20px;
    border: none;
    transition: all 1.8s var(--ease-out-expo);
    /* Extended duration */
    text-align: center;
    position: relative;
    /* Ensure items within card are centered */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-card:hover {
    transform: translateY(-10px);
    opacity: 0.8;
}

.award-card--highlight {
    /* Making highlight subtle or just standard to match grid uniformity */
    background-color: transparent;
    border: 1px solid var(--color-black);
    /* Optional: Keep outlines for important ones only, or remove */
    /* Let's keep it distinct but minimal */
    border: none;
    position: relative;
}

/* Optional: Add a small line or indicator for highlighted items instead of full bg */
.award-card--highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--color-black);
}

.award-card--highlight .award-card__title,
.award-card--highlight .award-card__description {
    color: var(--color-text);
    /* Reset to normal text color */
}

.award-card__icon {
    font-size: 32px;
    /* Smaller, cleaner */
    margin-bottom: 20px;
    color: var(--color-black);
    transition: transform 0.3s ease;
}

.award-card:hover .award-card__icon {
    transform: scale(1.1);
}

.award-card__year {
    display: inline-block;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.award-card--highlight .award-card__year {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.award-card__title {
    font-size: 18px;
    /* Reduced from 24px for elegance */
    font-weight: 600;
    margin-bottom: 10px;
}

.award-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

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

/* ============================================
   PERFORMANCES GRID
   ============================================ */
/* ============================================
   PERFORMANCES GRID
   ============================================ */
.performances-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.performance-item {
    flex: 0 1 300px;
    min-width: 250px;
    background-color: var(--color-white);
    padding: 35px 25px;
    border-radius: 8px;
    /* Modern touch */
    border-left: none;
    /* Removed the harsh sidebar */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft, premium shadow */
    transition: all 0.4s ease;
    text-align: center;
    /* Ensure centered text inside */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Subtle definition */
}

.performance-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Add a decorative line to replace the border-left and add style */
.performance-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-black);
    margin: 15px auto 0;
    transition: width 0.3s ease;
}

.performance-item:hover::after {
    width: 60px;
}

.performance-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.performance-item__venue {
    font-size: 13px;
    color: var(--color-gray);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .performances-grid {
        gap: 20px;
    }
}