.header-page-actions,
.header-socials {
  display: flex;
  align-items: center;
}

.header-page-actions {
  gap: 25px;
}

.header-socials {
  gap: 10px;
}

.header-socials a {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 4px 13px 4px 4px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 40px;
  font-size: 9px;
  letter-spacing: 0.06em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-socials a b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #d82617;
}

.header-socials a b svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-socials a b svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.header-socials a:hover {
  color: #fff;
  border-color: #d82617;
  background: rgba(216, 38, 23, 0.14);
}

.contact-info {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1250px) {
  .header-socials a {
    width: 38px;
    padding: 4px;
    justify-content: center;
  }

  .header-socials a span {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-page-actions .header-socials,
  .site-header > .header-actions .header-socials {
    display: none;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}
