.weather-section{

padding:160px 0;

background:#F8FAFC;

}

.weather-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:30px;

margin-top:80px;

}

.weather-card{

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

transition:.35s;

}

.weather-card:hover{

transform:translateY(-10px);

}

.main-card{

background:linear-gradient(135deg,#22C55E,#2F855A);

color:#fff;

}

.weather-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.weather-icon{

font-size:52px;

}

.main-card h1{

font-size:72px;

margin-bottom:10px;

}

.weather-details{

display:flex;

justify-content:space-between;

margin-top:40px;

}

.weather-details span{

display:block;

opacity:.8;

margin-bottom:8px;

}

.weather-card i{

font-size:42px;

color:#22C55E;

margin-bottom:25px;

}

.weather-card h3{

margin-bottom:15px;

font-size:24px;

}

.weather-card p{

color:#6b7280;

line-height:1.8;

}

@media(max-width:1100px){

.weather-grid{

grid-template-columns:1fr;

}

.weather-details{

flex-direction:column;

gap:20px;

}

}