
.tiempo-clima {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.tiempo-clima__icono {
    width: 42px;
    font-size: 32px;
    line-height: 1;
    text-align: center;
}

.tiempo-clima__ciudad {
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 600;
}

.tiempo-clima__datos {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tiempo-clima__datos strong {
    font-size: 22px;
    font-weight: 700;
}

.tiempo-clima__datos span {
    font-size: 13px;
    color: #666;
}

.tiempo-clima__credito {
    margin-top: 2px;
    padding-left: 52px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #888;
}

.tiempo-clima__credito a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 767px) {
    .tiempo-clima__datos span {
        display: none;
    }

    .tiempo-clima__credito {
        padding-left: 0;
    }
}

