/* 1박2일 국내골프 전용 화면 */
.mg-content-page--tour {
  background: #f5f8f6;
}

.domestic-main {
  width: 100%;
  max-width: none;
  padding: 0;
}

.domestic-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
  color: #173f35;
}

.domestic-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.domestic-page-head > div > span,
.domestic-section-head > div > span,
.domestic-region-finder__copy > span {
  display: block;
  margin-bottom: 6px;
  color: #b18b43;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.domestic-page-head h1 {
  margin: 0;
  color: #173f35;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.domestic-page-head p,
.domestic-section-head p,
.domestic-region-finder__copy p {
  margin: 7px 0 0;
  color: #6f817a;
  font-size: 13px;
  line-height: 1.65;
}

.domestic-page-head > nav {
  display: flex;
  gap: 6px;
}

.domestic-page-head > nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d9e3de;
  border-radius: 999px;
  background: #fff;
  color: #60746d;
  font-size: 12px;
  font-weight: 800;
}

.domestic-page-head > nav a.is-active {
  border-color: #173f35;
  background: #173f35;
  color: #fff;
}

.domestic-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 16px;
}

.domestic-feature__main {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 354px;
  border-radius: 16px;
  background: #173f35;
  box-shadow: 0 16px 34px rgba(23, 63, 53, 0.12);
}

.domestic-feature__main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.domestic-feature__main:hover > img {
  transform: scale(1.025);
}

.domestic-feature__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 48, 39, 0.9) 0%, rgba(10, 48, 39, 0.58) 46%, rgba(10, 48, 39, 0.08) 78%);
}

.domestic-feature__main > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: min(72%, 390px);
  min-height: 354px;
  padding: 34px;
  color: #fff;
}

.domestic-feature__main > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-bottom: 13px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 10px;
  font-weight: 850;
}

.domestic-feature__main h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.domestic-feature__main p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 12px;
  line-height: 1.65;
  word-break: keep-all;
}

.domestic-feature__main strong {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 43px;
  padding: 0 16px;
  border-radius: 9px;
  background: #fff;
  color: #173f35;
  font-size: 12px;
}

.domestic-feature__main strong i {
  font-style: normal;
}

.domestic-popular {
  padding: 23px;
  border: 1px solid #dbe5e0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 63, 53, 0.06);
}

.domestic-popular > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.domestic-popular > header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.domestic-popular > header i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #62bd43;
  box-shadow: 0 0 0 5px rgba(98, 189, 67, 0.11);
}

.domestic-popular h2 {
  margin: 0;
  color: #173f35;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.domestic-popular > header > a {
  color: #70817b;
  font-size: 11px;
  font-weight: 750;
}

.domestic-popular__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.domestic-popular__grid > a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-width: 0;
  min-height: 122px;
  overflow: hidden;
  border: 1px solid #e0e7e3;
  border-radius: 11px;
  background: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.domestic-popular__grid > a:hover {
  transform: translateY(-2px);
  border-color: #b9cec5;
  box-shadow: 0 8px 18px rgba(23, 63, 53, 0.08);
}

.domestic-popular__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.domestic-popular__grid a > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 0;
  padding: 13px 11px;
}

.domestic-popular__grid strong {
  display: -webkit-box;
  overflow: hidden;
  color: #294a42;
  font-size: 12px;
  line-height: 1.45;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.domestic-popular__grid span {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  color: #85928e;
  font-size: 9px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.domestic-popular__grid b {
  margin-top: auto;
  color: #e07056;
  font-size: 12px;
}

.domestic-products {
  margin-top: 48px;
  scroll-margin-top: 100px;
}

.domestic-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 16px;
}

.domestic-section-head h2,
.domestic-region-finder__copy h2 {
  margin: 0;
  color: #173f35;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.04em;
}

.domestic-sort {
  display: flex;
  gap: 5px;
}

.domestic-sort a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #dce5e1;
  border-radius: 8px;
  background: #fff;
  color: #788781;
  font-size: 10px;
  font-weight: 750;
}

.domestic-sort a.is-active {
  border-color: #173f35;
  color: #173f35;
}

.domestic-region-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #173f35;
  border-radius: 11px;
  background: #173f35;
}

.domestic-region-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.domestic-region-tabs a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.domestic-region-tabs a.is-active {
  background: #fff;
  color: #173f35;
}

.domestic-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 16px;
}

.domestic-product-card {
  min-width: 0;
}

.domestic-product-card > a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid #dce5e1;
  border-radius: 14px;
  background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.domestic-product-card > a:hover {
  transform: translateY(-3px);
  border-color: #b9ccc4;
  box-shadow: 0 12px 26px rgba(23, 63, 53, 0.09);
}

.domestic-product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.48 / 1;
  background: #dfe9e4;
}

.domestic-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.domestic-product-card > a:hover img {
  transform: scale(1.035);
}

.domestic-product-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(23, 63, 53, 0.88);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  backdrop-filter: blur(4px);
}

.domestic-product-card__body {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  min-height: 178px;
  padding: 16px;
}

