.iframe-container {
  overflow: hidden;
  padding-top: 128.5%;
  position: relative;
}

.iframe-container iframe {
   border: 1px solid;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}


* {
  box-sizing: border-box;
}

:root {
  --home-ui-font: "Exo 2", "Nunito Sans", "Segoe UI", sans-serif;
  --home-body-font: "Exo 2", "Nunito Sans", "Segoe UI", sans-serif;
  --home-mono-font: Inconsolata, monospace;
  --site-topbar-height: 44px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0px;
  vertical-align: middle;
}

/* Create equal columns that sits next to each other */
.column {
  flex: 16.66%;
  max-width: 16.66%;
  padding: 0 4px;
  vertical-align: middle;

}

.column img {
  margin-top: 0px;
  vertical-align: middle;
  width: 100%;
}


@media screen and (max-width: 1200px) {
  .column {
    flex: 33.33%;
    max-width: 33.33%;
  }
}

@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

.card {
    height: 300px;
    width: 225px;
    position: relative;
    transition: .5s all ease-out;
    transform: rotateY(0) scale(1);
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.hover-area:hover .card {
        transform: rotateY(.5turn) scale(1.0);
        box-shadow: 0 10px 30px rgba(0,0,0,.16);

}

.card > div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.card__front {
    background-size: inherit;
    transition: all linear;
}

.card__back {
    background: #c4dcd9;
    color: #021512;
    opacity: 0;
    transition-delay: .17s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 2em;
    transform: rotateY(.5turn);
    font-family: var(--home-body-font);
    font-size: 15px;
}

.card__back h3 {
    font-family: var(--home-ui-font);
    text-transform: uppercase;
    letter-spacing: .1em;
    border-bottom: 2px solid #7f9491;
    line-height: 2em;
}

.card__back a {
    color: #7f9491;
    text-decoration: none;
    font-style: italic;
}

.card__back a:hover {
    color: #021512;
}

.hover-area:hover .card__back {
    opacity: 1;
    transition-delay: .17s;
}

/* contact form error */
.errorlist 
    {
        color: red;
    }

/* Define custom row colors */
.alps-black {
  background-color: #1e1e1e;
}

.alps-yellow {
  background-color: #ffeb3b;
}

.btn-sta {
  text-decoration: none;
}
.btn-sta:hover {
  color: #FFEB3B;
  text-decoration: none;
}

.section-heading {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 0 14px;
  padding: 0.62rem 1.2rem !important;
  text-align: center;
  cursor: default;
  font-family: var(--home-ui-font);
  font-size: clamp(1.85rem, 1vw + 1.18rem, 2.35rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.035em;
  text-transform: none;
  color: #f8fafc !important;
  background: #1e1e1e !important;
  border: 1px solid rgba(255, 235, 59, 0.28) !important;
  border-radius: 8px;
  box-shadow: 0 9px 22px rgba(18, 24, 35, 0.16);
}

.section-heading::before {
  content: none;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(220px, 38%);
  height: 2px;
  transform: translateX(-50%);
  background: #ffeb3b;
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .section-heading {
    padding: 0.54rem 0.9rem !important;
    font-size: clamp(1.55rem, 4.7vw, 1.95rem);
    letter-spacing: 0.025em;
  }
}

.section-banner-note {
  display: block;
  width: 100%;
  max-width: calc(100% - 32px);
  margin: 8px auto 12px;
  padding: 0.56rem 1rem !important;
  text-align: center;
  cursor: default;
  font-family: var(--home-ui-font);
  font-size: clamp(1.45rem, 0.48vw + 1.06rem, 1.95rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #1f252c !important;
  background: #eef2f7 !important;
  border: 1px solid rgba(31, 37, 44, 0.18) !important;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(18, 24, 35, 0.08);
}

@media screen and (max-width: 700px) {
  .section-banner-note {
    display: none;
  }
}

.tooltip-inner {
  background-color: #ffeb3b !important;
  color: #1e1e1e ;
  border: 1px solid #1e1e1e;
  font-size: 1.3em;
  font-family: var(--home-mono-font);
}
.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #1e1e1e;
}

.bs-tooltip-end .tooltip-arrow::after,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-width: 0 .4rem .4rem;
  transform: translateY(3px);
  border-color: transparent;
  border-style: solid;
  border-bottom-color: #ffeb3b;
}
.tooltip.show {
  opacity: 1;
}

.container {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #111111;
  overflow: visible;
  width: 100%;
  height:0;
  transition: .5s ease;
  opacity: 0.6
}

.container:hover .overlay {
  bottom: 0;
  height: 100%;
  opacity: 0.6
}


.container:hover .text {
  text-shadow: 0 0 0.2em rgba(255, 255, 255, 1.0);
  color: white;
  background-color: transparent;
  font-size: 1.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1.0
}


/* YouTube embed */
.latestVideoEmbed { 
    border: 0; 
    height: 30%; 
    left: 0; 
    position: absolute; 
    top: 0; 
    width: 30%; }
/* responsive container */ 
.iframe-container-yt { 
    overflow: hidden; 
    /* 16:9 aspect ratio */ 
    padding-top: 129%; 
    position: relative; } 

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  }

