.top-main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px var(--page-gutter) 56px;
}

.top-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 8px 0 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(61,125,200,.12), rgba(255,123,171,.10)),
    #fff;
  box-shadow: 0 14px 36px rgba(39,68,108,.08);
}

.top-hero-copy,
.top-link-card {
  min-width: 0;
}

.top-eyebrow {
  margin: 0 0 8px;
  color: var(--b);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.top-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: 'Baloo 2', 'M PLUS Rounded 1c', sans-serif;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0;
}

.top-lead {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--body-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid color-mix(in oklab, var(--b) 28%, #fff);
  border-radius: 12px;
  background: #fff;
  color: var(--b);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.top-action--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--b), var(--p));
  color: #fff;
}

.top-hero-media {
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(39,68,108,.07);
}

.top-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.top-section {
  margin-top: 30px;
}

.top-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.top-link-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(39,68,108,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.top-link-card:hover,
.top-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--b) 36%, #fff);
  box-shadow: 0 16px 34px rgba(39,68,108,.12);
}

.top-link-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.top-link-body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.top-link-body em {
  color: var(--body-text);
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.65;
}

.top-section-lead {
  margin: -4px 0 14px;
  color: var(--body-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.top-article-grid.tw-article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.top-article-grid .tw-article-body {
  padding: 14px;
}

.top-article-grid .tw-article-title {
  min-height: 0;
  margin-bottom: 0;
}

.top-article-grid .tw-article-more {
  margin-top: auto;
}

.top-hotel-grid .tw-featured-hotels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.top-hotel-grid .tw-featured-hotels .hotel-feature-card {
  grid-template-columns: 1fr;
  min-height: 100%;
  align-content: start;
}

.top-hotel-grid .tw-featured-hotels .hotel-feature-photo {
  height: 150px;
  min-height: 0;
}

.top-hotel-grid .tw-featured-hotels .hotel-feature-photo img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.top-hotel-grid .tw-featured-hotels .hotel-feature-body {
  justify-content: flex-start;
}

.top-hotel-grid .tw-featured-hotels .hotel-feature-body h3 {
  font-size: 14px;
}

.top-hotel-grid .tw-featured-hotels .hotel-feature-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.top-hotel-grid .tw-featured-hotels .hotel-booking-btn {
  flex-basis: auto;
  width: 100%;
}

.top-hotel-grid .tw-featured-foot {
  display: none;
}

.top-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b), var(--p));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(61,125,200,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.top-more-link:hover,
.top-more-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(61,125,200,.24);
}

.top-empty {
  margin: 0;
  color: var(--body-text);
  font-size: 14px;
}

@media (max-width: 900px) {
  .top-hero {
    grid-template-columns: 1fr;
  }

  .top-link-grid,
  .top-article-grid.tw-article-grid,
  .top-hotel-grid .tw-featured-hotels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .top-hero {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .top-hero h1 {
    font-size: 44px;
  }

  .top-lead {
    font-size: 14px;
  }

  .top-link-grid,
  .top-article-grid.tw-article-grid,
  .top-hotel-grid .tw-featured-hotels {
    grid-template-columns: 1fr;
  }

  .top-hotel-grid .tw-featured-hotels .hotel-feature-photo {
    height: 190px;
  }
}
