:root {
  --bg: #f7fbfa;
  --surface: #ffffff;
  --surface-soft: #eef8f4;
  --text: #062f38;
  --muted: #5f7379;
  --line: #dce9e8;
  --green: #36c85c;
  --green-dark: #149b4a;
  --cyan: #22a7df;
  --navy: #052b35;
  --warning: #f2994a;
  --danger: #d94a4a;
  --shadow: 0 24px 70px rgba(7, 63, 72, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #ffffff 100%);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 76px;
  margin: 0;
  padding: 0 clamp(24px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 233, 232, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #214850;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a[href$="municipalities.php"],
.nav-links a[href$="operator-prices.php"],
.nav-links a[href*="/municipalities.php"],
.nav-links a[href*="/operator-prices.php"] {
  display: none !important;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.login-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  color: var(--navy);
  background: #eef8f4;
  border: 1px solid #cfe8df;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.language-switch {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.site-header > .login-button + .language-switch {
  margin-left: -24px;
}

.language-switch:hover {
  background: #0b4450;
}

main {
  width: 100%;
  margin: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 620px) 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 6vh, 78px) clamp(24px, 4vw, 72px) clamp(34px, 5vh, 56px);
  background: #07111f;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 251, 250, 0.96) 0%, rgba(247, 251, 250, 0.82) 34%, rgba(247, 251, 250, 0.28) 64%, rgba(247, 251, 250, 0.08) 100%),
    radial-gradient(circle at 18% 52%, rgba(54, 200, 92, 0.18) 0%, transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  word-break: keep-all;
}

.hero-copy h1 span {
  color: var(--green-dark);
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.search-panel {
  display: flex;
  align-items: center;
  width: min(100%, 540px);
  height: 62px;
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 63, 72, 0.1);
  overflow: hidden;
}

.search-panel input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 20px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 700;
}

.search-panel input::placeholder {
  color: #8aa0a4;
}

.search-panel button {
  width: auto;
  min-width: 58px;
  height: 46px;
  margin-right: 8px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  margin-top: 16px;
}

.filter-chip {
  height: 38px;
  padding: 0 14px;
  color: #376069;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 286px;
  height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-dark), var(--cyan));
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(20, 155, 74, 0.24);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.stats-row div {
  min-width: 0;
  padding: 17px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-row span,
.stats-row strong {
  display: block;
}

.stats-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stats-row strong {
  margin-top: 7px;
  color: var(--navy);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
}

.map-panel {
  min-width: 0;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 68px;
  padding: 0 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.map-search {
  min-width: 0;
  flex: 1;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-toolbar button,
.station-card button,
.outline-action {
  border-radius: 8px;
  font-weight: 900;
}

.map-toolbar button {
  height: 38px;
  padding: 0 14px;
  color: var(--navy);
  background: #eaf7f2;
  border: 1px solid #cae7db;
  font-size: 13px;
}

.map-canvas {
  position: relative;
  height: clamp(520px, 62vh, 680px);
  background:
    linear-gradient(90deg, rgba(34, 167, 223, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 167, 223, 0.08) 1px, transparent 1px),
    #eef7f5;
  background-size: 52px 52px;
  overflow: hidden;
}

.map-canvas::before,
.map-canvas::after,
.road,
.river {
  position: absolute;
  display: block;
  content: "";
}

.map-canvas::before {
  inset: 38px 44px;
  border: 2px solid rgba(34, 167, 223, 0.16);
  border-radius: 50%;
}

.map-canvas::after {
  width: 58%;
  height: 116px;
  right: -10%;
  top: 112px;
  background: rgba(34, 167, 223, 0.12);
  transform: rotate(-18deg);
  border-radius: 999px;
}

.road {
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(188, 217, 218, 0.9);
  border-radius: 999px;
}

.road-a {
  width: 86%;
  height: 18px;
  left: -12%;
  top: 216px;
  transform: rotate(-19deg);
}

.road-b {
  width: 70%;
  height: 16px;
  left: 4%;
  top: 342px;
  transform: rotate(14deg);
}

.road-c {
  width: 16px;
  height: 92%;
  left: 54%;
  top: -9%;
  transform: rotate(9deg);
}

.river {
  z-index: 0;
  width: 34%;
  height: 102%;
  left: 8%;
  top: -1%;
  background: rgba(34, 167, 223, 0.14);
  transform: rotate(28deg);
  border-radius: 999px;
}

.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 10px 24px rgba(6, 47, 56, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 13px;
  font-weight: 900;
}

.pin > * {
  transform: rotate(45deg);
}

.pin.green {
  background: var(--green-dark);
}

.pin.blue {
  background: var(--cyan);
}

.pin.selected {
  width: 46px;
  height: 46px;
  background: var(--navy);
}

.pulse {
  position: absolute;
  left: 74%;
  top: 43%;
  z-index: 2;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(54, 200, 92, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.45);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.station-card {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 4;
  width: min(330px, calc(100% - 44px));
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(6, 47, 56, 0.18);
}

.card-head,
.availability,
.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-head strong {
  font-size: 17px;
}

.card-head span {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.station-card p {
  margin: 10px 0 4px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.station-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.availability {
  margin: 16px 0 12px;
  padding: 12px;
  background: #effaf3;
  border-radius: 8px;
}

.availability span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.availability strong {
  color: var(--green-dark);
  font-size: 22px;
}

.station-card ul,
.post-list,
.news-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.station-card li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--muted);
  border-top: 1px solid #edf3f3;
  font-size: 13px;
  font-weight: 800;
}

.station-card li strong {
  color: var(--text);
}

.station-card .danger {
  color: var(--danger);
}

.station-card button {
  width: 100%;
  height: 42px;
  margin-top: 12px;
  color: #ffffff;
  background: var(--navy);
  border: 0;
  font-size: 14px;
}

.zoom-control {
  position: absolute;
  left: 18px;
  bottom: 22px;
  z-index: 5;
  display: grid;
  gap: 8px;
}

.zoom-control span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(6, 47, 56, 0.12);
  font-weight: 900;
}

.community-alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  background: var(--navy);
  color: #ffffff;
}

.community-alert strong {
  color: #9df4b2;
  font-size: 13px;
}

.community-alert span {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.community-alert a {
  color: #c8f6ff;
  font-size: 13px;
  font-weight: 900;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.9fr;
  gap: 18px;
  width: 100%;
  padding: 28px clamp(24px, 4vw, 72px) 28px;
}

.portal-grid .module:first-child {
  grid-column: 1;
  grid-row: span 2;
}

#notice {
  grid-column: 2;
  grid-row: 1;
}

#news {
  grid-column: 3;
  grid-row: 1;
}

#reports {
  grid-column: 2;
  grid-row: 2;
}

