/***************** HERO *******************/

.hero {
  max-width: 138rem;
  margin: 0 auto;
  padding: 3.2rem 4.8rem 0;
}

.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 54rem;
  cursor: pointer;
  background: #111;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition:
    transform 8s var(--ease),
    opacity 0.6s;
}

.hero-card:hover img {
  transform: scale(1.06);
  opacity: 0.5;
}

.hero-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11, 78, 68, 0.7) 0%, transparent 45%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.35) 30%,
      transparent 60%
    );

  z-index: 3;
  pointer-events: none;
}

.hero-card > a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-inner {
  position: absolute;
  inset: 0;
  padding: 5.6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  z-index: 5;
  pointer-events: none;
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
  align-items: center;
}

.hero-badges span {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border-radius: 0.6rem;
}

.hb-cat {
  background: var(--mint);
  color: var(--teal-ddd);
}

.hb-top {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.6rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-family: var(--font);
  font-size: 5.12rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 72rem;
  margin-bottom: 1.8rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.44rem;
  line-height: 1.65;
  max-width: 52rem;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.248rem;
  font-weight: 500;
}

.hero-date-float {
  position: absolute;
  top: 3.2rem;
  right: 3.2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  padding: 2rem 2.8rem;
  text-align: center;
  z-index: 4;
  pointer-events: none;
}

.hero-date-float .d {
  font-size: 4.48rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-date-float .m {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
}

.hero-date-float .y {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.2rem;
  font-weight: 400;
}

/***** top destination ******/

.destday {
  max-width: 138rem;
  margin: 0 auto;
  padding: 4.6rem 4.8rem 1rem;
}

.dest-card {
  display: grid;
  grid-template-columns: 40rem 1fr;
  gap: 0;
  background: var(--white);
  border: 0.1rem solid var(--border-l);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s;
}

.dest-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.dest-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.dest-card:hover .dest-img img {
  transform: scale(1.05);
}

.dest-body {
  padding: 3.4rem 3.4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  padding: 0.7rem 1.2rem;
  border-radius: 99.9rem;
  background: rgba(153, 0, 102, 0.12);
  border: 0.1rem solid rgba(153, 0, 102, 0.28);
  color: #990066;
  font-size: 1.088rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.dest-body h3 {
  font-size: 2.48rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 900;
}

.dest-body p {
  font-size: 1.408rem;
  line-height: 1.7;
  color: var(--ink3);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.dest-meta {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--ink4);
  font-size: 1.248rem;
  font-weight: 600;
}

.dest-meta span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/** CATEGORIES */

.cats {
  max-width: 138rem;
  margin: 0 auto;
  padding: 2.8rem 4.8rem 1.8rem;
}

.cats .sec-h {
  margin-bottom: 1.6rem;
}

.cat-rail-wrap {
  position: relative;
}

.cat-rail {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.2rem 0.2rem 1.2rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 2.8rem,
    #000 calc(100% - 2.8rem),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 2.8rem,
    #000 calc(100% - 2.8rem),
    transparent 100%
  );
}

.cat-rail::-webkit-scrollbar {
  height: 0.8rem;
}

.cat-rail::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 99.9rem;
}

.cat-rail::-webkit-scrollbar-track {
  background: transparent;
}

.cat-tile {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 40rem;
  height: 26.6rem;
  border-radius: 2.2rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 90%),
    var(--img) center/cover no-repeat;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.08);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    filter 0.45s var(--ease);
}

.cat-tile:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.14);
  filter: saturate(1.05);
}

.cat-tile .ico {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(1rem);
}

.cat-tile .meta {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.cat-tile h3 {
  font-size: 1.568rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cat-tile .count {
  font-size: 1.152rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.cat-tile .go {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 153, 204, 0.92);
  border: 0.1rem solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 1.6rem 4.6rem rgba(102, 153, 204, 0.22);
}

.cats .rail-ctrl {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rail-btn {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 99.9rem;
  border: 0.1rem solid var(--border);
  background: #fff;
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.rail-btn:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 1.8rem 4.4rem rgba(0, 0, 0, 0.08);
  border-color: rgba(102, 153, 204, 0.35);
}

.rail-btn:active {
  transform: translateY(-0.1rem);
}

.rail-btn:focus-visible {
  outline: 0.2rem solid var(--mint);
  outline-offset: 0.3rem;
}

/* regions */

.regs {
  background: linear-gradient(180deg, var(--teal-ll) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  border-top: 0.1rem solid var(--border);
  border-bottom: 0.1rem solid var(--border);
  padding: 2.8rem 0;
}

.regs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20rem,
    rgba(255, 255, 255, 0.02) 20rem,
    rgba(255, 255, 255, 0.02) 20.1rem
  );
}

.reg-in {
  max-width: 138rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  position: relative;
  gap: 1rem;
  flex-wrap: wrap;
  background: #fff;
  border: 0.1rem solid var(--border);
  border-radius: 1.6rem;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.06);
}

.reg-in a {
  flex: 1;
  text-align: left;
  padding: 1.4rem 1.6rem;
  color: var(--ink3);
  font-size: 1.36rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: all 0.3s;
  position: relative;
  min-width: 19rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 0.1rem solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.reg-in a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 3rem;
  height: 0.3rem;
  background: var(--mint);
  border-radius: 0.3rem 0.3rem 0 0;
  transition: transform 0.35s var(--ease);
}

.reg-in a:hover,
.reg-in a.on {
  color: var(--ink);
  border-color: rgba(102, 153, 204, 0.35);
  box-shadow: 0 1.4rem 3.4rem rgba(26, 122, 109, 0.12);
  transform: translateY(-0.2rem);
}

.reg-in a:hover::after,
.reg-in a.on::after {
  transform: translateX(-50%) scaleX(1);
}

.reg-wrap {
  max-width: 138rem;
  margin: 0 auto;
  padding: 0 4.8rem;
}

.reg-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.8rem;
  margin-bottom: 1.6rem;
}

