@charset "UTF-8";

html {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body > main {
  flex: 1 0 auto;
}

.footer-wrapper {
  flex-shrink: 0;
  width: 100%;
  margin-top: clamp( 48px, 8vw, 96px );
  padding: clamp( 40px, 6vw, 72px ) 5vw clamp( 28px, 4vw, 40px );
  background:
    radial-gradient( circle at 12% 8%, rgba( 255, 255, 255, 0.18 ) 0 16%, transparent 34% ),
    linear-gradient( 135deg, #11845b 0%, #0b5f45 58%, #073d31 100% );
  color: #fff;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min( 100%, 1080px );
  margin: 0 auto;
  gap: 20px;
  text-align: center;
}

.footer-nav {
  width: 100%;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-link {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-thickness 0.18s ease;
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
  color: rgba( 255, 255, 255, 0.82 );
  text-decoration-thickness: 2px;
}

.copy-right {
  display: block;
  color: rgba( 255, 255, 255, 0.78 );
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

@media screen and ( max-width: 479px ) {
  .footer-wrapper {
    margin-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-nav-list {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .footer-nav-link {
    font-size: 14px;
  }
}


.footer-license-number {
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
