.day-hero {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
    padding: 12px 14px 8px;
}

.day-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
}

.day-hero-main {
    min-width: 0;
    flex: 1 1 auto;
}

.day-hero-date {
    color: var(--text-primary);
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1;
    font-weight: 650;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.day-hero-weekday {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 7px;
    letter-spacing: 0.3px;
}

.sun-times {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: var(--text-primary);
}

.sun-time {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-width: 82px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.sun-time svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: var(--accent);
}

@media (max-width: 360px) {
    .day-hero {
        padding: 10px 10px 6px;
    }

    .day-hero-inner {
        gap: 10px;
        padding: 10px 12px;
    }

    .day-hero-date {
        font-size: 30px;
    }

    .sun-time {
        min-width: 76px;
        font-size: 14px;
    }

    .sun-time svg {
        width: 22px;
        height: 22px;
    }
}
