
/* =========================================================
   BLOG / ARCHIVE LAYOUT
   ========================================================= */

.blog-main {
  background: #fff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 38px;
  padding: 43px 44px 58px;
}


/* =========================================================
   SHARED BLOG SIDEBAR
   ========================================================= */

.blog-sidebar {
  min-width: 0;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.travel-blog-button {
  width: max-content;
  margin: 0 auto 31px;
  padding: 9px 15px;
  display: block;
  border: 1px solid #f16a73;
  border-radius: 4px;
  color: #f16a73;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .4px;
}

.travel-blog-button:hover {
  background: #f16a73;
  color: #fff;
}

.sidebar-promos {
  display: grid;
  gap: 4px;
}

.sidebar-promos img {
  width: 100%;
}

.sidebar-subscribe {
  margin-top: 29px;
  color: #555;
  font-size: 15px;
  line-height: 24px;
}

.sidebar-subscribe p {
  margin: 0 0 20px;
}

.sidebar-subscribe strong {
  display: block;
  margin-bottom: 4px;
  color: #555;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: underline;
}

.sidebar-subscribe input {
  width: 100%;
  height: 27px;
  padding: 4px 7px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
}

.sidebar-subscribe button {
  margin-top: 9px;
  padding: 8px 15px;
  border: 0;
  border-radius: 3px;
  background: #f16a73;
  color: #fff;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .3px;
}

.sidebar-social {
  margin: 28px 0 37px;
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #555;
  font: 700 15px/24px Arial, sans-serif;
}

.sidebar-social a,
.sidebar-social span {
  color: #555;
}

.sidebar-social a:hover {
  color: #f16a73;
}

.sidebar-section {
  margin-top: 27px;
}

.sidebar-section h3 {
  margin: 0 0 13px;
  padding: 10px 8px;
  border: 1px solid #eee;
  background: #fafafa;
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .3px;
  text-align: center;
}

.sidebar-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-category-list li {
  border-bottom: 1px solid #eee;
}

.sidebar-category-list a {
  margin: 11px 0;
  padding: 0;
  display: block;
  color: #565656;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .15px;
}

.sidebar-category-list a:hover {
  color: #f16a73;
}

.sidebar-archive-label {
  margin-bottom: 5px;
  display: block;
  color: #555;
  font-size: 15px;
  line-height: 24px;
}

.sidebar-archive-select {
  width: 100%;
  height: 29px;
  padding: 3px 6px;
  border: 1px solid #eee;
  background: #fff;
  color: #555;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
}

.sidebar-recent-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-recent-list li {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 10px;
}

.sidebar-recent-image {
  width: 49px;
  height: 42px;
  display: block;
  overflow: hidden;
}

.sidebar-recent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-recent-title {
  font-size: 15px;
  font-style: italic;
  line-height: 24px;
}

.sidebar-copyright-note {
  margin: 31px 0 0;
  color: #555;
  font-size: 15px;
  font-style: italic;
  line-height: 24px;
}


/* =========================================================
   BLOG LIST
   ========================================================= */

.blog-list {
  min-width: 0;
}

.blog-list-item {
  padding: 0 0 27px;
  margin-bottom: 27px;
  display: grid;
  grid-template-columns: minmax(0, 315px) minmax(0, 1fr);
  gap: 29px;
  border-bottom: 1px solid #eee;
}

.blog-list-image {
  height: 218px;
  display: block;
  overflow: hidden;
  background: #fafafa;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-image-missing {
  border: 1px solid #eee;
}

.blog-list-copy {
  min-width: 0;
  padding-top: 2px;
}

.blog-list-categories {
  min-height: 17px;
  margin-bottom: 12px;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}

.blog-list-copy h2 {
  margin: 0 0 12px;
  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;
}

.blog-list-copy h2 a {
  color: #1ebdbb;
}

.blog-list-copy h2 a:hover {
  color: #f16a73;
}

.blog-list-meta {
  margin-bottom: 17px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #4f4f4f;
  font-size: 13px;
}

.blog-list-meta span:not(:last-child)::after {
  content: "|";
  margin: 0 7px;
  color: #aaa;
}

.blog-list-excerpt {
  margin: 0 0 14px;
  color: #565656;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.continue-button {
  width: max-content;
  margin: 0 auto;
  padding: 7px 14px;
  display: block;
  border-radius: 5px;
  background: #f16a73;
  color: #fff;
  font-family: 'Crete Round', Georgia, serif;
  font-size: 12px;
  letter-spacing: 1px;
}

.continue-button:hover {
  background: #f4414c;
  color: #fff;
}



/* =========================================================
   ARCHIVE HEADING
   ========================================================= */


/* =========================================================
   HISTORICAL MONTHLY ARCHIVE HEADER
   ========================================================= */

.archive-page-header {
  min-height: 155px;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

.archive-page-header h1 {
  margin: 0;
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .4px;
  line-height: 42px;
}

.archive-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #8a8a8a;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.archive-breadcrumb a {
  color: #1ebdbb;
}

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

.archive-breadcrumb strong {
  color: #8a8a8a;
  font-weight: 400;
}

@media (max-width: 700px) {
  .archive-page-header {
    min-height: 0;
    padding: 32px 20px;
    display: block;
  }

  .archive-page-header h1 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 36px;
  }
}



