/* RealTimes Dive PWA layer: the "Save to your phone" card and the offline
   page. Source: rtns/dive-pwa/pwa.css. Tokens mirror styles.css (.mast
   #0b0d0c, gold #b98132 / #d8ad63, ink #11120f) and rtns.css Seashell
   (#fff5ee). Every rule is scoped to an .rt-pwa-* or .rt-offline-* class. */

.rt-pwa-card {
  position: fixed;
  z-index: 140; /* above .mast (100), below the mobile .nav-panel (150) */
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  max-width: 400px;
  margin-left: auto;
  padding: 18px 18px 16px;
  background: #fff5ee;
  color: #11120f;
  border: 1px solid #ddd5c9;
  border-top: 4px solid #b98132;
  box-shadow: 0 12px 32px rgba(11, 13, 12, 0.22);
  font-family: Arial, Helvetica, sans-serif;
}
.rt-pwa-eyebrow {
  margin: 0 32px 8px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8c6a32;
}
.rt-pwa-title {
  margin: 0 32px 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
}
.rt-pwa-body,
.rt-pwa-how {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #3d3a34;
}
.rt-pwa-how {
  color: #11120f;
  font-weight: 700;
}
.rt-pwa-glyph {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  color: #11120f;
}
.rt-pwa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rt-pwa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #11120f;
  background: transparent;
  color: #11120f;
  font: 700 12px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.rt-pwa-btn-gold {
  background: #b98132;
  border-color: #b98132;
  color: #111;
}
.rt-pwa-btn:hover,
.rt-pwa-btn:focus-visible {
  border-color: #8c6a32;
  outline: none;
  box-shadow: 0 0 0 2px #d8ad63;
}
.rt-pwa-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #11120f;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.rt-pwa-close:focus-visible {
  outline: 2px solid #b98132;
}
@media (min-width: 700px) {
  .rt-pwa-card {
    left: auto;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    width: 380px;
  }
}
@media print {
  .rt-pwa-card {
    display: none;
  }
}

/* offline page */
.rt-offline-main {
  background: #fff5ee;
  padding: 56px 0 64px;
  min-height: 60vh;
}
.rt-offline-main h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  margin: 0 0 16px;
}
.rt-offline-main p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: #3d3a34;
  margin: 0 0 20px;
}
.rt-offline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
}
.rt-offline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
  border-top: 1px solid #ddd5c9;
}
.rt-offline-list li {
  border-bottom: 1px solid #ddd5c9;
}
.rt-offline-list a {
  display: block;
  padding: 14px 0;
  min-height: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
  color: #11120f;
}
.rt-offline-list a:hover {
  color: #8c6a32;
}
.rt-offline-main .eyebrow {
  color: #8c6a32;
}
.rt-offline-h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8c6a32;
  margin: 0 0 10px;
}
@media (max-width: 700px) {
  .rt-offline-main {
    padding: 36px 0 48px;
  }
  .rt-offline-main h1 {
    font-size: 36px;
  }
  .rt-offline-main .shell {
    padding: 0 16px;
  }
}
