.today-date-section {
    min-height: 60px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 800px;
    margin: 30px auto 30px;
    padding: 8px 40px;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.today-date-text {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
    color: #1d2350;
    letter-spacing: 0.01em;
    white-space: pre-line;
    line-height: 1.35;
}

.today-weather-text {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #34407c;
    letter-spacing: 0.01em;
    white-space: pre-line;
    line-height: 1.35;
}

.today-weather-description {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.01em;
    white-space: pre-line;
    line-height: 1.35;
    text-align: left;
}

.today-weather-description-text {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.01em;
    white-space: pre-line;
    line-height: 1.35;
    text-align: left;
}

.today-weather-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.today-weather-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

body.dark-mode .today-date-section {
    background-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .today-date-text {
    color: #d9e2ff;
}

body.dark-mode .today-weather-text {
    color: #bccaff;
}

body.dark-mode .today-weather-description,
body.dark-mode .today-weather-description-text {
    color: #a8b2d9;
}

.today-weather-description-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    font-size: 0.7rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.01em;
    white-space: pre-line;
    line-height: 1.35;
    text-align: center;
    padding: 6px 12px;
    border: 1px solid #d6dcef;
    border-radius: 999px;
    background-color: #f6f8ff;
}

.today-weather-description-link:hover {
    color: #28336a;
    border-color: #b9c5eb;
    background-color: #edf2ff;
}

.today-weather-description-link:focus-visible {
    outline: 2px solid #28336a;
    outline-offset: 2px;
}

body.dark-mode .today-weather-description-link {
    color: #c7d3ff;
    border-color: rgba(199, 211, 255, 0.35);
    background-color: rgba(199, 211, 255, 0.08);
}

body.dark-mode .today-weather-description-link:hover {
    color: #dce5ff;
    border-color: rgba(220, 229, 255, 0.5);
    background-color: rgba(220, 229, 255, 0.14);
}

@media (max-width: 768px) {
    .today-date-section {
        margin: 24px auto 24px;
        padding: 6px 20px;
    }

    .today-weather-description {
        margin-top: 8px;
        font-size: 0.7rem;
        font-weight: 400;
        color: #666;
        letter-spacing: 0.01em;
        white-space: pre-line;
        line-height: 1.35;
        text-align: center;
    }
    
    .today-weather-description-text {
        margin: 0;
        font-size: 0.7rem;
        font-weight: 400;
        color: #666;
        letter-spacing: 0.01em;
        white-space: pre-line;
        line-height: 1.35;
        text-align: center;
    }

    .today-weather-description-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
        font-size: 0.7rem;
        font-weight: 400;
        color: #666;
        letter-spacing: 0.01em;
        white-space: pre-line;
        line-height: 1.35;
        text-align: center;
        padding: 6px 12px;
        border: 1px solid #d6dcef;
        border-radius: 999px;
        background-color: #f6f8ff;
    }
    
    .today-weather-description-link:hover {
        color: #28336a;
        border-color: #b9c5eb;
        background-color: #edf2ff;
    }
    
    .today-weather-description-link:focus-visible {
        outline: 2px solid #28336a;
        outline-offset: 2px;
    }
}