/* === Golf La Herrería · Tiempo EN GRANDE === */

/* Caja completa */
.gwl-weather-box {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background-color: #4a4a4a;
    color: #ffffff;
    border-radius: 8px;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 22px;        /* tamaño base de texto */
    line-height: 1.4;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 8px rgba(0,0,0,0.20);
}

/* Bloques internos */
.gwl-weather-box .gwl-block {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Icono (emoji) en grande */
.gwl-weather-box .gwl-icon-symbol {
    font-size: 36px;
    line-height: 1;
}

/* Texto del icono (Despejado, Nublado, etc.) */
.gwl-weather-box .gwl-icon-label {
    font-size: 20px;
    font-weight: 600;
}

/* Temperatura principal en grande */
.gwl-weather-box .gwl-main-value {
    font-size: 34px;
    font-weight: 700;
}

/* Textos secundarios (viento, humedad, lluvia) */
.gwl-weather-box .gwl-secondary {
    font-size: 20px;
    opacity: 0.95;
}

/* Etiquetas tipo "Viento:", "Humedad:" */
.gwl-weather-box .gwl-label {
    font-weight: 700;
    color: #ffffffdd;
    font-size: 20px;
}

/* Separador entre bloques */
.gwl-weather-box .gwl-separator {
    font-size: 26px;
    opacity: 0.45;
}

/* Variante para cabecera utilizando [golf_weather class="tiempo-cabecera"] */
.tiempo-cabecera.gwl-weather-box {
    background-color: rgba(0,0,0,0.65);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 20px;
    box-shadow: none;
    letter-spacing: 0.01em;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .gwl-weather-box {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 18px;
        padding: 14px 18px;
    }

    .gwl-weather-box .gwl-main-value {
        font-size: 30px;
    }

    .gwl-weather-box .gwl-icon-symbol {
        font-size: 32px;
    }
}
