.tempest-weather {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}
.tempest-weather__summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.tempest-weather__icon {
  width: 76px;
  height: 76px;
}
.tempest-weather__temp {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
.tempest-weather__conditions {
  font-size: 1.1rem;
  font-weight: 600;
}
.tempest-weather__updated {
  margin: .25rem 0 0;
  color: #666;
  font-size: .9rem;
}
.tempest-weather__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .65rem;
  margin: 1rem 0;
}
.tempest-weather__details > div {
  background: #f7f7f7;
  border-radius: 8px;
  padding: .65rem;
}
.tempest-weather__details strong,
.tempest-weather__details span {
  display: block;
}
.tempest-weather__details strong {
  color: #555;
  font-size: .85rem;
}
.tempest-weather__heading {
  margin-top: 1.25rem;
}
.tempest-weather__daily,
.tempest-weather__hourly {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: .75rem;
}
.tempest-weather__day,
.tempest-weather__hour {
  text-align: center;
  background: #f7f7f7;
  border-radius: 8px;
  padding: .65rem;
}
.tempest-weather__day img,
.tempest-weather__hour img {
  display: block;
  width: 38px;
  height: 38px;
  margin: .35rem auto;
}
.tempest-weather__day small,
.tempest-weather__hour small {
  display: block;
  color: #555;
  line-height: 1.25;
}
.tempest-weather__footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 1rem;
  padding-top: .75rem;
  text-align: right;
  font-size: .9rem;
}
.tempest-weather__footer a {
  text-decoration: none;
}
.tempest-weather--page {
  max-width: 1100px;
}
.tempest-weather__error {
  color: #a00;
  font-weight: 600;
}

.tempest-weather--minimal {
  padding: .85rem;
}
.tempest-weather-minimal__top {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tempest-weather-minimal__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}
.tempest-weather-minimal__temp {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}
.tempest-weather-minimal__conditions {
  font-weight: 600;
  margin-top: .2rem;
}
.tempest-weather-minimal__feels {
  color: #666;
  font-size: .9rem;
  margin-top: .15rem;
}
.tempest-weather-minimal__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin-top: .85rem;
}
.tempest-weather-minimal__details > div {
  background: #f7f7f7;
  border-radius: 8px;
  padding: .55rem;
}
.tempest-weather-minimal__details strong,
.tempest-weather-minimal__details span {
  display: block;
}
.tempest-weather-minimal__details strong {
  color: #555;
  font-size: .8rem;
}
.tempest-weather-minimal__details span {
  font-size: .95rem;
}
.tempest-weather-minimal__footer {
  font-size: .85rem;
}
@media (max-width: 420px) {
  .tempest-weather-minimal__details {
    grid-template-columns: 1fr;
  }
}