.alps-home #contact,
.alps-home #partners {
  margin-top: 10px;
  padding: 14px 14px 16px;
  border-radius: 12px;
}

.alps-home #contact {
  border: 1px solid rgba(31, 37, 44, 0.16);
  background: #eef2f7;
  box-shadow: 0 8px 20px rgba(18, 24, 35, 0.08);
  color: #1f252c;
}

.alps-home #partners {
  border: 1px solid rgba(255, 235, 59, 0.22);
  background: linear-gradient(145deg, #262626 0%, #1f1f1f 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.alps-home #contact .section-heading,
.alps-home #partners .section-heading {
  margin-top: 0;
}

.alps-home #contact > p:first-of-type {
  margin-bottom: 0.45rem;
  color: #3a4451;
}

.alps-home #contact .contact-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.82rem;
  padding: 0.38rem 0.62rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 235, 59, 0.42);
  background: rgba(255, 235, 59, 0.16);
  color: #4a4520;
  font-family: var(--home-ui-font);
  font-size: 0.87rem;
  line-height: 1.28;
}

.alps-home #contact form {
  margin: 0;
}

.alps-home #contact table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.alps-home #contact tr > th,
.alps-home #contact tr > td {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
}

.alps-home #contact tr > th {
  margin-bottom: 5px;
  color: #2f3947;
  font-family: var(--home-ui-font);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.alps-home #contact tr > th:empty {
  display: none;
}

.alps-home #contact .alps-input {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(31, 37, 44, 0.22) !important;
  background: #ffffff !important;
  color: #1f252c !important;
  font-family: var(--home-ui-font);
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.alps-home #contact .alps-input::placeholder {
  color: #6f7784;
}

.alps-home #contact textarea.alps-input {
  min-height: 140px;
  resize: vertical;
}

.alps-home #contact .alps-input:focus,
.alps-home #contact .alps-input:focus-visible {
  outline: none;
  border-color: rgba(255, 235, 59, 0.74) !important;
  box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.18);
  background: #ffffff !important;
}

.alps-home #contact .errorlist {
  margin: 0 0 6px;
  padding: 6px 10px;
  list-style: none;
  border-radius: 8px;
  border: 1px solid rgba(245, 91, 91, 0.48);
  background: rgba(245, 91, 91, 0.12);
  color: #ffd3d3;
  font-family: var(--home-ui-font);
  font-size: 0.88rem;
  line-height: 1.3;
}

.alps-home #contact .g-recaptcha {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 2px;
}

.alps-home #contact .g-recaptcha > div {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(18, 24, 35, 0.12);
}

.alps-home #contact .form-actions {
  margin-top: 2px;
}

.partners-carousel {
  --partners-gap: 12px;
  --partners-visible: 4;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "prev viewport next"
    "progress progress progress";
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}

.partners-nav-prev {
  grid-area: prev;
}

.partners-nav-next {
  grid-area: next;
}

.partners-viewport {
  grid-area: viewport;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  border-radius: 12px;
  scroll-snap-type: x mandatory;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.partners-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.partners-viewport:focus-visible {
  outline: 2px solid rgba(255, 235, 59, 0.72);
  outline-offset: 2px;
}

.partners-viewport::-webkit-scrollbar {
  display: none;
}

.partners-track {
  display: flex;
  align-items: stretch;
  gap: var(--partners-gap);
  padding: 2px;
}

.partners-slide {
  flex: 0 0 calc((100% - (var(--partners-gap) * (var(--partners-visible) - 1))) / var(--partners-visible));
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.partners-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 235, 59, 0.24);
  background: linear-gradient(160deg, rgba(252, 252, 252, 0.98) 0%, rgba(236, 236, 236, 0.96) 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.partners-logo-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 235, 59, 0.92);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.partners-logo-link:hover,
.partners-logo-link:focus-visible {
  border-color: rgba(255, 235, 59, 0.62);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.partners-logo-link:hover::after,
.partners-logo-link:focus-visible::after {
  width: 100%;
}

.partners-nav {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 235, 59, 0.3);
  background: #232323;
  color: #ffeb3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.partners-nav:hover,
.partners-nav:focus-visible {
  border-color: rgba(255, 235, 59, 0.66);
  color: #fff6bd;
  background-color: #2d2d2d;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.24);
  outline: none;
}

.partners-nav[disabled] {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

.partners-progress {
  grid-area: progress;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.partners-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 235, 59, 0.5) 0%, rgba(255, 235, 59, 0.95) 100%);
  transition: width 0.28s ease;
}

@media screen and (max-width: 1200px) {
  .partners-carousel {
    --partners-visible: 3;
  }
}

@media screen and (max-width: 992px) {
  .alps-home #contact,
  .alps-home #partners {
    padding: 12px;
  }

  .alps-home #contact .contact-hint {
    display: flex;
    margin-bottom: 0.75rem;
  }

  .partners-carousel {
    --partners-visible: 2;
  }

  .partners-logo-link {
    min-height: 102px;
  }
}

