@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* GRID */
.climate-categories {
    font-family: 'Montserrat', sans-serif;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.climate-card {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e4ecf2;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    color: #1f2a33;
    transition: all .25s ease;
}

.climate-card:hover {
    border-color: #0c5fa8;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

/* TEXT */
.climate-card-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.climate-card-text .count {
    font-size: 13px;
    color: #7a8a99;
    display: block;
    margin-bottom: 10px;
}

.climate-card-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.climate-card-text li {
    font-size: 13px;
    color: #4b5a66;
    line-height: 1.5;
}

/* IMAGE */
.climate-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .climate-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .climate-categories {
        grid-template-columns: 1fr;
    }
}
