/* Supported Events Section */
#supported {
    padding: 100px 0;
}

#supported .section-heading {
    margin-bottom: 30px;
}

/* Year Sections */
.supported-year-section {
    margin-bottom: 10px;
}

.year-header {
    display: block;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.year-header:hover {
    background-color: #F68C32;
    border-color: #F68C32;
    color: #fff;
    text-decoration: none;
}

.year-header.active {
    background-color: #F68C32;
    border-color: #F68C32;
    color: #fff;
}

.year-icon {
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.year-header.active .year-icon {
    transform: rotate(45deg);
}

.year-title {
    font-size: 24px;
    font-weight: bold;
}

.event-count {
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.8;
}

/* Year Content */
.supported-year-content {
    display: none;
    padding: 20px 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    margin-top: -1px;
}

.supported-year-content.active {
    display: block;
}

.supported-events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.supported-item {
    padding: 15px;
    margin-bottom: 20px;
}

.supported-item img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
    transition: transform 0.3s ease;
}

.supported-item img:hover {
    transform: scale(1.1);
}

.supported-name {
    display: block;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 5px;
    line-height: 1.3;
    max-height: 3.9em;
    overflow: hidden;
}

@media (max-width: 768px) {
    .year-title {
        font-size: 18px;
    }
    
    .supported-item img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .supported-name {
        font-size: 10px;
    }
}