@media screen and (max-width: 768px) {
  .alps-home #contact {
    padding: 11px;
  }

  .alps-home #contact table {
    border-spacing: 0 8px;
  }

  .alps-home #contact .alps-input {
    font-size: 0.95rem;
  }

  .partners-carousel {
    --partners-gap: 10px;
    --partners-visible: 1.35;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "viewport viewport"
      "prev next"
      "progress progress";
    row-gap: 9px;
  }

  .partners-viewport {
    scroll-snap-type: x proximity;
    cursor: auto;
  }

  .partners-nav {
    width: 100%;
    max-width: 180px;
    min-height: 40px;
    justify-self: center;
  }

  .partners-logo-link {
    min-height: 90px;
    border-radius: 10px;
    padding: 10px;
  }
}

@media screen and (max-width: 600px) {
  .partners-carousel {
    --partners-visible: 1.2;
    --partners-gap: 9px;
  }

  .partners-logo-link {
    min-height: 88px;
    padding: 10px 9px;
  }
}

@media screen and (min-width: 360px) and (max-width: 430px) {
  .partners-carousel {
    --partners-visible: 1.08;
    --partners-gap: 8px;
    row-gap: 8px;
  }

  .partners-logo-link {
    min-height: 96px;
    padding: 11px 10px;
  }

  .partners-logo-image {
    max-width: 200px;
    max-height: 80px;
  }
}

@media screen and (max-width: 359px) {
  .partners-carousel {
    --partners-visible: 1.04;
  }

  .partners-logo-link {
    min-height: 86px;
  }
}

@media screen and (max-width: 390px) {
  .alps-home #contact .g-recaptcha {
    min-height: 72px;
  }

  .alps-home #contact .g-recaptcha > div {
    transform: scale(0.92);
    transform-origin: center top;
  }
}

  #map {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }
  #map.center { width: 100%; }

  #legend {
      background-color: white;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .legend-icon {
      display: inline-block;
      width: 20px;
      height: 20px;
      margin-right: 5px;
      border: 1px solid #888;
  }

.alps-logo-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.sqm-table {
  font-family: var(--home-mono-font);
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: clamp(1.02rem, 0.68vw + 0.6rem, 1.26rem);
  line-height: 1.28;
}

.sqm-col-station {
  width: 14%;
}

.sqm-col-value {
  width: 21.5%;
}

.sqm-table caption {
  margin-bottom: 0.35rem;
  padding: 0.1rem 0.15rem;
  color: #5a5a5a;
  font-family: var(--home-mono-font);
  font-size: 1rem;
  text-align: left;
}

.sqm-table thead th {
  padding: 0.36rem 0.34rem;
  font-family: var(--home-mono-font);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: normal;
  overflow-wrap: anywhere;
}

.sqm-th-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
}

.sqm-th-icon {
  color: #ffeb3b;
  font-size: 0.9rem;
  opacity: 0.95;
}

.sqm-table tbody td {
  padding: 0.32rem 0.34rem;
  vertical-align: middle;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.sqm-table tbody td:first-child {
  font-family: var(--home-mono-font);
  letter-spacing: 0.01em;
  font-size: 1.16rem;
  color: #1e1e1e;
}

.sqm-table tbody tr:nth-child(odd) td:not(:first-child) {
  background-color: #f5f5f5;
}

.sqm-table tbody tr:hover td:not(:first-child) {
  background-color: #fff8cf;
}

@media screen and (max-width: 992px) {
  .sqm-table {
    width: max-content;
    min-width: 620px;
    max-width: none;
    table-layout: auto;
    font-size: 0.98rem;
  }

  .sqm-col-station {
    width: 11ch;
  }

  .sqm-col-value {
    width: 12.5ch;
  }

  .sqm-table thead th {
    white-space: nowrap;
    overflow-wrap: normal;
    padding: 0.32rem 0.34rem;
    font-size: 0.9rem;
  }

  .sqm-th-wrap {
    justify-content: flex-start;
    gap: 0.28rem;
  }

  .sqm-th-icon {
    font-size: 0.82rem;
  }

  .sqm-table tbody td {
    padding: 0.3rem 0.34rem;
    font-size: 0.96rem;
  }

  .sqm-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    background-color: #1e1e1e !important;
  }

  .sqm-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.14);
  }
}

.station-thumb {
  width: 100%;
  display: block;
}

.station-mask {
  color: rgba(255, 235, 59, 0.9);
  backdrop-filter: blur(1.5px);
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  transition: background-color 0.28s ease, opacity 0.28s ease, backdrop-filter 0.28s ease;
}

.station-mask-on {
  background:
    linear-gradient(
      180deg,
      rgba(8, 7, 1, 0.12) 0%,
      rgba(8, 7, 1, 0.8) 72%,
      rgba(8, 7, 1, 0.92) 100%
    );
}

.station-mask-off {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.62) 100%);
}

.station-code {
  cursor: default;
  font-family: var(--home-ui-font);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.42);
  transition: transform 0.32s ease, color 0.32s ease, text-shadow 0.32s ease;
}

.station-code-top {
  padding-top: 0.5em;
}

