* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  background: #f4f7fb;
  color: #172033;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(40, 61, 92, 0.12);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #123b63;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #43536c;
}

.nav a:hover {
  color: #0d74c9;
}

.hero {
  max-width: 1180px;
  margin: 38px auto 0;
  padding: 70px 22px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
}

.hero-text {
  padding: 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(50, 139, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #102947, #1e5f8f 55%, #2fb7aa);
  color: white;
  box-shadow: 0 28px 70px rgba(22, 66, 110, 0.28);
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-desc {
  max-width: 640px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: white;
  font-weight: 800;
}

.btn.primary {
  background: #ffffff;
  color: #123b63;
}

.btn:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}

.hero-panel {
  border-radius: 34px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(35, 64, 99, 0.1);
  box-shadow: 0 22px 50px rgba(33, 57, 88, 0.12);
}

.hero-panel span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #0d74c9;
  margin-bottom: 12px;
}

.hero-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #102947;
  margin-bottom: 12px;
}

.hero-panel p {
  color: #65748c;
  margin-bottom: 20px;
}

.sample-url {
  padding: 13px 15px;
  margin-top: 10px;
  border-radius: 14px;
  background: #f0f6ff;
  border: 1px solid #dceaff;
  color: #164b7d;
  font-size: 14px;
  font-weight: 800;
}

