.page-title {
    background: var(--blue);
}

.culture-program-content {
    margin-top: 32px;
}

.switch {
    display: flex;
}

.switch-button {
    border-radius: 12px;
    padding: 6px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 50%;
}

.switch-button.active .switch-button-icon svg path {
    fill: var(--light);
}

.switch-button:nth-child(1).active {
    background: var(--red);
}
.switch-button:nth-child(2).active {
    background: var(--blue);
}

.switch-button-text {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 24px;
    text-align: center;
}

.switch-button:nth-child(1) .switch-button-text {
    color: var(--red);
}
.switch-button:nth-child(2) .switch-button-text {
    color: var(--blue);
}

.switch-button.active .switch-button-text {
    color: var(--light);
}

.culture-program-cards {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.culture-program-card {
    width: calc((100% / 4) - (24px * 3) / 4);
}

.culture-program-card-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 288/180;
}

.culture-program-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.culture-program-card-tag {
    display: flex;
    align-items: center;
    gap: 3px;
    border-radius: 5px;
    padding: 4px 8px 6px 7px;
    background: var(--red);
}
.culture-program-card-tag:nth-child(2) {
    background: var(--blue);
}
.culture-program-card-tag:nth-child(3) {
    background: var(--yellow);
}

.culture-program-card-tag-icon {
    width: 12px;
    height: 12px;
}

.culture-program-card-tag-text {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 10px;
    line-height: 140%;
    color: var(--light);
}

.culture-program-card-tag:nth-child(3) .culture-program-card-tag-text {
    color: var(--dark);
}

.culture-program-card-title {
    margin-top: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--dark);
}

.culture-program-card-text {
    margin-top: 4px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #868686;
    --webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.culture-program-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .culture-program-card {
        width: calc((100% / 3) - (24px * 2) / 3);
    }
    .culture-program-cards {
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .culture-program-card {
        width: 100%;
    }
    .switch {
        flex-direction: column;
    }
    .switch-button {
        width: 100%;
        flex: auto;
    }
}

.culture-program-cards.loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.no-events {
    width: 100%;
    text-align: center;
    padding: 48px 0;
    font-family: var(--font-family);
    font-size: 14px;
    color: #868686;
}