.station-icon {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.station-mask .btn-sta {
  width: clamp(54px, 5vw, 70px);
  height: clamp(54px, 5vw, 70px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 235, 59, 0.38);
  background: rgba(26, 26, 26, 0.62);
  color: #ffef95;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.station-mask .btn-sta:hover,
.station-mask .btn-sta:focus-visible {
  color: #fff6bd;
  background: rgba(36, 36, 36, 0.86);
  border-color: rgba(255, 235, 59, 0.72);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34), 0 0 0 3px rgba(255, 235, 59, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.station-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.44rem;
}

.station-action-label {
  display: block;
  font-family: var(--home-ui-font);
  font-size: clamp(0.74rem, 0.45vw + 0.64rem, 0.9rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.015em;
  text-transform: none;
  color: #fff6bd;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
  white-space: nowrap;
  text-align: center;
  user-select: none;
  cursor: default;
}

.station-hover-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(130px, 40%, 220px);
  transform: translate(-50%, -46%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.station-hover-logo::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 54%,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 0.54) 36%,
    rgba(255, 255, 255, 0.14) 62%,
    rgba(255, 255, 255, 0) 82%
  );
  filter: blur(10px);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.34s ease, transform 0.34s ease;
  z-index: 0;
}

.station-hover-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  width: 100%;
  text-decoration: none;
}

.social-chip {
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 235, 59, 0.22);
  background-color: #1f1f1f;
  background-image: linear-gradient(145deg, #262626 0%, #1e1e1e 100%);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.16);
  min-height: 74px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.social-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 235, 59, 0.86);
  transform: translateX(-50%);
  opacity: 0.9;
  pointer-events: none;
  transition: width 0.22s ease, opacity 0.22s ease;
}

.social-chip-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.34rem;
  color: #ffeb3b;
  flex-shrink: 0;
}

.social-chip-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.social-chip-title {
  font-family: var(--home-ui-font);
  letter-spacing: 0.03em;
  font-size: 1.14rem;
  color: #fff;
}

.social-chip-sub {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c7c7c7;
}

.social-chip-youtube .social-chip-icon {
  color: #ff5a5f;
}

.social-chip-instagram .social-chip-icon {
  color: #f672b8;
}

.social-chip-facebook .social-chip-icon {
  color: #7fb4ff;
}

.about-modern {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 10px;
}

.about-intro-card {
  background: linear-gradient(145deg, rgba(36, 36, 36, 0.98), rgba(22, 22, 22, 0.96));
  border: 1px solid rgba(255, 235, 59, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-lead {
  margin: 0;
  color: #f1f1f1;
  font-size: var(--about-lead-size, clamp(1rem, 1.08vw, 1.18rem));
  line-height: 1.78;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
}

.about-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(255, 235, 59, 0.12);
  border: 1px solid rgba(255, 235, 59, 0.3);
  color: #ffef8a;
}

.about-points {
  display: grid;
  gap: 10px;
}

.about-point {
  background: linear-gradient(145deg, rgba(35, 35, 35, 0.98), rgba(26, 26, 26, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 13px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.about-point h4 {
  margin: 0 0 6px;
  color: #ffeb3b;
  font-family: var(--home-ui-font);
  letter-spacing: 0.03em;
}

.about-point p {
  margin: 0;
  color: #ececec;
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-gallery-shell {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(35, 35, 35, 0.98), rgba(22, 22, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-gallery-intro {
  margin: 0 0 8px;
  color: #f3f3f3;
  text-align: center;
}

#about #gallery-about {
  margin-top: 4px !important;
}

.team-scroll-wrap {
  position: relative;
  margin-top: 10px;
  background: transparent;
}

.team-scroll-wrap::before,
.team-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 6px;
  width: 32px;
  pointer-events: none;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.team-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(247, 249, 252, 0.72), rgba(247, 249, 252, 0));
}

.team-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(247, 249, 252, 0.72), rgba(247, 249, 252, 0));
}

.team-scroll-wrap.team-no-overflow::before,
.team-scroll-wrap.team-no-overflow::after {
  opacity: 0;
}

.team-scroll-wrap.team-at-start::before {
  opacity: 0;
}

.team-scroll-wrap.team-at-end::after {
  opacity: 0;
}

.team-scroll-hint {
  position: absolute;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 235, 59, 0.42);
  background: rgba(30, 30, 30, 0.86);
  color: #ffeb3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.team-scroll-hint-left {
  left: 10px;
}

.team-scroll-hint-right {
  right: 10px;
}

.team-scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2px);
}

.team-scroll-hint i {
  font-size: 0.88rem;
}

.team-scroll-hint-left i {
  animation: team-scroll-arrow-left 1.35s ease-in-out infinite;
}

.team-scroll-hint-right i {
  animation: team-scroll-arrow-right 1.35s ease-in-out infinite;
}

@keyframes team-scroll-arrow-left {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-3px);
  }
}

@keyframes team-scroll-arrow-right {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

.team-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: transparent;
}

.team-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.team-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  background: transparent;
}

.team-card {
  flex: 0 0 clamp(220px, 20vw, 270px);
  min-width: 220px;
  max-width: 270px;
  scroll-snap-align: start;
  background: linear-gradient(160deg, rgba(33, 33, 33, 0.98), rgba(20, 20, 20, 0.98));
  border: 1px solid rgba(255, 235, 59, 0.22);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 235, 59, 0.42);
  box-shadow: none;
}