#community {
  grid-column: 3;
  grid-row: 2;
}

.module {
  min-width: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 63, 72, 0.07);
}

.module-head {
  margin-bottom: 18px;
}

.module h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.module-head a {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.station-table {
  display: grid;
  gap: 8px;
}

.station-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 13px 14px;
  background: #fbfdfd;
  border: 1px solid #e6efef;
  border-radius: 8px;
}

.station-row strong,
.post-list strong,
.news-list strong {
  display: block;
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.station-row-main {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.station-row-copy {
  min-width: 0;
}

.station-row-logo {
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfeaea;
  border-radius: 50%;
}

.station-row-logo img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.station-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.station-detail-trigger {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
}

.station-detail-trigger strong {
  transition: color 0.18s ease;
}

.station-detail-trigger:hover strong,
.station-detail-trigger:focus-visible strong {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.station-detail-trigger:focus-visible {
  outline: 3px solid rgba(54, 200, 92, 0.28);
  outline-offset: 3px;
  border-radius: 6px;
}

.station-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding-top: 4px;
}

.station-pagination[hidden] {
  display: none;
}

.station-pagination button {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.station-pagination button:hover,
.station-pagination button.active {
  color: #ffffff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.station-pagination button:disabled {
  color: #9aadb1;
  background: transparent;
  cursor: not-allowed;
}

.station-pagination .page-arrow {
  font-size: 18px;
  line-height: 1;
}

.station-pagination .page-gap {
  display: grid;
  place-items: center;
  width: 22px;
  height: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.status {
  display: grid;
  place-items: center;
  min-width: 60px;
  height: 34px;
  color: var(--green-dark);
  background: #effaf3;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.status.busy {
  color: var(--warning);
  background: #fff6ed;
}

.status.off {
  color: var(--danger);
  background: #fff1f1;
}

.station-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 25, 29, 0.58);
  backdrop-filter: blur(8px);
}

.station-detail-modal[hidden] {
  display: none;
}

.station-detail-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 30px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #dce9e8;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 63, 72, 0.24);
}

.station-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--text);
  background: #eef8f4;
  border: 1px solid #cfe8df;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
}

