/* =========================
   WEATHER PAGES
========================= */

/* Monthly overview table */
table.weather-month-table th,
table.weather-month-table td {
  font-size: 17px !important;
  line-height: 1.55 !important;
}

/* Quick info list */
.weather-quick-info {
  margin: 0 0 24px;
  padding-left: 20px;
}

.weather-quick-info li {
  margin-bottom: 8px;
}

/* Inline images inside weather pages */
img.weather-inline-image,
.text img.weather-inline-image {
  width: auto !important;
  max-width: 500px !important;
  height: auto !important;
  display: block !important;
  margin: 20px auto !important;
}

/* =========================
   FAQ / ACCORDION
========================= */

.faq {
  margin-top: 24px;
}

.faq .faq-item {
  margin-bottom: 10px;
}

.faq .faq-question {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  padding: 18px 52px 18px 20px !important;
  border: 1px solid #d9e2ec !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #1f5e97 !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.faq .faq-question:after {
  content: "⌄" !important;
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  color: #1f5e97 !important;
}

.faq .faq-item.is-open .faq-question {
  border-color: #1f5e97 !important;
  box-shadow: inset 0 0 0 1px #1f5e97 !important;
}

.faq .faq-item.is-open .faq-question:after {
  content: "⌃" !important;
}

.faq .faq-answer {
  padding: 14px 20px 8px !important;
}

.faq .faq-answer p {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #4a5568 !important;
}

@media (max-width: 767px) {
  .faq .faq-question {
    font-size: 16px !important;
    padding: 16px 46px 16px 16px !important;
  }

  .faq .faq-answer {
    padding: 12px 16px 6px !important;
  }

  .faq .faq-answer p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}


/* =========================
   WEATHER PAGES - MOBILE
========================= */
@media (max-width: 767px) {
  table.weather-month-table th,
  table.weather-month-table td {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  img.weather-inline-image,
  .text img.weather-inline-image {
    width: 100% !important;
    max-width: 100% !important;
  }
}