.team-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #121212;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: transform 0.35s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.03);
}

.team-card-content {
  padding: 12px 13px 14px;
  display: grid;
  gap: 7px;
}

.team-card-name {
  margin: 0;
  color: #ffffff;
  font-family: var(--home-ui-font);
  font-size: clamp(1.08rem, 0.55vw + 0.9rem, 1.34rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.team-card-role {
  margin: 0;
  color: #ffef95;
  font-family: var(--home-mono-font);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card-bio {
  margin: 2px 0 0;
  color: #e8e8e8;
  font-size: 0.92rem;
  line-height: 1.58;
}

.social-text {
  width: clamp(120px, 15vw, 240px);
}

.social-icon {
  width: clamp(26px, 4vw, 56px);
}

.partners-logo-image {
  width: 100%;
  max-width: 190px;
  max-height: 86px;
  object-fit: contain;
}

.alps-top .alps-bar {
  overflow: visible;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(30, 30, 30, 0.14);
  border-radius: 0;
  background: transparent;
}

.table-responsive .sqm-table,
.table-responsive .sqm-table th,
.table-responsive .sqm-table td {
  border-radius: 0 !important;
}

@media screen and (min-width: 993px) and (max-width: 1099px) {
  .stations-layout > .alps-col.l4,
  .stations-layout > .alps-col.l8 {
    width: 100% !important;
  }
}

@media screen and (min-width: 1100px) {
  .stations-layout > .alps-col.l4 {
    width: 32% !important;
  }

  .stations-layout > .alps-col.l8 {
    width: 68% !important;
  }
}

@media screen and (min-width: 1500px) {
  .stations-layout > .alps-col.l4 {
    width: 30% !important;
  }

  .stations-layout > .alps-col.l8 {
    width: 70% !important;
  }
}

.alps-home {
  scroll-behavior: smooth;
  background: #f7f9fc;
  color: #1f252c;
  font-family: var(--home-body-font);
}

.alps-home .alps-pale-grey {
  background-color: #eef2f7 !important;
}

.alps-home footer.alps-footer {
  background-color: #1e1e1e !important;
  color: #f2f2f2;
  border-top: 1px solid rgba(255, 235, 59, 0.22);
  border-radius: 0;
  overflow: visible;
  margin-top: 12px;
  padding: 14px 10px 16px !important;
}

.alps-home .alps-footer-inner {
  max-width: 1564px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 8px 20px;
}

.alps-home .alps-footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.alps-home .alps-footer-wordmark {
  color: #ffeb3b;
  font-family: var(--home-ui-font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.alps-home .alps-footer-subtitle {
  color: #d4d4d4;
  font-family: var(--home-body-font);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alps-home .alps-footer-links {
  display: flex;
  align-items: center;
  gap: 8px 14px;
}

.alps-home .alps-footer-link {
  position: relative;
  color: #ffef95;
  text-decoration: none;
  font-family: var(--home-ui-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.alps-home .alps-footer-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #ffeb3b;
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.alps-home .alps-footer-link:hover,
.alps-home .alps-footer-link:focus-visible {
  color: #fff3a8;
  outline: none;
}

.alps-home .alps-footer-link:hover::after,
.alps-home .alps-footer-link:focus-visible::after {
  width: 100%;
}

.alps-home .alps-footer-copy {
  text-align: right;
  color: #d6d6d6;
  font-family: var(--home-ui-font);
  font-size: 0.9rem;
  white-space: nowrap;
}

.alps-home .site-topbar {
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1100;
  overflow: visible;
  border-top: 0 !important;
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.alps-home .site-topbar .alps-bar {
  display: flex;
  align-items: stretch;
  overflow: visible;
  min-height: 44px;
}

.alps-home .site-topbar .alps-right {
  display: flex;
  align-items: stretch;
  float: none !important;
  margin-left: auto;
}

.alps-home .site-topbar .alps-bar .alps-dropdown-hover,
.alps-home .site-topbar .alps-bar .alps-dropdown-click {
  position: relative;
  float: none;
  display: flex;
  align-items: stretch;
}

.alps-home .site-topbar .alps-bar-item,
.alps-home .site-topbar .alps-dropdown-hover > .alps-button,
.alps-home .site-topbar .alps-dropdown-click > .alps-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
}

.alps-home .site-topbar.nav-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  background-color: rgba(30, 30, 30, 0.94) !important;
  backdrop-filter: blur(4px);
}

.alps-home .alps-top .alps-bar-item.alps-button,
.alps-home .alps-top .alps-button {
  overflow: visible;
  line-height: 1.2;
  min-height: 44px;
  padding: 0 12px;
  position: relative;
  white-space: nowrap;
  background-image: linear-gradient(rgba(255, 235, 59, 0.75), rgba(255, 235, 59, 0.75));
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 0% 2px;
  font-family: var(--home-ui-font);
  transition: color 0.22s ease, background-color 0.22s ease, background-size 0.22s ease;
}

.alps-home .alps-top .alps-bar-item.alps-button:hover,
.alps-home .alps-top .alps-bar-item.alps-button:focus-visible,
.alps-home .alps-top .alps-button:hover,
.alps-home .alps-top .alps-button:focus-visible {
  background-color: rgba(30, 30, 30, 0.94) !important;
  color: #fff3a8 !important;
  background-size: 100% 2px;
}

.alps-home .alps-top .alps-right > a.nav-active {
  background-color: rgba(255, 235, 59, 0.2);
  color: #ffeb3b;
  background-size: 100% 2px;
}

.alps-home .alps-top .alps-dropdown-hover:hover > .alps-button:first-child,
.alps-home .alps-top .alps-dropdown-click:hover > .alps-button:first-child {
  background-color: rgba(30, 30, 30, 0.94) !important;
  color: #fff3a8 !important;
  background-size: 100% 2px;
}

.alps-home .site-topbar .alps-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 220px;
  border: 1px solid rgba(255, 235, 59, 0.22);
  background-color: rgba(30, 30, 30, 0.97);
  color: #f2f2f2;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  z-index: 1201;
  transform-origin: top center;
}

.alps-home .site-topbar .alps-right > .alps-dropdown-hover:last-of-type .alps-dropdown-content,
.alps-home .site-topbar .alps-right > .alps-dropdown-click:last-of-type .alps-dropdown-content {
  left: auto;
  right: 0;
}

.alps-home .site-topbar .alps-dropdown-content .alps-bar-item.alps-button {
  justify-content: flex-start;
  min-height: 40px;
  line-height: 1.25;
  color: #f2f2f2 !important;
  background-image: none;
  background-size: 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--home-ui-font);
}

.alps-home .site-topbar .alps-dropdown-content .alps-bar-item.alps-button:last-child {
  border-bottom: 0;
}

.alps-home .site-topbar .alps-dropdown-content .alps-bar-item.alps-button:hover,
.alps-home .site-topbar .alps-dropdown-content .alps-bar-item.alps-button:focus-visible {
  background-color: rgba(255, 235, 59, 0.18) !important;
  color: #fff3a8 !important;
}

.alps-home .site-topbar .alps-dropdown-hover:hover > .alps-dropdown-content,
.alps-home .site-topbar .alps-dropdown-hover:focus-within > .alps-dropdown-content,
.alps-home .site-topbar .alps-dropdown-click:hover > .alps-dropdown-content,
.alps-home .site-topbar .alps-dropdown-click:focus-within > .alps-dropdown-content {
  animation: topbar-dropdown-in 0.18s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes topbar-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.alps-home #navDemo {
  background-color: rgba(30, 30, 30, 0.98) !important;
  border-top: 1px solid rgba(255, 235, 59, 0.26);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.alps-navlike-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(30, 30, 30, 0.94);
  border-radius: 6px;
  background-color: rgba(30, 30, 30, 0.94);
  color: #f1f1f1;
  font-family: var(--home-ui-font);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background-image: linear-gradient(rgba(255, 235, 59, 0.75), rgba(255, 235, 59, 0.75));
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 0% 2px;
  transition: color 0.22s ease, background-color 0.22s ease, background-size 0.22s ease, box-shadow 0.22s ease;
}

.alps-navlike-btn:hover,
.alps-navlike-btn:focus-visible {
  background-color: rgba(30, 30, 30, 0.94);
  color: #fff3a8;
  background-size: 100% 2px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  outline: none;
}

.alps-home #map {
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.3s ease;
}

.alps-home #map:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.alps-home .table-responsive {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.3s ease;
}

.alps-home .table-responsive:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.alps-home .table.table-hover {
  box-shadow: none;
}

.alps-home .bg-image {
  position: relative;
  isolation: isolate;
  --hover-x: 50%;
  --hover-y: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.alps-home .bg-image::before {
  content: "";
  position: absolute;
  inset: auto -12% -48%;
  height: 58%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.28) 0%, rgba(255, 235, 59, 0) 72%);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 1;
}

.alps-home .bg-image::after {
  content: "";
  position: absolute;
  inset: -28%;
  background: radial-gradient(
    circle at var(--hover-x) var(--hover-y),
    rgba(255, 235, 59, 0.22) 0%,
    rgba(255, 235, 59, 0.12) 24%,
    rgba(255, 235, 59, 0) 62%
  );
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 2;
}

.alps-home .bg-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.alps-home .bg-image:hover::before {
  opacity: 0.9;
  transform: translateY(0);
}

.alps-home .bg-image:hover::after,
.alps-home .bg-image:focus-within::after {
  opacity: 0.68;
}

.alps-home .bg-image .station-thumb {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.alps-home .bg-image:hover .station-thumb {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04);
}

.alps-home .bg-image:hover .station-hover-logo,
.alps-home .bg-image:focus-within .station-hover-logo {
  opacity: 0.9;
  transform: translate(-50%, -49%) scale(1);
}

.alps-home .bg-image:hover .station-hover-logo::before,
.alps-home .bg-image:focus-within .station-hover-logo::before {
  opacity: 1;
  transform: scale(1);
}

.alps-home .station-mask {
  transition: background-color 0.28s ease, opacity 0.28s ease, backdrop-filter 0.28s ease;
  z-index: 4;
}

.alps-home .bg-image:hover .station-mask-on {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.05) 0%,
      rgba(10, 10, 10, 0.78) 70%,
      rgba(10, 10, 10, 0.9) 100%
    );
  backdrop-filter: blur(2.4px);
}

