@charset "UTF-8";

/* Swiper 수직 스크롤 필수 (화면 안 내려가는 현상 해결용) */
html, body, .wrapper.main { height: 100%; overflow: visible !important; }
.main-container, .container-slide { height: 100vh !important; width: 100%; }
.container-slide > .swiper-wrapper > .swiper-slide { height: 100vh !important; box-sizing: border-box; }
.news-section, .location-section { display: flex; flex-direction: column; justify-content: center; }

/* 2번째 슬라이드 통합 레이아웃 */
.news-weather-wrapper { display: flex; flex-direction: column; gap: 20px; align-items: center; margin: 0 auto; width: 100%; max-width: 1520px; }
.board-top-row { display: flex; justify-content: space-between; width: 100%; gap: 50px; }
.board-top-row .board-wrapper:first-child { width: 33.33%; max-width: 550px; }
.board-top-row .board-wrapper:last-child { width: 66.66%; max-width: unset; }

/* 신규 기상 정보 대시보드 디자인 */
.weather-wrap { width: 100%; background: #fff; border: 1px solid #e5e5e5; border-radius: 15px; padding: 25px 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.w-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid #222; padding-bottom: 10px; margin-bottom: 20px; }
.w-tit { font-size: 20px; font-weight: 700; color: #111; }
.w-time { font-size: 13px; font-weight: 500; color: #888; }

.w-body { display: flex; gap: 30px; }
.w-card { flex: 1; background: #f9f9f9; border-radius: 10px; overflow: visible; border: 1px solid #eee; }
.c-head { padding: 10px; text-align: center; color: #fff; font-weight: 700; font-size: 15px; }
.c-head.roof { background: #08AB13; }
.c-head.ground { background: #00428F; }
.c-body { padding: 20px; display: flex; align-items: center; gap: 20px; }

.c-temp { text-align: center; min-width: 100px; }
.t-val { font-size: 44px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
.t-val span { font-size: 20px; font-weight: 600; margin-left: 2px; }
.c-head.roof + .c-body .t-val { color: #08AB13; }
.c-head.ground + .c-body .t-val { color: #00428F; }
.t-feel { font-size: 13px; color: #666; margin-top: 5px; }

.c-list { flex: 1; border-left: 1px solid #ddd; padding-left: 20px; margin: 0; list-style: none; }
.c-list li { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px dashed #eaeaea; }
.c-list li:last-child { border-bottom: none; padding-bottom: 0; }
.l-tit { color: #777; }
.l-val { color: #333; }
.l-val strong { font-weight: 600; }
.l-val strong.red { color: #e53e3e; }
.l-val strong.blue { color: #3182ce; }
.sm-time { font-size: 11px; color: #999; margin-left: 2px; }

/* 모바일 & 태블릿 반응형 */
@media screen and (max-width: 1023px) {
    .board-top-row { flex-direction: column; gap: 30px; }
    .board-top-row .board-wrapper { width: 100% !important; max-width: 100% !important; }
    .w-body { flex-direction: column; gap: 15px; }
    .c-body { flex-direction: column; align-items: stretch; text-align: center; }
    .c-list { border-left: none; padding-left: 0; border-top: 1px solid #ddd; padding-top: 15px; margin-top: 5px; }
}