.station-detail-head {
  padding-right: 46px;
}

.station-detail-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--green-dark);
  background: #effaf3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.station-detail-head h2 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.3;
  word-break: keep-all;
}

.station-detail-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.station-detail-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 14px;
  background: #f7fbfa;
  border: 1px solid #e6efef;
  border-radius: 8px;
}

.station-detail-status strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.station-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.station-detail-list div {
  min-width: 0;
  padding: 13px;
  background: #fbfdfd;
  border: 1px solid #e6efef;
  border-radius: 8px;
}

.station-detail-list dt {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.station-detail-list dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  word-break: break-word;
}

.station-operator-logo-row dd {
  min-height: 38px;
}

.station-operator-logo-row img {
  display: block;
  max-width: 118px;
  max-height: 38px;
  object-fit: contain;
}

.station-charger-section {
  margin-top: 20px;
}

.station-charger-section h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.station-extra-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.station-extra-info div,
.station-charger-empty {
  padding: 12px;
  background: #f7fbfa;
  border: 1px solid #e6efef;
  border-radius: 8px;
}

.station-extra-info dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.station-extra-info dd {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}

.station-charger-list {
  display: grid;
  gap: 8px;
  max-height: 250px;
  overflow: auto;
  padding-right: 2px;
}

.station-charger-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fbfdfd;
  border: 1px solid #e6efef;
  border-radius: 8px;
}

.station-charger-item strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.station-charger-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.station-charger-item .status {
  min-width: 58px;
  height: 30px;
  font-size: 12px;
  font-style: normal;
}

.station-charger-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.station-charger-photos button {
  width: 76px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d6e5e5;
  border-radius: 8px;
  background: #eef6f6;
  cursor: pointer;
}

.station-charger-photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.charger-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.charger-photo-modal[hidden] {
  display: none;
}

.charger-photo-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 14, 18, 0.88);
}

.charger-photo-frame {
  position: relative;
  width: min(860px, 96vw);
  height: min(680px, 82vh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #06171d;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.charger-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.charger-photo-frame span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.charger-photo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.station-charger-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.station-detail-map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
}

.tabs button {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 11px;
  color: #517078;
  background: #f4f8f7;
  border: 1px solid #e1eeee;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.tabs button.active {
  color: #ffffff;
  background: var(--navy);
  border-color: var(--navy);
}

.post-list li,
.news-list li {
  display: grid;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #edf3f3;
}

.post-list li {
  grid-template-columns: 45px 1fr auto;
}

.post-list li:has(.board-preview-link) {
  display: block;
}

.board-preview-link {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.board-preview-link:hover strong {
  color: var(--green-dark);
}

.compact-list li {
  min-height: 52px;
  padding: 10px 0;
}

.compact-list strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-list span {
  display: grid;
  place-items: center;
  height: 26px;
  color: #ffffff;
  background: var(--cyan);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.post-list span.answer {
  background: var(--green-dark);
}

.post-list span.free {
  background: var(--navy);
}

.post-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.news-list li {
  grid-template-columns: 1fr 54px;
}

.news-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-list img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outline-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: 18px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 14px;
}

.outline-action.accent {
  color: var(--green-dark);
  background: #f1fbf5;
  border-color: #cfead9;
}

.partner-board {
  width: min(100% - clamp(28px, 8vw, 144px), 1760px);
  margin: 8px auto 56px;
}

.partner-board-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #edf3f3;
}

.partner-board-content strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.partner-board-content p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.partner-board-content .outline-action {
  margin-top: 0;
}

.partner-page-body {
  min-height: 100vh;
  background: #f7fbfa;
}

.partner-board-page .board-hero {
  align-items: center;
}

.partner-board-visual {
  display: flex;
  justify-content: flex-end;
}

.partner-board-visual img {
  width: min(100%, 340px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.partner-header {
  position: static;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.partner-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  padding: 46px clamp(18px, 5vw, 72px) 70px;
}

.partner-form-intro,
.partner-form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 63, 72, 0.07);
}

.partner-form-intro {
  align-self: start;
  padding: 34px;
}

.partner-form-intro span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.partner-form-intro h1 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
}