.alps-home .bg-image:hover .station-code {
  color: #fff6bd;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.56);
}

@media (hover: none), (pointer: coarse) {
  .alps-home .bg-image.hover-overlay,
  .alps-home .bg-image.hover-overlay:hover,
  .alps-home .bg-image.hover-overlay:focus-within {
    transform: none !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16) !important;
  }

  .alps-home .bg-image.hover-overlay::before,
  .alps-home .bg-image.hover-overlay::after {
    display: none !important;
  }

  .alps-home .bg-image.hover-overlay .station-thumb,
  .alps-home .bg-image.hover-overlay:hover .station-thumb {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .alps-home .bg-image.hover-overlay .station-hover-logo {
    display: none !important;
  }

  .alps-home .bg-image.hover-overlay .station-mask,
  .alps-home .bg-image.hover-overlay .station-mask * {
    transition: none !important;
  }

  .alps-home .bg-image.hover-overlay .station-mask.station-mask-on {
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    background: transparent !important;
    backdrop-filter: none !important;
  }

  .alps-home .bg-image.hover-overlay .station-mask.station-mask-on > .col-12 {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding-top: 8px;
  }

  .alps-home .bg-image.hover-overlay .station-mask.station-mask-on > .col-6 {
    grid-row: 3;
    width: auto !important;
    max-width: none !important;
    padding: 0 8px 10px !important;
    align-items: flex-end !important;
  }

  .alps-home .bg-image.hover-overlay .station-mask.station-mask-on > .col-6:nth-of-type(2) {
    grid-column: 1;
    justify-content: flex-start !important;
    padding-left: clamp(6px, 2vw, 12px) !important;
  }

  .alps-home .bg-image.hover-overlay .station-mask.station-mask-on > .col-6:nth-of-type(3) {
    grid-column: 2;
    justify-content: flex-end !important;
    padding-right: clamp(6px, 2vw, 12px) !important;
  }

  .alps-home .bg-image.hover-overlay .station-code {
    color: #fff8cf;
    font-size: clamp(1.12rem, 4.4vw, 1.56rem);
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.54);
  }

  .alps-home .bg-image.hover-overlay .station-mask .btn-sta {
    width: clamp(56px, 16vw, 70px);
    height: clamp(56px, 16vw, 70px);
    margin-left: auto;
    margin-right: auto;
    border-color: rgba(255, 235, 59, 0.58);
    background: rgba(30, 30, 30, 0.82);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.34);
  }

  .alps-home .bg-image.hover-overlay .station-action {
    position: relative;
    width: 100%;
    gap: 0.32rem;
    align-items: center;
  }

  .alps-home .bg-image.hover-overlay .station-action::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    width: clamp(64px, 19vw, 84px);
    height: clamp(24px, 7vw, 34px);
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0) 72%);
    filter: blur(4px);
    pointer-events: none;
    z-index: 0;
  }

  .alps-home .bg-image.hover-overlay .station-action .btn-sta,
  .alps-home .bg-image.hover-overlay .station-action .station-action-label {
    position: relative;
    z-index: 1;
  }

  .alps-home .bg-image.hover-overlay .station-action-label {
    width: 100%;
    font-size: clamp(0.74rem, 2.6vw, 0.88rem);
    opacity: 0.96;
  }
}

