.south-guide {
  width: min(100% - 1.5rem, 78rem);
  margin: 0 auto;
}

.south-hero {
  display: grid;
  min-height: 0;
  padding: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: stretch;
  background: #9d452f;
}

.south-hero-copy {
  display: flex;
  min-width: 0;
  padding: clamp(1.4rem, 5vw, 3.7rem);
  flex-direction: column;
  justify-content: flex-end;
}

.south-hero h1 {
  max-width: 9ch;
}

.south-hero figure {
  position: relative;
  min-width: 0;
  min-height: 29rem;
  margin: 0;
  overflow: hidden;
  background: #39271f;
}

.south-hero figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(73, 35, 25, 0.25), transparent 35%);
  pointer-events: none;
}

.south-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.south-hero figcaption {
  position: absolute;
  z-index: 1;
  right: 0.8rem;
  bottom: 0.75rem;
  left: 0.8rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: rgba(35, 25, 21, 0.78);
  color: #fff4df;
  font-size: 0.7rem;
  line-height: 1.4;
}

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

.south-branch {
  margin-top: 1.2rem;
  padding: 1.1rem;
  border: 1px solid #e2d1ba;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(79, 52, 31, 0.07);
}

.south-branch ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
  counter-reset: east-route;
}

.south-branch li {
  position: relative;
  min-width: 0;
  padding: 0.8rem 0.8rem 0.8rem 3.1rem;
  border-radius: 11px;
  background: #f8efe1;
  counter-increment: east-route;
}

.south-branch li::before {
  content: counter(east-route, decimal-leading-zero);
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  place-items: center;
  background: #a64a37;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}

.south-branch strong,
.south-branch span {
  display: block;
}

.south-branch strong {
  color: #422e24;
  font-size: 0.9rem;
}

.south-branch span {
  margin-top: 0.25rem;
  color: #6c5b4f;
  font-size: 0.76rem;
  line-height: 1.45;
}

.south-branch > a {
  display: inline-block;
  margin-top: 0.9rem;
  color: #873225;
  font-size: 0.8rem;
  font-weight: 700;
}

.south-photo-grid {
  display: grid;
  margin-top: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.south-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e2d1ba;
  border-radius: 13px;
  background: #fff;
}

.south-photo-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.south-photo-grid figcaption {
  padding: 0.6rem 0.75rem;
  color: #6b594d;
  font-size: 0.72rem;
  font-weight: 700;
}

.south-sources ul {
  display: grid;
  margin: 1rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
}

.south-sources a {
  display: block;
  padding: 0.7rem 0.8rem;
  border: 1px solid #dfcfb8;
  border-radius: 10px;
  background: #fff;
  color: #873225;
  font-size: 0.76rem;
  font-weight: 700;
}

.south-sources a:hover,
.south-sources a:focus-visible {
  color: #5f2118;
}

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

  .south-hero figure {
    min-height: 22rem;
  }

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

@media (max-width: 575.98px) {
  .south-guide {
    width: min(100% - 1rem, 78rem);
  }

  .south-hero figure {
    min-height: 18rem;
  }

  .south-route-nav,
  .south-branch ol,
  .south-photo-grid,
  .south-sources ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .south-guide {
    scroll-behavior: auto;
  }
}
