/* Material Symbols Sharp — 습도/풍속 아이콘 (Google Fonts 에서 받은 가변 폰트 로컬 호스팅) */
@font-face {
    font-family: 'Material Symbols Sharp';
    font-style: normal;
    font-weight: 100 700;
    src: url('fonts/material-symbols-sharp.woff2') format('woff2');
}

.material-symbols-sharp {
    font-family: 'Material Symbols Sharp';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* 메인 날씨 위젯 — swiper-slide 안 ment 위에 정적으로 박힘 (yjpg-portal weather-meta 발췌) */
.weather-widget {
    padding-bottom: 2em;
}
.weather-widget span {
    color: var(--White);
}
.weather-widget .weather-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9em;
    margin: 0;
    font-size: 1.6em;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6em 1em;
    border-radius: 5em;
    line-height: 1;
    pointer-events: auto;
    border: 1px solid oklch(0.98 0 0 / 0.5);
}

.weather-meta .weather-current,
.weather-meta .weather-status,
.weather-meta .weather-temp,
.weather-meta .weather-humidity,
.weather-meta .weather-wind {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-weight: 700;
    color: var(--white);
}

.weather-meta .weather-temp,
.weather-meta .metric {
    display: inline-flex;
    align-items: baseline;
    gap: 0.1em;
}

.weather-meta .weather-humidity,
.weather-meta .weather-wind {
    padding-left: 0.9em;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.weather-meta .unit {
    font-size: 0.8em;
    opacity: 0.8;
    line-height: 1.1;
    font-weight: 400;
}

.weather-meta .weather-icon {
}

/* yjpg-portal visual.css 의 .material-symbols-sharp 규칙 그대로 */
.weather-meta .material-symbols-sharp {
    font-variation-settings: 'FILL' 1;
    line-height: 1;
    opacity: 0.5;
}

@media (max-width: 820px) {
    .weather-widget .weather-meta {
        font-size: 1.2em;
        gap: 0.6em;
    }

    .weather-meta .weather-humidity,
    .weather-meta .weather-wind {
        padding-left: 0.6em;
        margin-left: 0.1em;
    }
}
