.weather {
    padding: 64px 0;
    position: relative;
}

.weather .weather-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.weather .weather-tabs-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.weather .weather-tabs-title-wrapper a {
    background-color: var(--Color-4);
    padding: 18px 32px;
    color: var(--Color-1);
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.37;
    transition: color .3s ease, background .3s ease;
}

.weather .weather-tabs-title-wrapper a.active {
    background-color: var(--Color-3);
    color: #fff;
}

.weather .weather-tab-single {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px 24px;
}

.weather .weather-single {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 224px;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    color: var(--Color-1, #003);
}

.weather .weather-single .weather-time {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.weather .weather-single .weather-degrees {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.weather .weather-single .weather-wind-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    line-height: 1;
}

.weather .weather-single .wind-title {
    font-weight: 600;
}

.weather .weather-single .weather-wind {
    font-weight: 300;
}

/* weather summary */

.weather .weather-summary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 64px;
}

.weather .items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 42px;
    max-width: 1140px;
    margin: 0 auto;
}

.weather .item-single {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: calc(25% - 32px);
}

.weather .season-title {
    color: var(--Color-2, #6E7BB0);
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.21;
    margin-bottom: 16px;
}

.weather .season-box {
    border: 1px solid var(--Color-3);
    padding: 16px;
    width: 100%;
}

.weather .box-icon {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.weather .box-icon svg {
    max-width: 24px;
    min-width: 24px;
    width: 100%;
}

.weather .icon-title {
    text-align: center;
    color: var(--Color-3, #A89968);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Familjen Grotesk";
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    text-transform: uppercase;
}

.weather .box-text {
    margin-top: 8px;
    color: var(--Color-1, #003);
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.06;
}

.weather .box-text span {
    font-size: 22px;
    font-weight: 400;
}

.weather .box-text.box-temperature {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.weather .box-text .temp-day {
    padding: 2px 8px;
}

.weather .box-text .temp-night {
    padding: 2px 8px;
    background-color: var(--Color-1);
    color: #fff;
}

@media (max-width:1199px) {
    .weather {
        padding: 48px 0
    }

    .weather .weather-summary-wrapper {
        margin-top: 48px;
    }
}

@media (max-width:991px) {
    .weather .item-single {
        gap: 12px;
        width: calc(50% - 24px);
    }

    .weather .season-title {
        margin-bottom: 4px;
    }

    .weather .box-text {
        font-size: 28px;
    }
}

@media (max-width:768px) {
    .weather {
        padding: 32px 0;
    }

    .weather .weather-summary-wrapper {
        margin-top: 32px;
    }

    .weather .weather-summary-wrapper {
        gap: 32px;
    }
}

@media (max-width:679px) {
    .weather .weather-single {
        min-width: calc(50% - 12px);
    }
}