.static-cards {
    padding: 120px 0;
}

.static-cards__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.static-cards__header--title--wrapper, .static-cards__header--subtitle--wrapper {
    margin-bottom: 10px;
}

.static-cards__header--title {
    margin-bottom: 0;
    color: var(--gold);
}

.static-cards__header--subtitle {
    text-transform: uppercase;
    margin-bottom: 0;
}

.static-cards__header--right {
    align-self: flex-end;
}

.static-cards__header--link, .static-cards__header--link:hover {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.static-cards__header--link:hover {
    color: var(--gold);
}

.static-cards .card__card {
    margin: 0;
}

@media (max-width: 1199px) {
    .static-cards__header {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .static-cards__header--subtitle--wrapper {
        margin-bottom: 30px;
    }

    .static-cards__header--right {
        align-self: flex-start;
    }

    .static-cards__cards .swiper-wrapper {
        flex-wrap: nowrap;
        margin: 0;
    }

    .static-cards__card--wrapper {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .static-cards {
        padding: 80px 0;
    }

    .static-cards__card--wrapper {
        width: 260px;
    }

    .static-cards .card__card {
        max-width: 260px;
        height: 360px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .static-cards__cards .swiper-wrapper {
        width: auto;
    }
}