.domestic-product-card h3 {
  display: -webkit-box;
  min-height: 41px;
  margin: 0;
  overflow: hidden;
  color: #23473d;
  font-size: 14px;
  line-height: 1.45;
  word-break: keep-all;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.domestic-product-card p {
  margin: 8px 0 0;
  color: #647970;
  font-size: 10px;
  font-weight: 750;
}

.domestic-product-card small {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: #8a9793;
  font-size: 10px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.domestic-product-card__body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.domestic-product-card__body strong {
  color: #e36e55;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.domestic-product-card__body em {
  color: #43655c;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.domestic-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 34px;
}

.domestic-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dce5e1;
  border-radius: 9px;
  background: #fff;
  color: #71817b;
  font-size: 11px;
  font-weight: 800;
}

.domestic-pagination a.is-active {
  border-color: #173f35;
  background: #173f35;
  color: #fff;
}

.domestic-region-finder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  min-height: 330px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid #d9e4de;
  border-radius: 16px;
  background: #fff;
}

.domestic-region-finder__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
}

.domestic-region-finder__copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 23px;
}

.domestic-region-finder__copy > div a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 67px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #d8e3dd;
  border-radius: 999px;
  color: #426159;
  font-size: 11px;
  font-weight: 800;
}

.domestic-region-finder__copy > div a:hover {
  border-color: #173f35;
  background: #173f35;
  color: #fff;
}

.domestic-region-finder__map {
  display: grid;
  place-items: center;
  min-height: 330px;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 200, 134, 0.26), transparent 120px),
    linear-gradient(145deg, #e7f3ee, #d5ebe3);
}

.domestic-region-finder__map svg {
  width: min(72%, 270px);
  height: 285px;
  filter: drop-shadow(0 14px 24px rgba(23, 63, 53, 0.14));
}

.domestic-region-finder__map path {
  fill: #fff;
  stroke: rgba(23, 63, 53, 0.22);
  stroke-width: 2;
}

.domestic-region-finder__map circle {
  fill: #df789a;
  stroke: #fff;
  stroke-width: 3;
}

.domestic-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 25px 28px;
  border-radius: 14px;
  background: #173f35;
  color: #fff;
}

.domestic-help > div {
  display: grid;
  gap: 5px;
}

.domestic-help span {
  color: #e2c47d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.domestic-help strong {
  font-size: 16px;
}

.domestic-help p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
}

.domestic-help > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff;
  color: #173f35;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .domestic-feature {
    grid-template-columns: 1fr;
  }

  .domestic-popular__grid > a {
    grid-template-columns: 118px minmax(0, 1fr);
  }

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

@media (max-width: 820px) {
  .domestic-wrap {
    width: min(100% - 28px, 720px);
    padding-top: 24px;
  }

  .domestic-page-head,
  .domestic-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .domestic-page-head > nav {
    width: 100%;
  }

  .domestic-page-head > nav a {
    flex: 1;
  }

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

  .domestic-region-tabs {
    display: flex;
    overflow-x: auto;
    border-radius: 10px;
    scrollbar-width: none;
  }

  .domestic-region-tabs::-webkit-scrollbar {
    display: none;
  }

  .domestic-region-tabs a {
    flex: 0 0 84px;
  }

  .domestic-sort {
    width: 100%;
  }

  .domestic-sort a {
    flex: 1;
  }

  .domestic-region-finder {
    grid-template-columns: 1fr;
  }

  .domestic-region-finder__map {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .domestic-wrap {
    width: calc(100% - 24px);
    padding: 18px 0 44px;
  }

  .domestic-page-head {
    margin-bottom: 18px;
  }

  .domestic-page-head p {
    font-size: 12px;
  }

  .domestic-page-head > nav a {
    min-width: 0;
    min-height: 44px;
    padding: 0 9px;
  }

  .domestic-feature__main,
  .domestic-feature__main > div {
    min-height: 325px;
  }

  .domestic-feature__main > div {
    width: 84%;
    padding: 25px;
  }

  .domestic-feature__shade {
    background: linear-gradient(90deg, rgba(10, 48, 39, 0.91) 0%, rgba(10, 48, 39, 0.64) 62%, rgba(10, 48, 39, 0.18) 100%);
  }

  .domestic-popular {
    padding: 19px 16px;
  }

  .domestic-popular__grid {
    grid-template-columns: 1fr;
  }

  .domestic-popular__grid > a {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 112px;
  }

  .domestic-products {
    margin-top: 38px;
  }

  .domestic-section-head {
    gap: 18px;
  }

  .domestic-sort {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .domestic-sort a {
    flex: 0 0 74px;
    min-height: 40px;
  }

  .domestic-region-tabs a {
    min-height: 46px;
  }

  .domestic-product-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .domestic-product-card > a {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .domestic-product-card__image {
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
  }

  .domestic-product-card__body {
    min-height: 190px;
    padding: 15px 14px;
  }

  .domestic-product-card h3 {
    min-height: auto;
    font-size: 13px;
  }

  .domestic-product-card__body > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .domestic-product-card__body strong {
    font-size: 14px;
  }

  .domestic-pagination a {
    width: 43px;
    height: 43px;
  }

  .domestic-region-finder {
    margin-top: 42px;
  }

  .domestic-region-finder__copy {
    padding: 27px 22px;
  }

  .domestic-region-finder__map {
    min-height: 250px;
  }

  .domestic-region-finder__map svg {
    height: 225px;
  }

  .domestic-help {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .domestic-help > a {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .domestic-product-card > a {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .domestic-product-card__body {
    padding: 14px 12px;
  }

  .domestic-product-card p,
  .domestic-product-card small {
    font-size: 9px;
  }
}