.alps-home .social-link {
  transition: transform 0.25s ease;
}

.alps-home .social-link.social-chip:hover,
.alps-home .social-link.social-chip:focus-visible {
  border-color: rgba(255, 235, 59, 0.42);
  box-shadow: 0 13px 24px rgba(0, 0, 0, 0.24);
}

.alps-home .social-link.social-chip:hover::after,
.alps-home .social-link.social-chip:focus-visible::after {
  width: 100%;
}

.alps-home .social-link.social-chip:hover .social-chip-icon,
.alps-home .social-link.social-chip:focus-visible .social-chip-icon {
  background: rgba(255, 255, 255, 0.12);
}

.alps-home .social-link:hover,
.alps-home .social-link:focus-visible {
  transform: translateY(-2px);
}

.alps-home .partners-logo-image {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.alps-home .partners-logo-link:hover .partners-logo-image,
.alps-home .partners-logo-link:focus-visible .partners-logo-image {
  transform: translateY(-2px);
  filter: saturate(1.12);
}

.alps-home .about-intro-card,
.alps-home .about-point,
.alps-home .about-gallery-shell {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.alps-home .about-intro-card:hover,
.alps-home .about-point:hover,
.alps-home .about-gallery-shell:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 235, 59, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.alps-home .js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.alps-home .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .alps-home .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .alps-home .bg-image,
  .alps-home .social-link,
  .alps-home .social-chip,
  .alps-home .team-card,
  .alps-home .partners-logo-image,
  .alps-home .partners-logo-link,
  .alps-home .partners-progress-fill,
  .alps-home .partners-nav,
  .alps-home .alps-top .alps-bar-item.alps-button,
  .alps-home .alps-top .alps-button {
    transition: none;
  }

  .partners-viewport {
    scroll-behavior: auto;
  }

  .alps-home .alps-top .alps-bar-item.alps-button::after,
  .alps-home .alps-top .alps-button::after {
    transition: none;
  }

  .alps-home .site-topbar .alps-dropdown-hover:hover > .alps-dropdown-content,
  .alps-home .site-topbar .alps-dropdown-hover:focus-within > .alps-dropdown-content,
  .alps-home .site-topbar .alps-dropdown-click:hover > .alps-dropdown-content,
  .alps-home .site-topbar .alps-dropdown-click:focus-within > .alps-dropdown-content {
    animation: none;
  }

  .team-scroll-hint i {
    animation: none;
  }
}

@media screen and (max-width: 992px) {
  .alps-home .alps-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .alps-home .alps-footer-brand {
    justify-content: center;
    flex-wrap: wrap;
  }

  .alps-home .alps-footer-subtitle {
    white-space: normal;
  }

  .alps-home .alps-footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .alps-home .alps-footer-copy {
    text-align: center;
    white-space: normal;
  }

  .alps-home .station-code {
    font-size: clamp(1.12rem, 4.4vw, 1.56rem);
    letter-spacing: 0.018em;
    line-height: 1.06;
    max-width: 100%;
  }

  .alps-home #navDemo {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-topbar-height);
    z-index: 1090;
    max-height: calc(100dvh - var(--site-topbar-height));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .alps-home #navDemo.alps-show {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .alps-home #navDemo.alps-show .alps-bar-item.alps-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    margin: 0;
    padding: 7px 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    font-family: var(--home-ui-font);
    font-size: 0.86rem;
    font-weight: 700;
    color: #f2f2f2 !important;
    border: 1px solid rgba(255, 235, 59, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03) !important;
    background-image: linear-gradient(rgba(255, 235, 59, 0.78), rgba(255, 235, 59, 0.78));
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: 0% 2px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, background-size 0.2s ease;
  }

  .alps-home #navDemo.alps-show .alps-bar-item.alps-button:hover,
  .alps-home #navDemo.alps-show .alps-bar-item.alps-button:focus-visible {
    color: #fff3a8 !important;
    background-color: rgba(255, 235, 59, 0.12) !important;
    border-color: rgba(255, 235, 59, 0.44);
    background-size: 100% 2px;
    outline: none;
  }

  .about-modern {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-basis: 232px;
    min-width: 232px;
  }

  .center {
    width: 100%;
  }

  .alps-home .site-topbar .alps-bar-item.alps-button,
  .alps-home .site-topbar .alps-button {
    min-height: 40px;
    padding: 8px 12px;
  }

  .alps-navlike-btn {
    min-height: 44px;
    padding: 0 16px;
  }

  .card {
    width: min(100%, 250px);
    max-width: 250px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin-left: auto;
    margin-right: auto;
  }

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

  @supports not (aspect-ratio: 3 / 4) {
    .card {
      height: 300px;
    }
  }
}