.partner-form-intro p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.partner-inquiry-visual {
  display: block;
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-form-card {
  padding: 30px;
}

.partner-board-page .partner-form-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.partner-form-card form {
  display: grid;
  gap: 14px;
}

.partner-form-card label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.partner-form-card input,
.partner-form-card select,
.partner-form-card textarea {
  width: 100%;
  padding: 13px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.partner-type-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.partner-type-field legend {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

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

.partner-type-option {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(7, 63, 72, 0.06);
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.partner-type-option:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 148, 80, 0.42);
  box-shadow: 0 14px 30px rgba(7, 63, 72, 0.1);
}

.partner-form-card .partner-type-option input,
.board-write-form .partner-type-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.partner-type-option:has(input:focus-visible) {
  outline: 3px solid rgba(27, 126, 73, 0.22);
  outline-offset: 2px;
}

.partner-type-option:has(input:checked) {
  background: linear-gradient(180deg, #eefaf4, #ffffff);
  border-color: #15a65a;
  box-shadow: inset 0 0 0 1px #15a65a, 0 14px 30px rgba(7, 63, 72, 0.1);
}

.partner-form-card .partner-type-option span,
.board-write-form .partner-type-option span {
  margin-bottom: 0;
}

.partner-form-card .partner-type-mark,
.board-write-form .partner-type-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #08723b;
  background: #ecf8f1;
  border: 1px solid #c8ecd8;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.partner-type-option:has(input:checked) .partner-type-mark {
  color: #ffffff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.partner-type-copy strong,
.partner-type-copy small {
  display: block;
  min-width: 0;
}

.partner-type-copy strong {
  color: #0b2d35;
  font-size: 15px;
  font-weight: 900;
}

.partner-type-copy small {
  margin-top: 4px;
  color: #647983;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.partner-form-card textarea {
  resize: vertical;
  line-height: 1.7;
}

.partner-form-card button {
  height: 48px;
  color: #ffffff;
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 38px clamp(24px, 4vw, 72px);
  color: #ffffff;
  background: #0b2026;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.company-info {
  max-width: 980px;
  margin: 8px 0 0;
  color: rgba(216, 229, 231, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 229, 231, 0.16);
  color: #9fb4b8;
  font-size: 13px;
  font-weight: 800;
}

.footer-policy-links a {
  color: #d8e5e7;
}

.footer-policy-links button {
  padding: 0;
  color: #d8e5e7;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.footer-policy-links a:hover,
.footer-policy-links button:hover {
  color: #9df4b2;
}

.footer-admin-link {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #102024 !important;
  background: #9df4b2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.footer-app-download {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px !important;
  color: #ffffff !important;
  background: var(--green-dark) !important;
  border: 1px solid var(--green-dark) !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900 !important;
}

.policy-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 25, 29, 0.58);
  backdrop-filter: blur(8px);
}

.policy-panel[hidden] {
  display: none;
}

.policy-card {
  position: relative;
  width: min(640px, 100%);
  max-height: min(680px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  color: var(--text);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 63, 72, 0.24);
}

.policy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--text);
  background: #eef8f4;
  border: 1px solid #cfe8df;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
}

.policy-card h2 {
  margin: 0 46px 18px 0;
  font-size: 24px;
  line-height: 1.25;
}

