:root {
    --ll-blue-1: #0a2e57;
    /* fondo */
    --ll-blue-2: #0088c4;
    /* bandas */
    --ll-accent: #27c2ff;
    /* líneas/accents */
    --ll-white: #ffffff;
}

.ll-card {
    /* width: 310px; */
    min-width: 310px;
    width: 100%;
    /* border-radius: 10px; */
    overflow: hidden;
    color: var(--ll-white);
    font-family: 'Quicksand', -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--ll-blue-1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

/* Filas/bandas */
.ll-row {
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.ll-row--top {
    background: var(--ll-blue-1);
    font-weight: 600;
    opacity: .95;
}

.ll-date {
    font-size: 13px;
}

.ll-row--place {
    background: var(--ll-blue-2);
    gap: 8px;
}

.ll-pin {
    display: inline-flex;
    color: #ffffff;
}

.ll-place {
    font-size: 24px;
    font-weight: 600;
}

.ll-row--temp {
    background: var(--ll-blue-1);
    justify-content: center;
    gap: 14px;
    padding: 18px 14px;
    border-top: 2px solid rgba(39, 194, 255, .25);
    border-bottom: 2px solid rgba(39, 194, 255, .25);
}

.ll-icon {
    color: #b9dafd;
    display: flex;
}

.ll-icon img {
    width: 70px;
    height: 70px;
}

.ll-temp {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.ll-temp-number {
    font-size: 54px;
    font-weight: 500;
    line-height: .9;
    letter-spacing: 2px;
    font-family: 'Anton', sans-serif;
}

.ll-temp-unit {
    font-size: 40px;
    font-weight: 400;
    opacity: 1;
    color: var(--ll-blue-2);
    line-height: 1;
}

.ll-row--snow {
    background: var(--ll-blue-2);
    justify-content: center;
}

.ll-snow-kind {
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ll-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    /* font-weight: 800; */
    letter-spacing: .02em;
    padding: 2px 8px;
    border-radius: 4px;
}

.ll-text {
    opacity: 1;
}

.ll-sep {
    opacity: .5;
}

.ll-row--levels {
    background: var(--ll-blue-1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    text-align: center;
}

.ll-label {
    font-size: 12px;
    opacity: .9;
}

.ll-value {
    font-size: 16px;
    font-weight: 800;
    margin-top: 2px;
}

.ll-row--bottom {
    background: var(--ll-blue-2);
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.ll-uv strong {
    font-weight: 800;
}

.ll-more {
    color: var(--ll-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ll-pipe {
    opacity: .5;
}

.ll-badge.is-active,
.ll-text.is-active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 800;
}
.cursor-pointer {
    cursor: pointer;
}