/* =========================================================
   JJA BESPOKE STATIC PAGES
   ========================================================= */


/* =========================================================
   MEET THE CREW
   ========================================================= */

.meet-crew-page {
  background: #fff;
}

.meet-crew-heading {
  padding: 42px 44px 28px;
  text-align: center;
}

.meet-crew-heading h1 {
  margin: 0 0 19px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}

.meet-crew-divider {
  width: 80%;
  max-width: 760px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 17px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 25px;
}

.meet-crew-divider::before,
.meet-crew-divider::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}


/* Full 1100px historical header photograph */

.meet-crew-hero {
  width: 100%;
  margin: 0;
}

.meet-crew-hero img {
  width: 100%;
  height: auto;

  display: block;
}


/* Biography */

.meet-crew-about {
  padding: 46px 55px 42px;

  display: grid;

  grid-template-columns:
    minmax(0, 46%) minmax(0, 54%);

  gap: 38px;

  align-items: start;
}

.meet-crew-portrait img {
  width: 100%;
  max-width: 460px;
  height: auto;

  display: block;

  margin: 0 auto;
}

.meet-crew-copy {
  min-width: 0;

  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.meet-crew-copy h2 {
  margin: 0 0 24px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;

  text-align: center;
}

.meet-crew-copy p {
  margin: 0 0 18px;
}

.meet-crew-copy a {
  color: #1ebdbb;
}

.meet-crew-copy a:hover {
  color: #f16a73;
}


/* Historical large initial J */

.meet-crew-dropcap {
  float: left;

  margin:
    6px 5px -4px 0;

  color: #0f0f0f;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 62px;
  font-style: normal;
  font-weight: 400;

  line-height: .72;
}


/* Historical quote treatment */

.meet-crew-copy blockquote {
  margin: 27px 0;

  padding:
    0 0 0 18px;

  border-left:
    1px solid #d8d8d8;

  color: #999;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 18px;
  font-style: normal;
  font-weight: 400;

  letter-spacing: normal;
  line-height: 27px;
}


/* Join the Adventure */

.meet-crew-button-wrap {
  margin: 29px 0 0;
  text-align: center;
}

.meet-crew-button {
  display: inline-block;

  padding: 11px 22px;

  border-radius: 5px;

  background: #f16a73;
  color: #fff !important;

  font-family:
    'Crete Round',
    Georgia,
    serif;

  font-size: 12px;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.meet-crew-button:hover {
  background: #F4414C;
}


/* Get in touch */

.meet-crew-contact {
  padding:
    11px 44px 42px;

  text-align: center;
}

.meet-crew-contact h2 {
  margin: 0 0 23px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;
}

.meet-crew-socials {
  display: flex;
  justify-content: center;

  gap: 10px;

  margin-bottom: 32px;
}

.meet-crew-social {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #d5d5d5;
  color: #343435;

  font-family:
    Arial,
    sans-serif;

  font-size: 17px;
  font-weight: 700;

  text-decoration: none;
}

.meet-crew-social:hover {
  background: #ef6c76;
  color: #fff;
}


/* Frozen Instagram strip */

.meet-crew-instagram {
  padding:
    0 44px 50px;
}

.meet-crew-instagram-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 5px;
}

.meet-crew-instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;

  display: block;

  object-fit: cover;
}


/* Prevent casual image dragging */

.meet-crew-page img {
  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


@media (max-width: 700px) {

  .meet-crew-heading {
    padding:
      31px 20px 24px;
  }

  .meet-crew-heading h1 {
    font-size: 31px;
    line-height: 37px;
  }

  .meet-crew-divider {
    width: 100%;
  }

  .meet-crew-about {
    padding:
      32px 20px 38px;

    grid-template-columns: 1fr;

    gap: 29px;
  }

  .meet-crew-portrait img {
    max-width: 460px;
  }

  .meet-crew-copy h2,
  .meet-crew-contact h2 {
    font-size: 27px;
    line-height: 32px;
  }

  .meet-crew-contact {
    padding:
      5px 20px 34px;
  }

  .meet-crew-instagram {
    padding:
      0 20px 40px;
  }

  .meet-crew-instagram-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   OUR SAILBOAT
   ========================================================= */

.our-boat-page {
  background: #fff;
}

.our-boat-heading {
  padding: 42px 44px 28px;
  text-align: center;
}

.our-boat-heading h1 {
  margin: 0 0 19px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}

.our-boat-divider {
  width: 80%;
  max-width: 760px;

  margin: 0 auto 30px;

  display: flex;
  align-items: center;
  gap: 17px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 25px;
}

.our-boat-divider::before,
.our-boat-divider::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}

.our-boat-divider:empty::before,
.our-boat-divider:empty::after {
  display: block;
}

.our-boat-divider:empty {
  width: calc(100% - 88px);
  max-width: none;
  gap: 0;
}


/* Hero */

.our-boat-hero img {
  width: 100%;
  height: auto;

  display: block;
}


/* Intro */

.our-boat-intro {
  padding: 46px 55px 42px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 46%);

  gap: 42px;

  align-items: start;
}