.policy-body ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.policy-text {
  margin: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.policy-page-body {
  margin: 0;
  color: var(--text);
  background: #f4faf8;
}

.policy-page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.policy-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.policy-page-head a {
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.policy-page-head nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.policy-page-card {
  padding: 34px;
  background: #ffffff;
  border: 1px solid #d8ebe5;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(7, 63, 72, 0.12);
}

.policy-page-card h1 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.25;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .map-panel {
    max-width: none;
  }

  .portal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portal-grid .module:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  #notice,
  #news,
  #reports,
  #community {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 780px) {
  .partner-type-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 12px 14px 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 18px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 9px 10px;
    background: #f2f8f6;
    border-radius: 8px;
  }

  .login-button {
    margin-left: auto;
  }

  .site-header > .login-button + .language-switch,
  .site-header > .language-switch {
    margin-left: 4px;
  }

  .hero {
    gap: 30px;
    min-height: calc(100vh - 126px);
    padding: 30px 14px 28px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 251, 250, 0.94) 0%, rgba(247, 251, 250, 0.86) 48%, rgba(247, 251, 250, 0.46) 100%),
      radial-gradient(circle at 20% 42%, rgba(54, 200, 92, 0.16) 0%, transparent 38%);
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .search-panel {
    height: 58px;
  }

  .search-panel input {
    padding: 0 16px;
  }

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

  .filter-chip {
    padding: 0 8px;
  }

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

  .map-toolbar {
    height: auto;
    padding: 14px;
  }

  .map-canvas {
    height: 560px;
  }

  .station-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .community-alert {
    grid-template-columns: 1fr auto;
  }

  .community-alert strong {
    display: none;
  }

  .portal-grid {
    grid-template-columns: 1fr;
    padding-right: 14px;
    padding-left: 14px;
  }

  .portal-grid .module:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  #notice,
  #news,
  #reports,
  #community {
    grid-column: auto;
    grid-row: auto;
  }

  .partner-board {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .partner-board-content {
    grid-template-columns: 1fr;
  }

  .partner-form-shell {
    grid-template-columns: 1fr;
    padding: 26px 14px 44px;
  }

  .partner-board-visual {
    justify-content: flex-start;
  }

  .partner-board-visual img {
    width: 100%;
    max-height: 220px;
  }

  .site-footer {
    padding: 32px 18px;
  }
}

@media (max-width: 460px) {
  .site-header {
    width: 100%;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 10px;
  }

  .login-button {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .policy-card {
    padding: 28px 22px;
  }

  .station-detail-card {
    padding: 28px 20px;
  }

  .station-detail-list {
    grid-template-columns: 1fr;
  }

  .station-extra-info {
    grid-template-columns: 1fr;
  }

  .station-charger-item {
    grid-template-columns: 1fr;
  }

  .station-detail-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy h1 {
    max-width: 340px;
    font-size: 36px;
  }

  .search-panel input {
    padding: 0 12px;
    font-size: 14px;
  }

  .search-panel button {
    min-width: 72px;
    padding: 0 12px;
    font-size: 14px;
  }

  .map-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .map-toolbar button {
    width: 100%;
  }

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

  .stats-row {
    gap: 8px;
  }

  .stats-row div {
    padding: 14px 12px;
  }

  .post-list li {
    grid-template-columns: 45px 1fr;
  }

  .post-list em {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sub-page {
  min-height: 72vh;
  padding: 120px 6vw 80px;
  background: #f6f9fb;
}

.sub-hero.compact {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 34px;
  border: 1px solid #dbe5ec;
  border-radius: 18px;
  background: #fff;
}

.sub-hero span {
  display: block;
  margin-bottom: 8px;
  color: #159c63;
  font-size: 13px;
  font-weight: 800;
}

.sub-hero h1 {
  margin: 0 0 10px;
  color: #0b2d35;
  font-size: 34px;
}

.sub-hero p {
  margin: 0;
  color: #60727a;
  font-weight: 700;
}

.site-notice,
.site-error {
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.site-notice {
  color: #087443;
  background: #e9f8f0;
}

.site-error {
  color: #b42318;
  background: #fff0ed;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.support-card,
.operator-price-card,
.price-tools {
  border: 1px solid #dbe5ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 47, 55, 0.08);
}

.support-card {
  padding: 24px;
}

.support-card h2 {
  margin: 0 0 18px;
  color: #0b2d35;
}

.support-form {
  display: grid;
  gap: 14px;
}

.support-form label,
.price-tools label {
  display: grid;
  gap: 8px;
  color: #30464d;
  font-size: 13px;
  font-weight: 800;
}

.support-form input,
.support-form textarea,
.price-tools input {
  width: 100%;
  border: 1px solid #cad7df;
  border-radius: 12px;
  padding: 13px 14px;
  color: #0b2d35;
  font: inherit;
  background: #fff;
}

.support-form button {
  border: 0;
  border-radius: 12px;
  padding: 15px 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #18a35f, #1f9fe5);
  cursor: pointer;
}

.site-inquiry-list {
  display: grid;
  gap: 12px;
}

.site-inquiry-item {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e1e8ee;
  border-radius: 14px;
  background: #fbfdfe;
}

.site-inquiry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-inquiry-top strong {
  color: #0b2d35;
}

.site-inquiry-item p {
  margin: 0;
  color: #4d626b;
  line-height: 1.6;
}

.site-inquiry-item small {
  color: #7c8c93;
  font-weight: 700;
}

.site-file-field small {
  display: block;
  margin-top: 6px;
  color: #6d7f87;
  font-size: 12px;
  font-weight: 700;
}

.site-inquiry-attachment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  color: #0b2d35;
  background: #ffffff;
  border: 1px solid #dceaea;
  border-radius: 10px;
  text-decoration: none;
}

.site-inquiry-attachment img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #edf5f5;
}

.site-inquiry-attachment span {
  overflow: hidden;
  color: #314a53;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-answer {
  padding: 12px;
  border-radius: 12px;
  background: #eef7ff;
}

.site-answer span {
  display: block;
  margin-bottom: 6px;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 900;
}

.status-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #7b8790;
}

.status-pill.status-open {
  background: #1f9fe5;
}

.status-pill.status-answered {
  background: #18a35f;
}

.status-pill.status-closed {
  background: #7b8790;
}

.empty-text {
  margin: 0;
  color: #7c8c93;
  font-weight: 700;
}

.price-tools {
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 18px;
}

.operator-price-list {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 24px auto 0;
}

.operator-selector-panel,
.operator-member-chart-card {
  border: 1px solid #dbe5ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(13, 47, 55, 0.08);
}

.operator-selector-panel {
  padding: 18px;
}

.operator-selector-head,
.operator-member-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.operator-selector-head strong,
.operator-member-chart-head h2 {
  color: #0b2d35;
  font-weight: 900;
}

.operator-selector-head span,
.operator-member-chart-head p,
.operator-member-chart-head > span {
  color: #60757e;
  font-size: 13px;
  font-weight: 800;
}

.operator-member-chart-head h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.operator-member-chart-head p {
  margin: 0;
}

.operator-member-chart-head > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #0b7045;
  background: #e9f8f0;
  border-radius: 999px;
}

.operator-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  max-height: 280px;
  overflow: auto;
  padding: 6px 8px 8px 0;
}

