/* 실시간 정보 섹션 스타일 */
.realtime-info {
    padding: 30px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.info-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* 공통 카드 스타일 */
.weather-item, .exchange-item {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.weather-item:hover, .exchange-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 날씨 정보 스타일 */
.weather-info {
    flex: 2;
}

.weather-grid {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.weather-item {
    flex: 1;
    text-align: center;
    min-width: 140px;
}

.weather-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.weather-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.weather-icon {
    font-size: 24px;
    color: #666;
}

.temp {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.weather-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.humidity, .wind {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* 구분선 */
.info-divider {
    width: 1px;
    height: 160px;
    background-color: #ddd;
    margin: 0 20px;
}

/* 환율 정보 스타일 */
.exchange-info {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exchange-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

.exchange-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 15px;
    min-width: 140px;
}

.rate-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    white-space: nowrap;
}

.rate {
    font-size: 20px;
    color: #333;
    margin-bottom: 4px;
}

.rate .number {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    margin-right: 2px;
}

.currency {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.exchange-update {
    font-size: 12px;
    color: #888;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}

/* 반응형 스타일 */
@media (max-width: 991px) {
    .info-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .weather-grid, .exchange-grid {
        flex-wrap: wrap;
    }
    
    .weather-item, .exchange-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .info-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}

@media (max-width: 575px) {
    .weather-item, .exchange-item {
        flex: 0 0 100%;
    }
    
    .exchange-grid {
        gap: 15px;
    }
} 