/* weather.css */

/* 전체 페이지 배경색 및 기본 폰트 설정 */
body.post-type-weather,
body.tax-location,
body.post-type-archive-weather {
    background-color: #f0f4f8;
    font-family: 'Arial', sans-serif;
    color: #4a5568;
}

/* 날씨 컨테이너 박스 스타일 */
.weather-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 헤더 제목 스타일 */
.weather-header h1 {
    color: #3b82f6;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* 부제목 스타일 */
.weather-header p {
    text-align: center;
    color: #718096;
    margin-top: 0;
}

/* 데이터 섹션 레이아웃 */
.weather-data {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 2px solid #e2e8f0;
}

/* 개별 데이터 항목 스타일 */
.weather-data-item {
    text-align: center;
    padding: 1rem;
    flex: 1;
}

.weather-data-item h3 {
    font-size: 1.125rem;
    color: #4c51bf;
    margin-bottom: 0.5rem;
}

.weather-data-item p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin: 0;
}

/* 아카이브 페이지 (목록) 스타일 */
.weather-list-container {
    list-style-type: none;
    padding: 0;
}

.weather-list-item {
    margin-bottom: 1rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.weather-list-item:hover {
    transform: translateY(-3px);
}

.weather-list-item a {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4299e1;
}

/* 날씨 데이터 아이콘 (예시) */
.weather-icon {
    font-size: 3rem;
    color: #f6ad55;
}