.operator-selector-grid button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 10px;
  color: #0b2d35;
  background: #f8fbfb;
  border: 1px solid #dce8e8;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
}

.operator-selector-grid button:hover,
.operator-selector-grid button.active {
  background: #eefaf4;
  border-color: #18a35f;
  box-shadow: inset 0 0 0 1px #18a35f;
}

.operator-selector-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 46px;
  overflow: hidden;
  background: #ffffff;
  color: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.operator-selector-logo:not(.has-image) {
  background: #0b3942;
  border-color: transparent;
}

.operator-selector-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 6px);
  max-height: calc(100% - 8px);
  box-sizing: border-box;
  object-fit: scale-down;
  padding: 0;
  transform: translateY(-1px);
}

.operator-selector-grid strong,
.operator-selector-grid small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.operator-selector-grid strong {
  font-size: 14px;
  font-weight: 900;
}

.operator-selector-grid small {
  margin-top: 3px;
  color: #7c8c93;
  font-size: 12px;
  font-weight: 800;
}

.operator-price-card {
  overflow: hidden;
}

.operator-price-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #e4edf2;
}

.operator-price-card header strong {
  display: block;
  color: #0b2d35;
  font-size: 18px;
}

.operator-price-card header span {
  color: #7c8c93;
  font-size: 13px;
  font-weight: 800;
}

.operator-price-date {
  display: block;
  margin-top: 4px;
  color: #168052 !important;
  font-size: 12px !important;
}

.operator-price-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 108px;
  min-width: 108px;
  width: 108px;
  height: 54px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.operator-price-logo:not(.has-image) {
  background: #1A73E8;
  border-color: transparent;
}

.operator-price-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  box-sizing: border-box;
  object-fit: contain;
  padding: 0;
  transform: none;
}

.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f5;
  text-align: left;
  white-space: nowrap;
}

.price-table th {
  color: #0b2d35;
  font-size: 13px;
  background: #f7fafc;
}

