.footer-social > span {
  max-width: 180px;
  line-height: 1.7;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #ddcfc1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #3a1b0d;
  background: #fff;
  transition: transform .2s, border-color .2s, color .2s, background .2s;
}

.header-social a[hidden] {
  display: none;
}

.header-social a:hover {
  transform: translateY(-2px);
  border-color: #c68b3d;
  color: #fff;
  background: #3a1b0d;
}

.header-social a.is-disabled {
  opacity: .55;
  cursor: default;
  filter: grayscale(.25);
}

.header-social a.is-disabled:hover {
  transform: none;
  color: #3a1b0d;
  border-color: #ddcfc1;
  background: #fff;
}

.social-links {
  display: flex;
  gap: 9px;
  margin: 5px 0 8px;
}

.social-links a {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .2s, border-color .2s, background .2s;
}

.social-links a[hidden] {
  display: none;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: #efc77f;
  background: rgba(239, 199, 127, .1);
}

.social-links a.is-disabled {
  opacity: .55;
  cursor: default;
}

.social-links a.is-disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .18);
  background: transparent;
}

.social-links svg,
.header-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-links svg rect,
.social-links svg circle:not(.social-dot),
.header-social svg rect,
.header-social svg circle:not(.social-dot) {
  fill: none;
}

.social-links .social-dot,
.header-social .social-dot {
  stroke: none;
}

@media (max-width: 780px) {
  .header-inner {
    gap: 12px;
  }

  .header-social {
    gap: 5px;
  }

  .header-social a {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 410px) {
  .header-social a {
    width: 31px;
    height: 31px;
  }

  .header-social svg {
    width: 16px;
    height: 16px;
  }
}
