
.tabs {
    text-align: center;
}


input[name="tab_item"] {
    display: none;
}

.tab_content {
    display: none;
}


#year-2024:checked~#year-2024_content,
#year-2023:checked~#year-2023_content,
#year-2022:checked~#year-2022_content,
#year-2021:checked~#year-2021_content {
    display: block;
}

.tab_item {
    margin-top: 20px;
    color: #202124;
}

.tabs input:checked+.tab_item {
    color: #202124;
    border-bottom: 2px solid #202124;
    padding-bottom: 3px;
}


.sticky-title-container {
    position: relative;
    overflow: hidden;
}

.sticky-title-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom,
    transparent 0%,
    #F9FAFB 100%); /* 배경색과 동일하게 */
    pointer-events: none;
    z-index: 1;
}