.summary {
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.summary div {
  background: white;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(35, 64, 99, 0.1);
  box-shadow: 0 14px 32px rgba(33, 57, 88, 0.08);
}

.summary strong {
  display: block;
  font-size: 28px;
  color: #102947;
}

.summary span {
  color: #65748c;
  font-weight: 700;
}

.main-cards {
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.big-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(31, 58, 92, 0.22);
}

.big-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.big-card span {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  opacity: 0.86;
}

.big-card h2 {
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.big-card p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.seoul-card {
  background: linear-gradient(135deg, #123b63, #2879c5);
}

.gyeonggi-card {
  background: linear-gradient(135deg, #23425f, #2fb7aa);
}

.incheon-card {
  background: linear-gradient(135deg, #2d3b78, #7b6ee6);
}

.region-section {
  max-width: 1180px;
  margin: 34px auto;
  padding: 42px 22px;
}

.dark-section {
  max-width: none;
  background: #102947;
  padding: 64px 22px;
}

.dark-section .section-title,
.dark-section .region-grid {
  max-width: 1136px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 24px;
}

.section-title p {
  font-size: 13px;
  font-weight: 900;
  color: #0d74c9;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.section-title h2 {
  font-size: 34px;
  color: #102947;
  letter-spacing: -1.2px;
}

.dark-section .section-title h2 {
  color: #ffffff;
}

.dark-section .section-title p {
  color: #6bd6ff;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.region-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(35, 64, 99, 0.1);
  color: #21344f;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(33, 57, 88, 0.06);
}

.region-grid a:hover {
  background: #0d74c9;
  color: #ffffff;
  transform: translateY(-2px);
  transition: 0.2s ease;
}

.dark-section .region-grid a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: none;
}

.dark-section .region-grid a:hover {
  background: #2fb7aa;
  color: #ffffff;
}

.guide {
  max-width: 1180px;
  margin: 34px auto 70px;
  padding: 0 22px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-grid div {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(35, 64, 99, 0.1);
  box-shadow: 0 16px 36px rgba(33, 57, 88, 0.08);
}

.guide-grid strong {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #e8f4ff;
  color: #0d74c9;
  font-weight: 900;
  margin-bottom: 18px;
}

.guide-grid h3 {
  font-size: 21px;
  color: #102947;
  margin-bottom: 10px;
}

.guide-grid p {
  color: #65748c;
}

.footer {
  padding: 36px 22px;
  text-align: center;
  background: #0b1d31;
  color: white;
}

.footer p {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

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

  .hero h1 {
    font-size: 40px;
  }

  .summary,
  .main-cards,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .header-inner {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-text {
    padding: 32px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 28px;
  }
}
.region-image-wrap{
  max-width:980px;
  margin:36px auto;
  padding:0 20px;
}
.region-image-wrap img{
  display:block;
  width:100%;
  max-width:750px;
  margin:0 auto;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
}


/* ===== EDITORIAL THEME START ===== */

:root {
  --paper: #f7f1e7;
  --paper-light: #fffaf2;
  --ink: #28231f;
  --ink-soft: #71675f;
  --line: #ded1c2;
  --coral: #df684f;
  --coral-dark: #b84636;
  --olive: #68745b;
  --brown: #3d3029;
  --cream: #fff6e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 2%, rgba(223, 104, 79, 0.10), transparent 24%),
    radial-gradient(circle at 95% 20%, rgba(104, 116, 91, 0.10), transparent 26%),
    var(--paper);
  color: var(--ink);
  line-height: 1.75;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(61, 48, 41, 0.96);
  border-bottom: 0;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(45, 35, 29, 0.14);
}

.header-inner {
  max-width: 1240px;
  min-height: 76px;
  padding: 14px 28px;
}

.logo {
  color: var(--cream);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.logo::before {
  content: "●";
  display: inline-block;
  margin-right: 10px;
  color: var(--coral);
  font-size: 13px;
  vertical-align: 2px;
}

.nav {
  gap: 8px;
  color: var(--cream);
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 246, 232, 0.78);
  transition: 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 246, 232, 0.12);
  color: #ffffff;
}

.region-image-wrap {
  max-width: 1240px;
  margin: 34px auto 0;
  padding: 0 28px;
}

.region-image-wrap img {
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(220px, 31vw, 390px);
  margin: 0;
  object-fit: cover;
  border-radius: 10px 70px 10px 70px;
  border: 10px solid var(--paper-light);
  box-shadow: 0 24px 60px rgba(61, 48, 41, 0.16);
}

.hero {
  max-width: 1240px;
  margin: 26px auto 0;
  padding: 36px 28px 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
}

.hero-text {
  position: relative;
  padding: clamp(34px, 5vw, 68px);
  border-radius: 10px 70px 10px 70px;
  background: var(--paper-light);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(61, 48, 41, 0.12);
  overflow: hidden;
}

.hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 8px;
  background: var(--coral);
}

.hero-text::after {
  content: "LOCAL GUIDE";
  position: absolute;
  right: -28px;
  bottom: 48px;
  transform: rotate(-90deg);
  color: rgba(40, 35, 31, 0.08);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
}

.eyebrow {
  padding: 7px 12px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: #f2dfd4;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.hero-desc {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.hero-buttons {
  gap: 10px;
}

.btn {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-weight: 850;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--coral);
  border-color: var(--coral);
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--brown);
  border-color: var(--brown);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(61, 48, 41, 0.16);
}

.hero-panel {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 70px 10px 70px 10px;
  background: var(--brown);
  border: 0;
  color: var(--cream);
  box-shadow: 0 24px 58px rgba(61, 48, 41, 0.22);
}

.hero-panel span {
  color: #ef9b87;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.hero-panel strong {
  color: var(--cream);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.25;
}

.hero-panel p {
  color: rgba(255, 246, 232, 0.67);
}

.sample-url {
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(255, 246, 232, 0.08);
  border: 1px solid rgba(255, 246, 232, 0.14);
  color: var(--cream);
  font-size: 13px;
}

.summary {
  max-width: 1240px;
  margin: 0 auto 54px;
  padding: 0 28px;
  gap: 14px;
}

.summary div {
  position: relative;
  padding: 25px 26px 25px 40px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

.summary div::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 20px;
  width: 4px;
  background: var(--coral);
}

.summary strong {
  color: var(--ink);
  font-size: 26px;
}

.summary span {
  color: var(--ink-soft);
}

.main-cards {
  max-width: 1240px;
  margin: 0 auto 60px;
  padding: 0 28px;
  gap: 16px;
}

.big-card {
  min-height: 280px;
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(61, 48, 41, 0.10);
  transition: 0.25s ease;
}

.big-card::after {
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -65px;
  background: transparent;
  border: 26px solid rgba(61, 48, 41, 0.07);
}

.big-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 54px rgba(61, 48, 41, 0.16);
}

.big-card span {
  color: var(--coral-dark);
  opacity: 1;
}

.big-card h2 {
  color: var(--ink);
  font-size: 30px;
}

.big-card p {
  color: var(--ink-soft);
}

.seoul-card {
  background: #eee4d4;
}

.gyeonggi-card {
  background: #f8ede4;
}

.incheon-card {
  background: #e8eadf;
}

.region-section {
  max-width: 1240px;
  margin: 28px auto;
  padding: 52px 28px;
}

.dark-section {
  max-width: 1184px;
  margin: 50px auto;
  padding: 58px 48px;
  border-radius: 8px 80px 8px 80px;
  background: var(--brown);
}

.dark-section .section-title,
.dark-section .region-grid {
  max-width: none;
}

.section-title {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 5px;
  background: var(--coral);
}

.section-title p,
.section-title > span {
  display: block;
  margin-bottom: 5px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.section-title h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -1.6px;
}

.dark-section .section-title h2 {
  color: var(--cream);
}

.dark-section .section-title p,
.dark-section .section-title > span {
  color: #ef9b87;
}

.region-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.region-grid a {
  position: relative;
  min-height: 54px;
  padding: 12px 16px 12px 22px;
  justify-content: flex-start;
  border-radius: 4px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
  transition: 0.2s ease;
}

.region-grid a::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.region-grid a:hover {
  transform: translateX(4px);
  background: var(--coral);
  border-color: var(--coral);
  color: #ffffff;
}

.region-grid a:hover::before {
  background: #ffffff;
}

.dark-section .region-grid a {
  background: rgba(255, 246, 232, 0.07);
  border-color: rgba(255, 246, 232, 0.16);
  color: var(--cream);
}

.dark-section .region-grid a:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.guide {
  max-width: 1240px;
  margin: 50px auto 80px;
  padding: 0 28px;
}

.guide-grid {
  gap: 14px;
}

.guide-grid div {
  padding: 30px;
  border-radius: 6px 40px 6px 40px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: none;
}

.guide-grid strong {
  width: auto;
  height: auto;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 3px;
  background: var(--coral);
  color: #ffffff;
}

.guide-grid h3 {
  color: var(--ink);
}

.guide-grid p {
  color: var(--ink-soft);
}

.footer {
  padding: 48px 22px;
  background: #2f2520;
  color: var(--cream);
  border-top: 8px solid var(--coral);
}

.footer p {
  font-size: 20px;
}

.footer span {
  color: rgba(255, 246, 232, 0.57);
}

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

  .summary,
  .main-cards,
  .guide-grid {
    grid-template-columns: 1fr;
  }

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

  .dark-section {
    margin-left: 20px;
    margin-right: 20px;
    padding: 46px 28px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: auto;
    padding: 15px 18px;
  }

  .nav {
    gap: 4px;
  }

  .nav a {
    padding: 7px 10px;
    white-space: nowrap;
  }

  .region-image-wrap {
    padding: 0 16px;
  }

  .region-image-wrap img {
    height: 210px;
    border-width: 6px;
    border-radius: 6px 36px 6px 36px;
  }

  .hero {
    padding: 20px 16px 48px;
  }

  .hero-text {
    padding: 34px 24px;
    border-radius: 6px 40px 6px 40px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .hero-panel {
    padding: 32px 24px;
    border-radius: 40px 6px 40px 6px;
  }

  .summary,
  .main-cards,
  .guide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .region-section {
    padding: 40px 16px;
  }

  .dark-section {
    margin: 34px 10px;
    padding: 40px 18px;
    border-radius: 6px 46px 6px 46px;
  }

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

  .region-grid a {
    min-height: 50px;
    padding: 10px 10px 10px 20px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ===== EDITORIAL THEME END ===== */
/* popular-button-related-area-layout */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-buttons .btn {
  text-align: center;
}

.sample-url {
  width: 100%;
  text-align: center;
}

.related-region-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.related-region-group {
  padding: 20px;
  border: 1px solid rgba(255, 246, 232, 0.16);
  border-radius: 10px;
  background: rgba(255, 246, 232, 0.05);
}

.related-region-group h3 {
  margin: 0 0 14px;
  color: #ef9b87;
  text-align: center;
  font-size: 18px;
}

.related-region-group .region-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-region-group .region-grid a {
  justify-content: center;
  padding: 12px;
  text-align: center;
}

.related-region-group .region-grid a::before {
  display: none;
}

@media (max-width: 720px) {
  .related-region-groups {
    grid-template-columns: 1fr;
  }

  .related-region-group .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* full-related-region-list */
.related-region-groups {
  grid-template-columns: 1fr;
}

.related-region-group .region-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.related-region-group h3 {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .related-region-group .region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .related-region-group .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* hero-region-image-layout */
.hero-with-region-image {
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, .52fr) minmax(280px, .85fr);
  align-items: stretch;
}

.hero-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-nav-link {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(61, 48, 41, .22);
  border-radius: 12px;
  background: #ffffff;
  color: var(--brown);
  font-weight: 900;
  text-align: center;
}

.hero-middle-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-middle-action a {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  background: #ffcf4a;
  color: #172033;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 16px 34px rgba(61, 48, 41, .16);
}

.hero-region-image {
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px 70px 18px 70px;
  box-shadow: 0 22px 48px rgba(61, 48, 41, .2);
}

.hero-region-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .hero-with-region-image {
    grid-template-columns: 1fr 1fr;
  }

  .hero-with-region-image .hero-text {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .hero-with-region-image {
    grid-template-columns: 1fr;
  }

  .hero-navigation {
    grid-template-columns: 1fr;
  }

  .hero-middle-action,
  .hero-region-image {
    width: 100%;
  }

  .hero-region-image {
    min-height: 260px;
  }

  .hero-region-image img {
    min-height: 260px;
  }
}
/* joined-hero-and-wide-popular-links */
.hero-with-region-image {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 0;
  align-items: stretch;
}

.hero-with-region-image .hero-text {
  border-radius: 70px 0 0 70px;
}

.hero-with-region-image .hero-region-image {
  min-height: 100%;
  border-radius: 0 70px 70px 0;
}

.hero-with-region-image .hero-region-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.popular-link-wide {
  max-width: 1184px;
  margin: 20px auto 46px;
  padding: 0 28px;
}

.popular-link-wide a {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 15px;
  background: #ffcf4a;
  color: #172033;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(61, 48, 41, .15);
  transition: .2s ease;
}

.popular-link-wide a:hover {
  transform: translateY(-3px);
  background: var(--coral);
  color: #ffffff;
}

.popular-link-bottom {
  margin-top: 24px;
  margin-bottom: 54px;
}

@media (max-width: 900px) {
  .hero-with-region-image {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-with-region-image .hero-text {
    border-radius: 46px 46px 0 0;
  }

  .hero-with-region-image .hero-region-image {
    min-height: 280px;
    border-radius: 0 0 46px 46px;
  }

  .popular-link-wide {
    padding: 0 18px;
  }
}