.price-table td {
  color: #30464d;
  font-weight: 800;
}

.operator-price-note {
  margin: 0 20px 22px;
  padding: 14px 16px;
  color: #30464d;
  background: #f7fbff;
  border: 1px solid #dbeaf7;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.operator-price-note strong {
  display: block;
  margin-bottom: 6px;
  color: #0b2d35;
  font-size: 13px;
  font-weight: 900;
}

.operator-member-chart-card {
  width: 100%;
  max-width: none;
  margin-top: 18px;
  padding: 20px;
}

.operator-member-chart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.operator-member-chart-tabs button {
  min-height: 38px;
  padding: 0 14px;
  color: #0b2d35;
  background: #f4f8f7;
  border: 1px solid #dce8e8;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.operator-member-chart-tabs button:hover,
.operator-member-chart-tabs button.active {
  color: #ffffff;
  background: #0b3942;
  border-color: #0b3942;
}

.operator-member-chart {
  display: grid;
  gap: 11px;
}

.member-price-bar {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(120px, 1fr) 86px;
  gap: 12px;
  align-items: center;
}

.member-price-bar.is-muted {
  opacity: 0.88;
}

.member-price-label {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.member-price-logo {
  display: grid;
  width: 42px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0b3942;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.member-price-logo.has-image {
  background: #ffffff;
  border: 1px solid #dce8e8;
}

.member-price-logo img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  padding: 2px;
}

.member-price-label strong,
.member-price-label small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-price-label strong {
  color: #0b2d35;
  font-size: 14px;
  font-weight: 900;
}

.member-price-label small {
  margin-top: 2px;
  color: #7c8c93;
  font-size: 12px;
  font-weight: 800;
}

.member-price-track {
  height: 14px;
  overflow: hidden;
  background: #eef4f4;
  border-radius: 999px;
}

.member-price-track span {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
}

.member-price-bar em {
  color: #0b7045;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.member-chart-more {
  margin: 4px 0 0;
  color: #7c8c93;
  font-size: 13px;
  font-weight: 800;
}

.member-chart-more-button {
  justify-self: center;
  min-width: 150px;
  margin-top: 6px;
  padding: 10px 18px;
  color: #0b3942;
  background: #ffffff;
  border: 1px solid #cddede;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.member-chart-more-button:hover {
  color: #ffffff;
  background: #0b3942;
  border-color: #0b3942;
}

.home-price-chart {
  width: min(100% - clamp(28px, 8vw, 144px), 1760px);
  margin: 10px auto 24px;
}

.home-price-chart .operator-member-chart-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #ffffff;
  background: #0b3942;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.home-price-chart .operator-member-chart-head a:hover {
  background: #0b8f53;
}

.home-municipality-rank {
  width: min(100% - clamp(28px, 8vw, 144px), 1760px);
  margin: 10px auto 64px;
}

.home-municipality-rank .module-head {
  align-items: flex-start;
}

.home-municipality-rank .module-head p {
  margin: 6px 0 0;
  color: #5f7479;
  font-size: 14px;
  font-weight: 800;
}

.home-municipality-table-wrap {
  overflow-x: auto;
}

.home-municipality-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.home-municipality-table th,
.home-municipality-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5eeee;
  text-align: right;
  white-space: nowrap;
}

.home-municipality-table th {
  background: #f5faf9;
  color: #31545b;
  font-size: 13px;
  font-weight: 900;
}

.home-municipality-table th:nth-child(2),
.home-municipality-table td:nth-child(2) {
  text-align: left;
  font-weight: 900;
}

.home-municipality-table tbody tr:hover {
  background: #f8fcfb;
}

.home-municipality-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #052b35;
}

.home-municipality-logo {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef8f2;
  color: #0f9f55;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
}

.home-municipality-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-municipality-rate {
  display: inline-flex;
  min-width: 58px;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e8f8ee;
  color: #0c8d48;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .sub-page {
    padding: 92px 16px 54px;
  }

  .sub-hero.compact {
    padding: 24px;
  }

  .sub-hero h1 {
    font-size: 28px;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .operator-selector-head,
  .operator-member-chart-head,
  .member-price-bar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .operator-selector-head,
  .operator-member-chart-head {
    display: grid;
  }

  .member-price-bar em {
    text-align: left;
  }
}