.our-boat-copy {
  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.our-boat-copy h2 {
  margin: 0 0 24px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;

  text-align: center;
}

.our-boat-copy p {
  margin: 0 0 18px;
}

.our-boat-dropcap {
  float: left;

  margin: 6px 5px -4px 0;

  color: #0f0f0f;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 62px;
  font-style: normal;
  font-weight: 400;

  line-height: .72;
}

.our-boat-portrait img {
  width: 100%;
  max-width: 460px;
  height: auto;

  display: block;

  margin: 0 auto;
}


/* Island Packet diagram */

.our-boat-diagram {
  padding: 8px 44px 39px;
  text-align: center;
}

.our-boat-diagram img {
  width: min(750px, 100%);
  height: auto;
}


/* Section titles */

.our-boat-section {
  padding: 0 44px 42px;
}

.our-boat-section-title {
  width: 80%;
  max-width: 760px;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  gap: 17px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  line-height: 25px;
  letter-spacing: .5px;
}

.our-boat-section-title::before,
.our-boat-section-title::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}


/* Tech specs */

.our-boat-specs {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 34px;
}

.our-boat-specs h4 {
  margin: 0 0 12px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 19px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 23px;
}

.our-boat-specs ul {
  margin: 0;
  padding-left: 19px;

  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.our-boat-specs li {
  margin-bottom: 8px;
}


/* Button */

.our-boat-button-wrap {
  margin: 31px 0 9px;

  text-align: center;
}

.our-boat-button {
  display: inline-block;

  padding: 11px 22px;

  border-radius: 5px;

  background: #f16a73;
  color: #fff !important;

  font-family:
    'Crete Round',
    Georgia,
    serif;

  font-size: 12px;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.our-boat-button:hover {
  background: #F4414C;
}


/* Interior galleries */

.our-boat-gallery {
  margin: 8px 0;
  gap: 8px;
}

.our-boat-gallery.post-gallery-cols-3 {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}


/* Video */

.our-boat-video {
  width: 100%;

  aspect-ratio: 16 / 9;

  background: #000;
}

.our-boat-video iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}


/* Historical social ornament row */

.our-boat-socials {
  margin-top: 28px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 22px;
}

.our-boat-socials .social-ornament {
  width: 26px;
  height: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #666;

  font:
    700 16px/1
    Arial,
    sans-serif;

  text-decoration: none;
}

.our-boat-socials .youtube-mark {
  font-size: 14px;
}

.our-boat-socials .youtube-mark:hover {
  color: #f16a73;
}


/* Image protection */

.our-boat-page img {
  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


@media (max-width: 700px) {

  .our-boat-heading {
    padding:
      31px 20px 24px;
  }

  .our-boat-heading h1 {
    font-size: 31px;
    line-height: 37px;
  }

  .our-boat-divider,
  .our-boat-section-title {
    width: 100%;
  }

  .our-boat-intro {
    padding:
      32px 20px 38px;

    grid-template-columns: 1fr;

    gap: 28px;
  }

  .our-boat-diagram {
    padding:
      3px 20px 32px;
  }

  .our-boat-section {
    padding:
      0 20px 38px;
  }

  .our-boat-specs {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .our-boat-gallery.post-gallery-cols-2,
  .our-boat-gallery.post-gallery-cols-3 {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   TE ARAROA TRAIL
   ========================================================= */

.te-araroa-page {
  background: #fff;
}

.te-araroa-heading {
  padding: 42px 44px 28px;
  text-align: center;
}

.te-araroa-heading h1 {
  margin: 0 0 19px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}

.te-araroa-divider {
  width: 80%;
  max-width: 760px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 17px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 25px;
}

.te-araroa-divider::before,
.te-araroa-divider::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}


/* Hero */

.te-araroa-hero img {
  width: 100%;
  height: auto;
  display: block;
}


/* Main two-column section */

.te-araroa-about {
  padding: 46px 55px 42px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 46%);

  gap: 42px;

  align-items: start;
}

.te-araroa-copy {
  min-width: 0;

  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.te-araroa-copy h2 {
  margin: 0 0 24px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;

  text-align: center;
}

.te-araroa-copy p {
  margin: 0 0 18px;
}

.te-araroa-copy a {
  color: #1ebdbb;
}

.te-araroa-copy a:hover {
  color: #f16a73;
}


/* Historical drop-cap S */

.te-araroa-dropcap {
  float: left;

  margin: 6px 5px -4px 0;

  color: #0f0f0f;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 62px;
  font-style: normal;
  font-weight: 400;

  line-height: .72;
}


/* Quote */

.te-araroa-copy blockquote {
  margin: 27px 0;

  padding-left: 18px;

  border-left:
    1px solid #d8d8d8;

  color: #999;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 18px;
  font-style: normal;
  font-weight: 400;

  letter-spacing: normal;
  line-height: 27px;
}


/* Right-side historical image */

.te-araroa-image img {
  width: 100%;
  max-width: 460px;
  height: auto;

  display: block;

  margin: 0 auto;
}


/* Join button */

.te-araroa-button-wrap {
  margin: 29px 0 0;
  text-align: center;
}

.te-araroa-button {
  display: inline-block;

  padding: 11px 22px;

  border-radius: 5px;

  background: #f16a73;
  color: #fff !important;

  font-family:
    'Crete Round',
    Georgia,
    serif;

  font-size: 12px;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.te-araroa-button:hover {
  background: #F4414C;
}


/* Get In Touch */

.te-araroa-contact {
  padding:
    10px 44px 52px;

  text-align: center;
}

.te-araroa-contact h2 {
  margin: 0 0 15px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;
}

.te-araroa-contact p {
  max-width: 760px;

  margin:
    0 auto 22px;

  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.te-araroa-contact p a {
  color: #1ebdbb;
}

.te-araroa-socials {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;
}

.te-araroa-socials .social-ornament {
  width: 26px;
  height: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #666;

  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;
}

.te-araroa-socials .youtube-mark {
  font-size: 14px;
}

.te-araroa-socials .youtube-mark:hover {
  color: #f16a73;
}


/* Casual image-drag protection */

.te-araroa-page img {
  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


@media (max-width: 700px) {

  .te-araroa-heading {
    padding:
      31px 20px 24px;
  }

  .te-araroa-heading h1 {
    font-size: 31px;
    line-height: 37px;
  }

  .te-araroa-divider {
    width: 100%;
  }

  .te-araroa-about {
    padding:
      32px 20px 38px;

    grid-template-columns: 1fr;

    gap: 29px;
  }

  .te-araroa-copy h2,
  .te-araroa-contact h2 {
    font-size: 27px;
    line-height: 32px;
  }

  .te-araroa-contact {
    padding:
      5px 20px 42px;
  }
}


/* =========================================================
   TRAVEL MAP PAGE
   ========================================================= */

.travel-map-page {
  background: #fff;
}

.travel-map-heading {
  padding: 38px 44px 35px;
  text-align: center;
}

.travel-map-heading h1 {
  margin: 0 0 20px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}

.travel-map-divider {
  width: 80%;
  max-width: 780px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 20px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .4px;
  line-height: 25px;
}

.travel-map-divider::before,
.travel-map-divider::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}


/* Historical map */

.travel-map-frame {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #d5eeef;
}

.travel-map-stage {
  width: 100%;

  aspect-ratio: 1024 / 561.64917;

  background: #d5eeef;
}

.travel-map-stage > svg {
  width: 100%;
  height: 100%;

  display: block;

  background: #d5eeef;

  user-select: none;
  -webkit-user-select: none;
}

.travel-map-frame.is-zoomed
.travel-map-stage > svg {
  cursor: grab;
}

.travel-map-frame.is-dragging
.travel-map-stage > svg {
  cursor: grabbing;
}


/* Historical +/- map controls */

.travel-map-controls {
  position: absolute;

  top: 14px;
  right: 12px;

  z-index: 5;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid #d4d4d4;
  border-radius: 2px;

  background: #fff;

  box-shadow:
    0 1px 5px rgba(0,0,0,.18);
}

.travel-map-controls button {
  width: 31px;
  height: 31px;

  padding: 0;

  border: 0;

  background: #fff;
  color: #777;

  cursor: pointer;

  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.travel-map-controls button + button {
  border-top: 1px solid #ddd;
}

.travel-map-controls button:hover {
  background: #f7f7f7;
  color: #333;
}


/* Marker rollover label */

.travel-map-tooltip {
  position: absolute;

  z-index: 8;

  left: 0;
  top: 0;

  min-width: 100px;
  max-width: 220px;

  padding: 6px 10px;

  border: 1px solid #ddd;

  background: rgba(255,255,255,.97);
  color: #565656;

  box-shadow:
    0 2px 8px rgba(0,0,0,.15);

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 15px;
  line-height: 20px;

  text-align: center;

  pointer-events: none;

  opacity: 0;

  transform:
    translate(-50%, -100%)
    translateY(-8px);

  transition: opacity .1s ease;
}

.travel-map-tooltip.is-visible {
  opacity: 1;
}


/* Instagram section */

.travel-map-instagram {
  padding: 42px 38px 53px;

  background: #fff;
}

.travel-map-instagram-title {
  width: 80%;
  max-width: 780px;

  margin: 0 auto 31px;

  display: flex;
  align-items: center;
  gap: 20px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .4px;
  line-height: 25px;

  text-align: center;
}

.travel-map-instagram-title::before,
.travel-map-instagram-title::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}

.travel-map-instagram-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 10px;
}

.travel-map-instagram-item {
  overflow: hidden;

  aspect-ratio: 1 / 1;

  background: #eee;
}

.travel-map-instagram-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


@media (max-width: 700px) {

  .travel-map-heading {
    padding: 29px 20px 27px;
  }

  .travel-map-heading h1 {
    margin-bottom: 17px;

    font-size: 34px;
    line-height: 40px;
  }

  .travel-map-divider {
    width: 100%;

    gap: 10px;

    font-size: 15px;
    line-height: 21px;
  }

  .travel-map-controls {
    top: 8px;
    right: 8px;
  }

  .travel-map-controls button {
    width: 28px;
    height: 28px;

    font-size: 19px;
    line-height: 27px;
  }

  .travel-map-instagram {
    padding: 34px 18px 42px;
  }

  .travel-map-instagram-title {
    width: 100%;

    gap: 12px;

    font-size: 17px;
  }

  .travel-map-instagram-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 7px;
  }
}


@media (max-width: 430px) {

  .travel-map-instagram-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  background: #fff;
}


/* Historical full-width banner */

.contact-banner img {
  width: 100%;
  height: auto;

  display: block;

  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


/* Two-column body */

.contact-columns {
  padding: 47px 55px 44px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 54px;

  align-items: start;
}

.contact-column {
  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.contact-column h2 {
  margin: 0 0 20px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;
}

.contact-column h4 {
  margin: 0 0 12px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 19px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 23px;
}

.contact-column p {
  margin: 0 0 18px;
}

.contact-column a {
  color: #1ebdbb;
}

.contact-column a:hover {
  color: #f16a73;
}


/* Archived form replacement */

.contact-archive-note {
  margin: 0 0 24px;

  color: #999;

  font-style: italic;
}

.contact-email-address {
  margin: 0 0 23px;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 21px;
  font-style: italic;
  line-height: 28px;
}

.contact-email-address a {
  color: #565656;
  text-decoration: none;
}

.contact-email-address a:hover {
  color: #f16a73;
}


/* Buttons */

.contact-button {
  display: inline-block;

  padding: 11px 22px;

  border-radius: 5px;

  background: #f16a73;
  color: #fff !important;

  font-family:
    'Crete Round',
    Georgia,
    serif;

  font-size: 12px;
  letter-spacing: 1px;

  text-decoration: none;
  text-transform: uppercase;
}

.contact-button:hover {
  background: #F4414C;
}


/* Historical section dividers */

.contact-section-divider {
  height: 1px;

  margin: 26px 0 23px;

  background: #eeeeee;
}


/* Instagram */

.contact-instagram {
  padding: 7px 38px 53px;
}

.contact-instagram-title {
  width: 80%;
  max-width: 780px;

  margin: 0 auto 31px;

  display: flex;
  align-items: center;
  gap: 20px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .4px;
  line-height: 25px;

  text-align: center;
}

.contact-instagram-title::before,
.contact-instagram-title::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}

.contact-instagram-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 10px;
}

.contact-instagram-item {
  overflow: hidden;

  aspect-ratio: 1 / 1;

  background: #eee;
}

.contact-instagram-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


@media (max-width: 700px) {

  .contact-columns {
    padding: 34px 20px 38px;

    grid-template-columns: 1fr;

    gap: 37px;
  }

  .contact-column h2 {
    font-size: 27px;
    line-height: 32px;
  }

  .contact-instagram {
    padding: 4px 18px 42px;
  }

  .contact-instagram-title {
    width: 100%;
  }

  .contact-instagram-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 7px;
  }
}


@media (max-width: 430px) {

  .contact-instagram-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   ARCHIVE PAGE
   ========================================================= */

.archive-index-page {
  background: #fff;
}


/* Page title / breadcrumb */

.archive-index-header {
  padding: 42px 55px 39px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-bottom: 1px solid #eeeeee;
}

.archive-index-header h1 {
  margin: 0;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}

.archive-index-breadcrumb {
  color: #888;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.archive-index-breadcrumb a {
  color: #1ebdbb;
  text-decoration: none;
}

.archive-index-breadcrumb a:hover {
  color: #f16a73;
}


/* Main content */

.archive-index-content {
  padding: 49px 55px 58px;
}

.archive-index-section {
  margin: 0 0 53px;
}

.archive-index-section:last-child {
  margin-bottom: 0;
}

.archive-index-section h2 {
  margin: 0 0 31px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}


/* Recent posts */

.archive-recent-title {
  text-align: center;
}

.archive-recent-list {
  max-width: 850px;
  margin: 0 auto;
}

.archive-recent-item {
  padding: 0 0 18px;
  margin: 0 0 18px;

  border-bottom: 1px solid #eeeeee;
}

.archive-recent-item:last-child {
  margin-bottom: 0;
}

.archive-recent-item h3 {
  margin: 0 0 8px;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.archive-recent-item h3 a {
  color: #1ebdbb;
  text-decoration: none;
}

.archive-recent-item h3 a:hover {
  color: #f16a73;
}

.archive-recent-meta {
  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 15px;
  line-height: 22px;
}

.archive-meta-separator {
  margin: 0 8px;
  color: #ddd;
}


/* Monthly archive */

.archive-years-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 65px;
  row-gap: 42px;
}

.archive-year h3 {
  margin: 0 0 17px;

  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.archive-year ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.archive-year li {
  margin: 0 0 9px;
}

.archive-year a {
  color: #1ebdbb;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 17px;
  line-height: 24px;

  text-decoration: none;
}

.archive-year a:hover {
  color: #f16a73;
}


/* Categories */

.archive-category-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 65px;
  row-gap: 12px;
}

.archive-category-grid a {
  color: #1ebdbb;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 17px;
  font-weight: 600;
  line-height: 24px;

  text-decoration: none;

  text-transform: uppercase;
}

.archive-category-grid a:hover {
  color: #f16a73;
}


@media (max-width: 700px) {

  .archive-index-header {
    padding: 31px 20px 28px;

    align-items: flex-start;
    flex-direction: column;

    gap: 6px;
  }

  .archive-index-header h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .archive-index-content {
    padding: 36px 20px 45px;
  }

  .archive-index-section {
    margin-bottom: 43px;
  }

  .archive-index-section h2 {
    margin-bottom: 24px;

    font-size: 30px;
    line-height: 36px;
  }

  .archive-recent-title {
    text-align: left;
  }

  .archive-years-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 30px;
    row-gap: 32px;
  }

  .archive-category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 25px;
  }
}


@media (max-width: 430px) {

  .archive-years-grid,
  .archive-category-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ARCHIVE PAGE — FINAL SIZE / THUMBNAIL REFINEMENTS
   ========================================================= */

.archive-index-header h1,
.archive-index-section h2 {
  font-size: 30px;
  line-height: 35px;
}

.archive-recent-item h3,
.archive-year h3,
.archive-year a,
.archive-category-grid a {
  font-size: 16px;
  line-height: 22px;
}


/* Recent posts with small image */

.archive-recent-item.has-thumb {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
}

.archive-recent-thumb {
  width: 90px;
  height: 72px;

  display: block;
  overflow: hidden;

  background: #eee;
}

.archive-recent-thumb img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.archive-recent-copy {
  min-width: 0;
}


@media (max-width: 430px) {

  .archive-recent-item.has-thumb {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 13px;
  }

  .archive-recent-thumb {
    width: 72px;
    height: 60px;
  }

}

/* =========================================================
   ARCHIVE PAGE — ALIGNMENT REFINEMENTS
   ========================================================= */

/* Center archive section headings */
.archive-index-section h2 {
  text-align: center;
}


/* Match Month + Category content width to recent-post list */
.archive-years-grid,
.archive-category-grid {
  width: 100%;
  max-width: 850px;

  margin-left: auto;
  margin-right: auto;
}


/* Keep mobile spacing natural */
@media (max-width: 700px) {

  .archive-index-section h2 {
    text-align: center;
  }

  .archive-years-grid,
  .archive-category-grid {
    max-width: none;
  }

}

/* Archive Month + Category headings align with content */
.archive-index-section:not(:first-child) h2 {
  text-align: left;
}


/* =========================================================
   SPONSORS PAGE
   ========================================================= */

.sponsors-page {
  background: #fff;
}


/* Heading */

.sponsors-heading {
  padding: 42px 44px 37px;
  text-align: center;
}

.sponsors-heading h1 {
  margin: 0 0 19px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 36px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 42px;
}

.sponsors-divider {
  width: 80%;
  max-width: 760px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 17px;

  color: #565656;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 25px;
}

.sponsors-divider::before,
.sponsors-divider::after {
  content: "";

  height: 1px;
  flex: 1;

  background: #eeeeee;
}


/* Intro / section */

.sponsors-content {
  padding: 4px 55px 56px;
}

.sponsors-section-title {
  margin: 0 0 34px;

  color: #1ebdbb;

  font-family:
    'Old Standard TT',
    Georgia,
    serif;

  font-size: 30px;
  font-style: italic;
  font-weight: 400;

  letter-spacing: .5px;
  line-height: 35px;

  text-align: center;
}

.sponsors-archive-note {
  max-width: 760px;

  margin: 0 auto 40px;

  color: #999;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  font-style: italic;
  line-height: 24px;

  text-align: center;
}


/* Featured historical sponsors */

.sponsors-featured-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 42px;

  margin-bottom: 46px;
}

.sponsor-featured {
  display: grid;

  grid-template-columns:
    150px minmax(0, 1fr);

  gap: 22px;

  align-items: start;
}

.sponsor-featured-image {
  width: 150px;
  height: 150px;

  display: block;

  object-fit: cover;

  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}

.sponsor-copy {
  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}

.sponsor-copy h3 {
  margin: 0 0 8px;

  color: #1ebdbb;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.sponsor-copy p {
  margin: 0;
}


/* Historical divider */

.sponsors-horizontal-divider {
  height: 1px;

  margin: 0 0 43px;

  background: #eeeeee;
}


/* Three smaller historical sponsors */

.sponsors-secondary-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 37px;
}

.sponsor-secondary {
  text-align: left;
}

.sponsor-secondary-image {
  width: 200px;
  max-width: 100%;
  height: auto;

  display: block;

  margin: 0 auto 20px;

  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}

.sponsor-secondary h3 {
  margin: 0 0 8px;

  color: #1ebdbb;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.sponsor-secondary p {
  margin: 0;

  color: #565656;

  font-family:
    'Crimson Text',
    Georgia,
    serif;

  font-size: 16px;
  line-height: 24px;
}


@media (max-width: 800px) {

  .sponsors-featured-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 700px) {

  .sponsors-heading {
    padding: 31px 20px 29px;
  }

  .sponsors-heading h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .sponsors-divider {
    width: 100%;
  }

  .sponsors-content {
    padding: 3px 20px 43px;
  }

  .sponsors-section-title {
    font-size: 27px;
    line-height: 32px;
  }

  .sponsors-featured-grid {
    gap: 35px;
  }

  .sponsor-featured {
    grid-template-columns:
      120px minmax(0, 1fr);

    gap: 18px;
  }

  .sponsor-featured-image {
    width: 120px;
    height: 120px;
  }

  .sponsors-secondary-grid {
    grid-template-columns: 1fr;

    gap: 37px;
  }

  .sponsor-secondary {
    max-width: 450px;

    margin: 0 auto;
  }

}


@media (max-width: 430px) {

  .sponsor-featured {
    grid-template-columns: 1fr;
  }

  .sponsor-featured-image {
    width: 150px;
    height: 150px;

    margin: 0 auto;
  }

}


/* =========================================================
   SITE / SPONSOR IMAGE DRAG PROTECTION
   ========================================================= */

.site-logo img,
.sponsors-page img {
  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}

/* Blog listing/archive image drag protection */
body img[draggable="false"] {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