/* Category preserved with no canonical published posts */

.category-empty {
  padding: 35px 0;
  color: #565656;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.blog-pagination {
  margin: 38px 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
}

.blog-pagination a,
.blog-pagination span {
  color: #555;
}

.blog-pagination a:hover {
  color: #f16a73;
}

.blog-pagination .current {
  color: #f16a73;
}

.blog-pagination .ellipsis {
  color: #aaa;
}

.blog-pagination a[aria-label="Next page"] {
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid #e5e5e5;
}

.blog-pagination a[aria-label="Next page"] {
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid #e5e5e5;
}

.blog-pagination a[aria-label="Next page"] {
  margin-left: 3px;
  padding-left: 20px;
  border-left: 1px solid #e5e5e5;
}



/* ---------- Pagination spacing / separators ---------- */

.blog-pagination {
  gap: 0;
}

.blog-pagination > * {
  position: relative;
  padding: 0 15px;
}

.blog-pagination > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: #e5e5e5;
  transform: translateY(-50%);
}

/* Supersede the earlier one-off divider before Next */
.blog-pagination a[aria-label="Next page"] {
  margin-left: 0;
  padding-left: 15px;
  border-left: 0;
}



/* =========================================================
   STANDARD POST DETAIL
   ========================================================= */

.post-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 38px;
  padding: 43px 44px 58px;
}

.post-detail {
  min-width: 0;
}

.post-detail-categories {
  margin-bottom: 12px;
  color: #1ebdbb;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.post-detail h1 {
  margin: 0 0 12px;
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 35px;
}

.post-detail-meta {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  color: #4f4f4f;
  font-size: 13px;
}

.post-detail-meta span:not(:last-child)::after {
  content: "|";
  margin: 0 7px;
  color: #aaa;
}

.post-detail-content {
  color: #565656;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.post-detail-content h3 {
  margin: 28px 0 12px;
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}

.post-body-copy p {
  margin: 0 0 18px;
}

.post-body-copy a {
  color: #1ebdbb;
}

.post-body-copy a:hover {
  color: #f16a73;
}

.post-gallery {
  margin: 20px 0 20px;
  display: grid;
  gap: 8px;
}

.post-gallery-cols-1 {
  grid-template-columns: 1fr;
}

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

.post-gallery-item {
  display: block;
}

.post-gallery-item img {
  width: 100%;
  display: block;
}