.reg-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.68rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.reg-ico {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.1rem solid var(--border);
  color: var(--teal);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.06);
}

.reg-sub {
  color: var(--ink4);
  font-size: 1.344rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 52rem;
}

/* featured */

.feats {
  max-width: 138rem;
  margin: 0 auto;
  padding: 6.4rem 4.8rem;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}

.feat-grid .fc:first-child {
  grid-row: span 2;
}

.fc {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 0.1rem solid var(--border-l);
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}

.fc:hover {
  transform: translateY(-0.8rem);
}

.fc-img {
  position: relative;
  overflow: hidden;
}

.fc:first-child .fc-img {
  aspect-ratio: 4/3;
}

.fc:not(:first-child) .fc-img {
  aspect-ratio: 16/9;
}

.fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.fc:hover .fc-img img {
  transform: scale(1.05);
}

.fc-date {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.6rem;
  text-align: center;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.12);
  transition: all 0.35s;
}

.fc:hover .fc-date {
  background: var(--teal);
}

.fc:hover .fc-date .fd,
.fc:hover .fc-date .fm {
  color: #fff;
}

.fd {
  font-size: 2.24rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  transition: color 0.35s;
}

.fm {
  font-size: 0.928rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.35s;
}

.fc-body {
  padding: 2.4rem 2.8rem 2.8rem;
}

.fc-tag {
  display: inline-block;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-l);
  padding: 0.5rem 1.4rem;
  border-radius: 0.5rem;
  margin-bottom: 1.2rem;
}

