/* ====== FONT ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ====== BASE ====== */
.climate-block {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #eef3f7 0%, #f9fcff 60%);
    border-radius: 18px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    color: #1f2a33;
}

/* ====== LEFT ====== */
.climate-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* LOGO */
.climate-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .climate-logo img {
        width: 48px;
        height: 48px;
    }

.climate-title {
    font-size: 26px;
    font-weight: 800;
}

    .climate-title span {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #6b7b88;
        margin-top: 4px;
    }

/* FEATURES */
.climate-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-icon {
    width: 42px;
    height: 42px;
}

.feature h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #0c5fa8;
    letter-spacing: 0.5px;
}

.feature p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    color: #4b5a66;
}

/* BOTTOM */
.climate-bottom {
    border-top: 1px solid #dbe4ec;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bottom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #34424e;
}

/* ====== RIGHT ====== */
.climate-right {
    text-align: right;
}

    .climate-right img {
        max-width: 100%;
    }

.climate-contact {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0c5fa8;
}

    .climate-contact a {
        color: #0c5fa8;
        text-decoration: none;
        font-weight: 600;
    }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .climate-block {
        grid-template-columns: 1fr;
    }

    .climate-right {
        text-align: center;
    }

    .climate-features,
    .climate-bottom {
        grid-template-columns: 1fr;
    }
}
