/* Düzlem Ozalit - Kur / Altın / Hava Durumu Widget */
.market-weather-section{
  background:#f5f8fc;
  padding:28px 0;
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}

.market-weather-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.mw-card{
  background:white;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 10px 26px rgba(7,31,58,.06);
}

.mw-card.weather{
  align-items:flex-start;
}

.mw-icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#fff2e4;
  font-size:24px;
  flex:0 0 48px;
}

.mw-card span{
  display:block;
  color:#64748b;
  font-size:14px;
  font-weight:800;
}

.mw-card strong{
  display:block;
  color:#071f3a;
  font-size:21px;
  line-height:1.2;
  margin-top:3px;
}

.mw-card small{
  display:block;
  color:#64748b;
  margin-top:5px;
  font-size:12px;
}

.mw-note{
  margin:10px 0 0;
  text-align:center;
  color:#94a3b8;
  font-size:10px;
  opacity:0.75;
  font-weight:500;
}

@media(max-width:1000px){
  .market-weather-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .market-weather-grid{
    grid-template-columns:1fr;
  }

  .market-weather-section{
    padding:22px 0;
  }

  .mw-card strong{
    font-size:19px;
  }
}
