:root {
  --charcoal: #565656;
  --text: #4a4a4a;
  --teal: #08a9ba;
  --teal-light: #83cfda;
  --green: #45aa46;
  --panel: #e8e8e8;
  --line: #d3d3d3;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--charcoal);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.site-shell {
  width: min(930px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 10px 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 18px rgb(0 0 0 / 20%);
}

.site-header {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 0 14px 18px;
}

.viasport-logo-crop {
  flex: 0 0 215px;
  width: 215px;
  height: 84px;
  overflow: hidden;
}

.site-logo {
  display: block;
  width: 500px;
  height: auto;
}

.site-name {
  color: #292929;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
}

.banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 116px;
  margin: 0 14px 18px;
  overflow: hidden;
  border: 3px double #a8a8a8;
  background:
    linear-gradient(115deg, rgb(255 255 255 / 28%), transparent 32%),
    linear-gradient(135deg, #1b7895, #78bfce 50%, #d9dcda);
}

.banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    transparent 0 58px,
    rgb(255 255 255 / 9%) 58px 60px
  );
}

.banner span {
  position: relative;
  z-index: 2;
  margin-left: 34px;
  color: #fff;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 3px rgb(0 0 0 / 35%);
}

.banner-shape {
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.75;
}

.banner-shape-one {
  right: 210px;
  bottom: -70px;
  background: var(--green);
}

.banner-shape-two {
  right: 115px;
  top: -65px;
  background: #f7d17a;
}

.banner-shape-three {
  right: 15px;
  bottom: -58px;
  background: var(--teal);
}

.notice {
  margin: 0 14px 70px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.notice-heading {
  padding: 11px 16px;
  background: var(--teal);
}

.notice-heading h1 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.notice-content {
  padding: clamp(24px, 5vw, 48px);
}

.notice-content p {
  max-width: 760px;
  margin: 0 0 1.35rem;
}

.notice-content .lead {
  color: #393939;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.45;
}

a {
  color: #3c3c3c;
  font-weight: 700;
  text-decoration: underline;
}

a:hover,
a:focus-visible {
  color: #007d8b;
}

.signature {
  padding-top: 4px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  min-height: 190px;
  margin: 0 -10px;
  padding: 104px 38px 24px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
  font-size: 0.82rem;
}

.site-footer::before,
.site-footer::after,
.footer-accent {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  top: -104px;
  left: -55px;
  width: 640px;
  height: 210px;
  transform: rotate(18deg);
  background: #009b4c;
}

.site-footer::after {
  top: -80px;
  right: 90px;
  width: 480px;
  height: 170px;
  transform: rotate(-13deg);
  background: #a8d5cb;
}

.footer-accent {
  z-index: 1;
  top: -105px;
  left: -90px;
  width: 420px;
  height: 110px;
  transform: rotate(28deg);
  background: #f5d284;
}

.site-footer p {
  position: relative;
  z-index: 2;
  margin: 3px 0;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 600px) {
  .site-shell {
    padding-top: 14px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 58px;
    padding-bottom: 12px;
  }

  .viasport-logo-crop {
    transform: scale(0.88);
    transform-origin: left top;
    margin-bottom: -9px;
  }

  .banner {
    min-height: 90px;
  }

  .banner span {
    margin-left: 18px;
  }

  .notice {
    margin-bottom: 38px;
  }

  .notice-content {
    padding: 24px 20px;
  }
}
