/* ---------- Weather Card (Kashid) ---------- */
.weather-card-wrapper {
  display:flex;
  justify-content:center;
  padding: 30px 20px;
  background: transparent;
}

.weather-card {
  width: 380px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-family: "Noto Sans Devanagari", "Tiro Devanagari Marathi", sans-serif;
  color: #0f2440;
  border: 1px solid rgba(0,0,0,0.05);
}

.wc-title {
  text-align:center;
  color:#e07b00;
  font-weight:700;
  margin-bottom:14px;
  font-size:20px;
}

.wc-inner {
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.wc-left {
  flex: 1 1 55%;
  text-align:center;
}

.location {
  font-weight:700;
  font-size:18px;
  margin-bottom:6px;
}

.wc-time {
  font-size:13px;
  color:#666;
  margin-bottom:8px;
}

.temp-row {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.weather-icon img {
  width:72px;
  height:72px;
}

.temp-value {
  display:flex;
  align-items:flex-start;
  gap:4px;
}

.big-temp {
  font-size:56px;
  font-weight:800;
  line-height:1;
  color:#101827;
}

.deg {
  font-size:20px;
  margin-top:6px;
  color:#101827;
}

.wc-desc {
  color:#333;
  margin-top:10px;
  font-weight:600;
}

.wc-right {
  flex: 1 1 45%;
  padding-left:8px;
}

.wc-list {
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
}

.wc-list li {
  display:flex;
  justify-content:space-between;
  padding:8px 6px;
  border-bottom: 1px dashed rgba(0,0,0,0.04);
  color:#222;
}

.li-label {
  color:#666;
  font-weight:600;
  margin-right:8px;
}

@media (max-width:420px) {
  .weather-card { width: 92%; padding:14px; }
  .temp-row { gap:8px; }
  .big-temp { font-size:44px; }
  .wc-inner { flex-direction:column; align-items:center; }
  .wc-right { width:100%; padding-left:0; margin-top:8px; }
}