@media screen and (max-width: 768px) {
  .alps-content.alps-padding {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .alps-logo-image {
    padding-top: 42px;
  }

  .sqm-table {
    min-width: 560px;
    font-size: 0.92rem;
  }

  .sqm-table th {
    white-space: nowrap;
    padding: 0.28rem 0.3rem;
    font-size: 0.86rem;
  }

  .sqm-table td {
    white-space: nowrap;
    padding: 0.24rem 0.28rem;
    font-size: 0.9rem;
  }

  .tooltip-inner {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .team-scroll-wrap::before,
  .team-scroll-wrap::after {
    width: 26px;
  }

  .team-scroll-hint {
    width: 28px;
    height: 28px;
    bottom: 10px;
  }

  .team-scroll-hint-left {
    left: 8px;
  }

  .team-scroll-hint-right {
    right: 8px;
  }

  .team-scroll-hint i {
    font-size: 0.76rem;
  }

  .team-card {
    flex-basis: 86vw;
    min-width: 86vw;
    max-width: 86vw;
  }

  .team-card-content {
    padding: 11px 11px 12px;
  }

  .team-card-bio {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .sqm-table {
    min-width: 510px;
  }

  .sqm-th-icon {
    display: none;
  }

  .sqm-th-wrap {
    gap: 0;
  }

  .sqm-table caption {
    font-size: 0.86rem;
  }

  .station-code {
    font-size: clamp(1.5rem, 8.5vw, 2.4rem);
  }

  .station-icon {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-chip {
    padding: 0.86rem 0.96rem;
    min-height: 70px;
  }

  .social-chip-title {
    font-size: 1.06rem;
  }

  .about-intro-card,
  .about-gallery-shell,
  .about-point {
    padding: 11px;
  }

  .about-badge {
    font-size: 0.76rem;
  }

  .about-lead {
    font-size: 1.03rem;
    line-height: 1.72;
  }
}
