/* Weather Mention Widget CSS */
/* Scoped only inside .weather-card */

/* ===========================
    Weather Widget
=========================== */

.weather-card .weather-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

.weather-card .weather-location {
    text-align: right;
    line-height: 1.05;
    opacity: 0.95;
}

.weather-card .weather-location-top {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.85;
}

.weather-card .weather-location-bottom {
    margin-top: 3px;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.85;
}

.weather-card .weather-icon {
    display: none;
    place-items: center;
    width: 45px;
}

.weather-card .weather-icon img {
    width: 100%;
    height: auto;
}

.weather-card .weather-main {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.weather-card .weather-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1;
}

.weather-card .weather-temp {
    font-size: clamp(20px, 4.2vw, 25px);
    font-weight: 700;
	margin-left: 5px;
}

.weather-card .weather-cond {
    font-size: clamp(16px, 2.4vw, 20px);
    font-weight: 600;
    opacity: 0.95;
}

.weather-card .weather-sub {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.85;
}

@media screen and (max-width: 1024px) {
    .weather-card .weather-temp {
        font-size: 18px;
    }

    .weather-card .weather-cond {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .weather-card .weather-content {
        justify-content: flex-start;
        gap: 2px;
    }

    .weather-card .weather-temp {
        font-size: 16px;
    }

    .weather-card .weather-sub {
        font-size: 8px;
    }
}