.fc-body h3 {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.fc:first-child .fc-body h3 {
  font-size: 2.56rem;
}

.fc-body p {
  font-size: 1.312rem;
  color: var(--ink3);
  line-height: 1.6;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 0.1rem solid var(--border-l);
}

.fc-foot span {
  font-size: 1.2rem;
  color: var(--ink4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}
/* sponsors */
.sponsors {
  padding: 5.6rem 0 2.2rem;
  background: var(--white);
  border-top: 0.1rem solid var(--border);
  border-bottom: 0.1rem solid var(--border);
}

.sp-in {
  max-width: 138rem;
  margin: 0 auto;
  padding: 0 4.8rem;
}
/* LATEST */

.latest {
  background: var(--white);
  border-top: 0.1rem solid var(--border);
  border-bottom: 0.1rem solid var(--border);
  padding: 6.4rem 0;
}

.latest-in {
  max-width: 138rem;
  margin: 0 auto;
  padding: 0 4.8rem;
}

.l-row {
  display: grid;
  grid-template-columns: 36rem 1fr;
  gap: 3.2rem;
  align-items: center;
  padding: 2.8rem 0;
  border-bottom: 0.1rem solid var(--border-l);
  cursor: pointer;
  transition: all 0.3s;
}

.l-row:last-child {
  border-bottom: 0;
}

.l-row:hover {
  background: var(--teal-ll);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: var(--r);
}

.l-thumb {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/10;
  flex-shrink: 0;
}

.l-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.l-row:hover .l-thumb img {
  transform: scale(1.04);
}

.l-body .tag {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
  display: block;
}

.l-body h3 {
  font-family: var(--font);
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.l-body p {
  font-size: 1.312rem;
  color: var(--ink3);
  line-height: 1.6;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.l-meta {
  display: flex;
  gap: 1.6rem;
  font-size: 1.2rem;
  color: var(--ink4);
}

.l-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ═════════════════════════════════════════════
   PHOTO REPORTAGES
═════════════════════════════════════════════ */
.photos {
  padding: 5.6rem 0 7rem;
}

.ph-in {
  max-width: 138rem;
  margin: 0 auto;
  padding: 0 4.8rem;
}

.ph-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.ph {
  background: var(--white);
  border: 0.1rem solid var(--border-l);
  border-radius: 1.8rem;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.ph:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-hover);
}

.ph-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.ph-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.ph:hover .ph-img img {
  transform: scale(1.05);
}

.ph-body {
  padding: 1.6rem 1.6rem 1.8rem;
}

.ph-body span {
  display: block;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.6rem;
}

.ph-body h3 {
  font-size: 1.568rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* blog */

.blogs {
  max-width: 138rem;
  margin: 0 auto;
  padding: 6.4rem 4.8rem;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.bl {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 0.1rem solid var(--border-l);
  cursor: pointer;
  transition: all 0.45s var(--ease);
}

.bl:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.bl-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.bl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bl:hover .bl-img img {
  transform: scale(1.06);
}

.bl-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  background: var(--white);
  color: var(--teal);
  font-size: 0.928rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.1);
}

.bl-body {
  padding: 2.2rem 2.4rem 2.6rem;
}

.bl-body h3 {
  font-family: var(--font);
  font-size: 1.68rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-body p {
  font-size: 1.28rem;
  color: var(--ink3);
  line-height: 1.6;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.bl-body .meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.152rem;
  color: var(--ink5);
}

.bl-body .meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ═══════════════════════════════
   ≤110rem (large tablet / small laptop)
═══════════════════════════════ */
@media (max-width: 110rem) {
  .dest-card {
    grid-template-columns: 1fr;
  }

  .dest-body {
    padding: 2.6rem 2.4rem;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .feat-grid .fc:first-child {
    grid-row: auto;
  }

  .feat-grid .fc:first-child .fc-img {
    aspect-ratio: 16/9;
  }

  .ads-grid {
    grid-template-columns: 1fr;
  }

  .ad {
    height: 9.6rem;
  }
}

@media (max-width: 84rem) {
  .hero,
  .destday,
  .cats,
  .feats,
  .sponsors .sp-in,
  .latest-in,
  .ph-in,
  .blogs {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  /* Hero */
  .hero-card {
    height: 42rem;
    border-radius: var(--r-lg);
  }

  .hero-inner {
    padding: 3.2rem 3.6rem;
  }

  .hero-title {
    font-size: 3.52rem;
  }

  .hero-date-float {
    display: none;
  }

  /* Destination */
  .dest-card {
    grid-template-columns: 1fr;
  }

  /* Categories */
  .cats {
    padding: 2.2rem 1.8rem 1rem;
  }

  .cat-rail {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .cat-tile {
    width: calc((100% - 1.4rem) / 2);
    max-width: 34rem;
    height: 12.8rem;
  }

  .cats .rail-ctrl {
    display: none;
  }

  /* Regions */
  .reg-wrap {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .reg-top {
    flex-direction: column;
  }

  /* Photos */
  .ph-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blogs */
  .bl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Newsletter */
  .news-box {
    flex-direction: column;
    text-align: center;
    padding: 4rem 3.2rem;
  }

  .news-form {
    width: 100%;
  }

  .news-form input {
    flex: 1;
  }
}

@media (max-width: 60rem) {
  /* Hero */
  .hero {
    padding: 1.6rem 1.6rem 0;
  }

  .hero-card {
    height: auto; /* let content dictate height */
    min-height: 38rem;
    border-radius: var(--r-lg);
  }

  .hero-card > a {
    position: relative;
  }

  .hero-grad {
    display: none;
  }

  .hero-inner {
    padding: 2.4rem 2.4rem 3.2rem;
    position: relative; /* ensure stacking */
    background-color: var(--teal);
    pointer-events: unset;
  }

  .hero-badges {
    margin-bottom: 1.2rem;
  }

  .hero-badges span {
    font-size: 0.88rem;
    padding: 0.5rem 1.2rem;
  }

  .hero-title {
    font-size: 2.08rem;
    line-height: 1.12;
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    display: none;
  }

  .hero-meta {
    margin-top: 1.4rem;
    gap: 1.2rem;
  }

  .hero-date-float {
    display: none;
  }

  /* Destination */
  .dest-body h3 {
    font-size: 1.92rem;
  }

  /* Categories */
  .cat-tile {
    width: 80vw;
    height: 20rem;
  }

  /* Regions */
  .reg-in a {
    min-width: 0;
    flex: 1 1 100%;
  }

  /* Featured */
  .fc-body h3 {
    font-size: 1.68rem;
  }

  .fc:first-child .fc-body h3 {
    font-size: 1.68rem;
  }

  /* Latest */
  .l-row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .l-thumb {
    aspect-ratio: 16/9;
  }

  /* Photos */
  .ph-strip {
    grid-template-columns: 1fr;
  }

  /* Blogs */
  .bl-grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter */
  .news-form {
    flex-direction: column;
  }
}
