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

/* Footer main container */
.footer {
  border-top: 1px solid #ddd;
  padding: 40px 60px 30px 60px;
  box-sizing: border-box;
  user-select: none;
  width: 100dvw !important;
}

.footer-columns {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 190px;
  box-sizing: border-box;
  padding-right: 30px;
  border-right: 1px solid #ddd;
}
/* Last column no border */
.footer-column:last-child {
  border-right: none;
  max-width: 350px;
  padding-right: 0;
  flex-grow: 1.4;
}

.footer-column h6 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
  user-select: none;
}

.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 12px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.25;
}
.footer-column ul li:hover {
  text-decoration: underline;
}

/* Newsletter text in last column */
.footer-newsletter-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 15px;
  user-select: none;
}

/* Newsletter sign up form */
.footer-newsletter-form {
  display: flex;
  margin-bottom: 25px;
}
.footer-newsletter-input {
  flex-grow: 1;
  padding: 10px 12px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-right: none;
  outline: none;
  color: #333;
  font-weight: 400;
  user-select: text;
}
.footer-newsletter-input::placeholder {
  color: #999;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-newsletter-submit {
  background-color: #0b1c37;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: background-color 0.25s ease;
  user-select: none;
}
.footer-newsletter-submit:hover {
  background-color: #141f47;
}
.footer-newsletter-submit:focus {
  outline: 2px solid #5c8bed;
}

/* Newsletter note below form */
.footer-newsletter-note {
  font-weight: 300;
  font-size: 10px;
  line-height: 1.2;
  color: #222;
  user-select: none;
}
.footer-newsletter-note a {
  font-weight: 400;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}
.footer-newsletter-note a:hover {
  color: #0b1c37;
}

/* Bottom footer - social and copyright container */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  user-select: none;
  flex-wrap: wrap;
}

/* Social icons container */
.footer-social {
  display: flex;
  gap: 15px;
}

/* Social icons individual */
.footer-social a {
  display: inline-block;
  width: 20px;
  height: 20px;
  fill: #0b1c37;
  cursor: pointer;
  transition: fill 0.2s ease;
}
.footer-social a:hover,
.footer-social a:focus {
  fill: #163a72;
}
.footer-social svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Copyright text */
.footer-copy {
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: #000;
  user-select: none;
}

@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: none;
  }
  .footer-column {
    border: none;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .footer-column:last-child {
    max-width: 100%;
    flex-grow: 0;
    margin-bottom: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
