/* GOGO Gunma Spot System v0.1.0 */

.ggg-spot {
  --ggg-spot-bg: #f8f5ed;
  --ggg-spot-card: #fffdf7;
  --ggg-spot-ink: #2a251d;
  --ggg-spot-muted: #6f665a;
  --ggg-spot-line: rgba(80, 63, 41, .16);
  --ggg-spot-accent: #1f6b46;
  --ggg-spot-accent-soft: rgba(31, 107, 70, .12);
  color: var(--ggg-spot-ink);
  background: linear-gradient(180deg, #fffdf8 0%, var(--ggg-spot-bg) 100%);
  padding: clamp(20px, 4vw, 56px) 16px 72px;
}

.ggg-spot a {
  color: inherit;
}

.ggg-spot-hero,
.ggg-spot-archive-hero,
.ggg-spot-archive-nav,
.ggg-spot-layout,
.ggg-spot-list,
.ggg-spot-pagination,
.ggg-spot-empty {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.ggg-spot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 64px);
}

.ggg-spot-hero__media,
.ggg-spot-list-card__media,
.ggg-spot-card__media {
  background: #ece3d2;
  overflow: hidden;
}

.ggg-spot-hero__media {
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 48px rgba(65, 47, 24, .16);
}

.ggg-spot-hero__image,
.ggg-spot-list-card__image,
.ggg-spot-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ggg-spot-hero__placeholder,
.ggg-spot-list-card__placeholder,
.ggg-spot-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  color: var(--ggg-spot-muted);
  background: repeating-linear-gradient(135deg, #f1eadc, #f1eadc 12px, #ebe1cf 12px, #ebe1cf 24px);
  font-weight: 700;
}

.ggg-spot-breadcrumb {
  color: var(--ggg-spot-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.ggg-spot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--ggg-spot-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

.ggg-spot-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.16;
  letter-spacing: .02em;
}

.ggg-spot-lead {
  margin: 18px 0 0;
  color: var(--ggg-spot-muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.85;
}

.ggg-spot-meta,
.ggg-spot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ggg-spot-meta span,
.ggg-spot-tags span,
.ggg-spot-list-card__tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ggg-spot-line);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255,255,255,.7);
  color: var(--ggg-spot-muted);
  font-size: 12px;
  font-weight: 700;
}

.ggg-spot-tags span,
.ggg-spot-list-card__tags span {
  background: var(--ggg-spot-accent-soft);
  color: var(--ggg-spot-accent);
  border-color: rgba(31, 107, 70, .18);
}

.ggg-spot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.ggg-spot-content {
  display: grid;
  gap: 20px;
}

.ggg-spot-section,
.ggg-spot-sidebox,
.ggg-spot-archive-nav,
.ggg-spot-empty {
  border: 1px solid var(--ggg-spot-line);
  border-radius: 24px;
  background: var(--ggg-spot-card);
  box-shadow: 0 12px 30px rgba(65, 47, 24, .07);
}

.ggg-spot-section {
  padding: clamp(22px, 4vw, 34px);
}

.ggg-spot-section__title {
  margin: 0 0 14px;
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.35;
}

.ggg-spot-section__body {
  color: #3a3329;
  font-size: 16px;
  line-height: 1.95;
}

.ggg-spot-section__body p:first-child {
  margin-top: 0;
}

.ggg-spot-section__body p:last-child {
  margin-bottom: 0;
}

.ggg-spot-warning {
  border-color: rgba(178, 104, 33, .28);
  background: #fff8eb;
}

.ggg-spot-disclaimer {
  background: #f7f1e5;
}

.ggg-spot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ggg-spot-accent);
  color: #fff !important;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 800;
}

.ggg-spot-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ggg-spot-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 13px;
  align-items: stretch;
  border: 1px solid var(--ggg-spot-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
}

.ggg-spot-card__media {
  aspect-ratio: 4 / 3;
}

.ggg-spot-card__body {
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 10px 12px 10px 0;
}

.ggg-spot-card__body strong {
  font-size: 15px;
  line-height: 1.35;
}

.ggg-spot-card__body em,
.ggg-spot-card__body small {
  color: var(--ggg-spot-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
}

.ggg-spot-sidebar {
  position: sticky;
  top: 20px;
}

.ggg-spot-sidebox {
  padding: 20px;
}

.ggg-spot-sidebox h2,
.ggg-spot-archive-nav h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.ggg-spot-sidebox a {
  display: block;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--ggg-spot-line);
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 800;
}

.ggg-spot-sidebox a + a {
  margin-top: 10px;
}

.ggg-spot-archive-hero {
  text-align: center;
  padding: clamp(20px, 4vw, 46px) 0 20px;
}

.ggg-spot-archive-actions {
  margin-top: 22px;
}

.ggg-spot-archive-actions a {
  display: inline-flex;
  border-radius: 999px;
  background: var(--ggg-spot-accent);
  color: #fff;
  padding: 11px 20px;
  text-decoration: none;
  font-weight: 800;
}

.ggg-spot-archive-nav {
  padding: 20px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.ggg-spot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ggg-spot-list-card {
  min-width: 0;
}

.ggg-spot-list-card__link {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 210px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ggg-spot-line);
  border-radius: 24px;
  background: var(--ggg-spot-card);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(65, 47, 24, .08);
}

.ggg-spot-list-card__body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.ggg-spot-list-card__type {
  color: var(--ggg-spot-accent);
  font-size: 12px;
  font-weight: 900;
}

.ggg-spot-list-card strong {
  font-size: 20px;
  line-height: 1.35;
}

.ggg-spot-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--ggg-spot-muted);
  font-size: 13px;
  font-weight: 700;
}

.ggg-spot-list-card__lead {
  color: #50483e;
  font-size: 14px;
  line-height: 1.75;
}

.ggg-spot-list-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.ggg-spot-pagination {
  margin-top: 30px;
  text-align: center;
}

.ggg-spot-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 3px;
  border-radius: 999px;
  border: 1px solid var(--ggg-spot-line);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.ggg-spot-pagination .current {
  background: var(--ggg-spot-accent);
  color: #fff;
}

.ggg-spot-empty {
  padding: 34px;
  text-align: center;
}

@media (max-width: 900px) {
  .ggg-spot-hero,
  .ggg-spot-layout,
  .ggg-spot-list,
  .ggg-spot-list-card__link {
    grid-template-columns: 1fr;
  }

  .ggg-spot-sidebar {
    position: static;
  }

  .ggg-spot-card-grid {
    grid-template-columns: 1fr;
  }

  .ggg-spot-list-card__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .ggg-spot {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ggg-spot-hero__media,
  .ggg-spot-section,
  .ggg-spot-sidebox,
  .ggg-spot-archive-nav,
  .ggg-spot-list-card__link {
    border-radius: 18px;
  }

  .ggg-spot-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }
}
