/* Supplied SNS artwork; use compact icons at the site's mobile breakpoint. */
body a.sns-image-link[class] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  min-width: 0;
  min-height: 96px;
  height: 96px;
  padding: 0;
  gap: 0;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transform: none;
}
body a.sns-image-link[class]::before,
body a.sns-image-link[class]::after {
  display: none;
}
body a.sns-image-link[class]:hover {
  background: #fff;
  box-shadow: 0 0 0 2px #b9432f;
  transform: none;
}
body a.sns-image-link[class]:focus-visible {
  outline: 3px solid #b9432f;
  outline-offset: 4px;
}
body a.sns-image-link[class]:active {
  opacity: .8;
}
.sns-logo {
  display: block;
  width: min(100%, 180px);
  height: 96px;
  flex: none;
}
.sns-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 760px) {
  body a.sns-image-link[class] {
    min-height: 64px;
    height: 64px;
    width: 64px;
    justify-self: center;
    border-radius: 8px;
  }
  .sns-logo {
    width: 56px;
    height: 56px;
  }
  .sns-logo img {
    object-fit: cover;
  }
}