.post-nav {
  margin: 48px 0 44px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.post-nav-link {
  display: block;
  text-align: center;
}

.post-nav-next {
  text-align: center;
}

.post-nav-label {
  display: block;
  margin-bottom: 6px;
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-nav-title {
  color: #1ebdbb;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 16px;
  line-height: 24px;
}

.post-nav-link:hover .post-nav-title,
.post-nav-link:hover .post-nav-label {
  color: #f16a73;
}

.post-comments {
  margin-top: 38px;
}

.post-comments h2 {
  margin: 0 0 22px;
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}

.comment-list,
.comment-children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-item {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
}

.comment-children {
  margin-top: 18px;
  margin-left: 30px;
}

.comment-author {
  margin-bottom: 2px;
  color: #1ebdbb;
  font-size: 16px;
  font-weight: 600;
}

.comment-date {
  margin-bottom: 10px;
  color: #8a8a8a;
  font-size: 13px;
}

.comment-body {
  color: #565656;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

@media (max-width: 850px) {
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   POST DETAIL POLISH
   ========================================================= */

/*
 * Equal spacing in all gallery directions.
 * The same 8px rhythm is used between left/right images,
 * stacked images, and adjacent gallery groups.
 */

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


/* ---------- Previous / Next arrows ---------- */

.post-nav-link {
  position: relative;
  padding-left: 52px;
  padding-right: 52px;
}

.post-nav-prev::before,
.post-nav-next::after {
  position: absolute;
  top: 50%;
  color: #1ebdbb;
  font-family: Georgia, serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-53%);
}

.post-nav-prev::before {
  content: "‹";
  left: 5px;
}

.post-nav-next::after {
  content: "›";
  right: 5px;
}

.post-nav-prev:hover::before,
.post-nav-next:hover::after {
  color: #f16a73;
}


/* ---------- Historical comment treatment ---------- */

.comment-item {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.comment-grid {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.comment-avatar-wrap {
  width: 60px;
  height: 60px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  display: block;
}

.comment-content {
  min-width: 0;
}

.comment-head {
  margin-bottom: 9px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.comment-author,
.comment-date {
  color: #565656;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.comment-author {
  color: #1ebdbb;
}

.comment-date {
  flex: 0 0 auto;
  text-align: right;
}

.comment-body {
  color: #565656;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.comment-children {
  margin-top: 20px;
  margin-left: 38px;
}


/* Remove old individual date spacing */
.comment-date {
  margin-bottom: 0;
}


@media (max-width: 560px) {
  .comment-grid {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .comment-avatar-wrap,
  .comment-avatar {
    width: 48px;
    height: 48px;
  }

  .comment-head {
    display: block;
  }

  .comment-date {
    text-align: left;
  }

  .comment-children {
    margin-left: 20px;
  }

  .post-nav-link {
    padding-left: 42px;
    padding-right: 42px;
  }
}



/* =========================================================
   FINAL COMMENT DETAIL POLISH
   ========================================================= */

/*
 * The divider belongs directly underneath each individual
 * comment, BEFORE any nested response.
 */

.comment-item {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}

.comment-grid {
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

/*
 * Nested reply begins after the parent's divider.
 */

.comment-children {
  margin-top: 20px;
  margin-left: 38px;
}

/*
 * Historical author/date typography.
 */

.comment-author,
.comment-date {
  color: #1ebdbb;
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
}

.comment-date {
  margin-bottom: 0;
  text-align: right;
}



/* =========================================================
   FINAL STANDARD POST BODY POLISH
   ========================================================= */

/* Slightly larger historical article body copy */
.post-detail-content {
  font-size: 16px;
  line-height: 24px;
}

/*
 * Uniform 8px spacing around and between gallery blocks
 * keeps the historical mosaic rhythm even in every direction.
 */
.post-gallery {
  margin: 8px 0;
  gap: 8px;
}



/* =========================================================
   POST BLOCKQUOTES
   ========================================================= */

.post-detail-content blockquote p {
  color: #999;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 27px;
}



/* =========================================================
   FULL-WIDTH MONTAGE MONDAY POST
   ========================================================= */

.montage-post-layout {
  padding: 43px 44px 58px;
}

.montage-post-detail {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.montage-post-detail > .post-detail-categories,
.montage-post-detail > h1 {
  text-align: center;
}

.montage-post-detail > .post-detail-meta {
  justify-content: center;
  text-align: center;
}

.montage-post-content {
  width: 100%;
}

.montage-post-content .post-gallery {
  margin: 8px 0;
  gap: 8px;
}

.montage-post-content .post-gallery-cols-1 {
  grid-template-columns: 1fr;
}

.montage-post-content .post-gallery-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.montage-post-detail .post-nav,
.montage-post-detail .post-comments {
  width: 100%;
}

@media (max-width: 560px) {
  .montage-post-layout {
    padding: 30px 20px 45px;
  }

  .montage-post-content .post-gallery-cols-2 {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   FINAL BLOCKQUOTE + MONTAGE HEADER FIX
   ========================================================= */

/*
 * Historical posts use both:
 *
 *   <blockquote>text</blockquote>
 *
 * and:
 *
 *   <blockquote><p>text</p></blockquote>
 *
 * Style both forms identically.
 */

.post-detail-content blockquote,
.post-detail-content blockquote p {
  color: #999;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 27px;
}

.post-detail-content blockquote {
  margin: 0 0 22px;
  padding: 0 0 0 18px;
  border-left: 1px solid #d8d8d8;
}

.post-detail-content blockquote p {
  margin: 0;
}


/* Montage Monday header remains left aligned */

.montage-post-detail > .post-detail-categories,
.montage-post-detail > h1 {
  text-align: left;
}

.montage-post-detail > .post-detail-meta {
  justify-content: flex-start;
  text-align: left;
}



/* =========================================================
   HISTORICAL PHOTO LIGHTBOX
   ========================================================= */

html.jja-lightbox-open,
html.jja-lightbox-open body {
  overflow: hidden;
}

.jja-lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;

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

  background: rgba(0, 0, 0, .90);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .18s ease,
    visibility .18s ease;
}

.jja-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.jja-lightbox-stage {
  position: absolute;
  inset: 55px 45px 78px;

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

.jja-lightbox-image {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  box-shadow:
    0 3px 18px rgba(0, 0, 0, .4);
}

.jja-lightbox-close {
  position: absolute;
  z-index: 2;

  top: 14px;
  right: 22px;

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  opacity: .8;
}

.jja-lightbox-close:hover {
  opacity: 1;
}

.jja-lightbox-controls {
  position: absolute;
  z-index: 2;

  bottom: 20px;
  left: 50%;

  display: flex;
  gap: 24px;

  transform: translateX(-50%);
}

.jja-lightbox-prev,
.jja-lightbox-next {
  width: 34px;
  height: 34px;

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  color: #fff;

  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 30px;

  cursor: pointer;

  opacity: .75;
}

.jja-lightbox-prev:hover,
.jja-lightbox-next:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .jja-lightbox-stage {
    inset:
      50px 15px 72px;
  }

  .jja-lightbox-close {
    top: 12px;
    right: 15px;
  }
}



/* =========================================================
   PHOTO DRAG PROTECTION
   ========================================================= */

.post-gallery img,
.jja-lightbox-image {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}



/* =========================================================
   LIGHTBOX ARROW POSITION
   ========================================================= */

/*
 * Pull previous/next controls closer to the displayed photo
 * so their gallery-navigation purpose is more obvious.
 */
.jja-lightbox-controls {
  bottom: 58px;
}

@media (max-width: 600px) {
  .jja-lightbox-controls {
    bottom: 52px;
  }
}



/* =========================================================
   PHONE BLOG LAYOUT
   ========================================================= */

@media (max-width: 700px) {

  /*
   * Historical phone post layout is article-first;
   * desktop sidebar disappears.
   */

  .blog-sidebar {
    display: none;
  }

  .post-layout {
    display: block;

    padding:
      34px 20px
      46px;
  }

  .montage-post-layout {
    padding:
      34px 20px
      46px;
  }

  .archive-page-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/* =========================================================
   SPECIAL HISTORICAL POST POLISH
   ========================================================= */


/* ---------------------------------------------------------
   Literal WordPress images
   --------------------------------------------------------- */

.post-detail-content img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.post-detail-content img.alignleft,
.post-detail-content img.alignright {
  width: auto;
  max-width: 48%;
  height: auto;
}

.post-detail-content img.alignleft {
  float: left;
  margin: 5px 22px 16px 0;
}

.post-detail-content img.alignright {
  float: right;
  margin: 5px 0 16px 22px;
}

.post-detail-content img.aligncenter {
  float: none;
  display: block;
  margin: 20px auto;
}


/* ---------------------------------------------------------
   Embedded YouTube / Vimeo
   --------------------------------------------------------- */

.jja-video-embed {
  width: 100%;
  max-width: none;

  aspect-ratio: 16 / 9;

  margin: 24px 0;
}

.jja-video-embed iframe {
  width: 100%;
  height: 100%;
}


/* ---------------------------------------------------------
   Historical MP4
   --------------------------------------------------------- */

.legacy-post-video {
  display: block;

  width: 100%;
  max-width: none;
  height: auto;

  margin: 24px 0 5px;
}

.legacy-video-caption {
  margin: 0 0 22px;

  color: #999;

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

  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  text-align: center;
}


/* ---------------------------------------------------------
   ICW / historical call-to-action buttons
   --------------------------------------------------------- */

.legacy-button-wrap {
  margin: 28px 0 34px;
  text-align: center;
}

.legacy-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;
}

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


/* ---------------------------------------------------------
   Boat Survey & Project List — historical typography
   Post ID 1474
   --------------------------------------------------------- */

.post-id-1474 .post-detail-content h2 {
  margin: 0 0 28px;

  color: #1ebdbb;

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

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

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

.post-id-1474 .post-detail-content h4 {
  margin: 24px 0 10px;

  color: #1ebdbb;

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

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

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


/*
 * The original twocol_one / twocol_one_last shortcodes
 * form paired historical columns.
 */

.post-id-1474 .legacy-two-column {
  width: 100%;

  display: grid;

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

  column-gap: 55px;

  align-items: start;

  margin: 14px 0 26px;
}

.post-id-1474 .legacy-two-column-item {
  min-width: 0;
}

.post-id-1474 .post-detail-content ul {
  margin: 7px 0 20px;
  padding-left: 21px;
}

.post-id-1474 .post-detail-content li {
  margin-bottom: 11px;
}


/* Clear historical floats at structural breaks */

.post-gallery,
.jja-video-embed,
.legacy-post-video,
.legacy-divider,
.post-nav,
.post-comments {
  clear: both;
}


@media (max-width: 700px) {

  .post-detail-content img.alignleft,
  .post-detail-content img.alignright {
    float: none;

    width: auto;
    max-width: 100%;

    display: block;

    margin: 18px auto;
  }

  .post-id-1474 .legacy-two-column {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    max-width: 330px;
    margin: 0 auto;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
  }

  .blog-list-image {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 560px) {

  .blog-layout {
    padding: 30px 20px 45px;
  }

  .blog-list-copy h2 {
    font-size: 21px;
  }
}
