/* Social Follow Section Container */
.section.social-follow-container {
  background: var(--background-color, #fff);
  padding: 24px 0 !important;
  justify-items: center;
}

.social-follow-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* block layout */
.social-follow.block.social-follow-decorated {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* LEFT: logo */
.social-follow-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.social-follow-logo picture,
.social-follow-logo img {
  display: block;
}

.social-follow-logo img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
}

/* CENTER: handle + button */
.social-follow-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding-left: 10px;

}

.social-follow-handle {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 70px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--brown);
  font-family: var(--bear-naked-site-heading-font);

}

.social-follow-handle .handle-black {
  color: var(--brown);
}

.social-follow-handle .handle-orange {
  color: var(--primary-color);
}

/* "FOLLOW US" pill button */
.social-follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  background: var(--primary-color, #ff6900) !important;
  color: var(--button-text-color, #fff) !important;
  box-shadow: 0 1px 0 rgb(0 0 0 / 8%);
  transition: transform 120ms ease, filter 120ms ease;
}

.social-follow-button:hover,
.social-follow-button:focus {
  background: var(--tertiary-color, #9E0B45) !important;
  color: var(--button-text-color, #fff) !important;
  transform: translateY(-1px);
  filter: brightness(0.96);
}

/* RIGHT: instagram icon */
.social-follow-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: -90px;
}

.social-follow-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  color: var(--brown) !important;
}

.social-follow-ig-svg {
  display: block;
}

@media (width <= 767px) {
  .section.social-follow-container {
    padding: 24px 0;
  }

  .social-follow.block.social-follow-decorated {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    display: flex;
  }

  .social-follow-handle {
    font-size: 22px;
    white-space: normal;
  }

  .social-follow-icon {
    align-items: center;
    margin-top: -52px;
    margin-right: -80px;
  }

  .social-follow-logo img {
    width: 92px;
    height: 92px;
  }

  .social-follow-ig-svg {
    width: 30px;
    margin-left: -40px;
    margin-top: -6px;
    }
}

@media (width >= 768px) and (width <= 1024px) {
  .social-follow-handle {
    font-size: 2.35rem;
  }
}