footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 20px 0;
}

footer p {
  color: #fff;
}

.footer-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 4rem 0;
  row-gap: 32px;
}

.footer-container > div {
  box-sizing: border-box;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin: 5px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-title {
  font-weight: bold;
}
address a,
.footer-info a {
  color: var(--primary-color);
  text-decoration: none;
}

address a:hover,
.footer-info a:hover {
  color: var(--hero-color);
  text-decoration: none;
}

/* ── Social share ── */
.footer-social {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .footer-title {
  margin-bottom: 1rem;
}

.social-share {
  gap: 0.5em;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-share__button {
  color: #fff;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.75em;
  height: 2.75em;
  display: flex;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.625, 0.05, 0, 1);
  transform: scale(1) rotate(0.001deg);
}

.social-share__button:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
  transform: scale(1.1) rotate(0.001deg);
}

.social-share__icon {
  width: 1.25em;
  display: flex;
}

.social-share__icon.is--success {
  position: absolute;
}

[data-social-share-type="clipboard"] .social-share__icon {
  transition: transform 0.4s cubic-bezier(0.625, 0.05, 0, 1);
  transform: translateY(0%) rotate(0.001deg);
}

[data-social-share-type="clipboard"] .social-share__icon.is--success {
  color: var(--primary-color);
  transform: translateY(200%) rotate(0.001deg);
}

[data-social-share-type="clipboard"][data-social-share-success] .social-share__icon {
  transform: translateY(-200%) rotate(0.001deg);
}

[data-social-share-type="clipboard"][data-social-share-success] .social-share__icon.is--success {
  transform: translateY(0%) rotate(0.001deg);
}

.footer-logos {
  text-align: center;
  padding: 10px;
}

.footer-logos img {
  max-height: 100px;
  margin: 0 10px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
}

.footer-bottom p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .footer-container {
    padding: 2rem 0;
  }
}
