/* ==========================================================================
   Converge-Con — Section Layout
   ========================================================================== */

.wrapper {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
}

section {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  background-color: transparent;
  backdrop-filter: none;
  overflow: visible;
  transition: background-color 200ms ease, backdrop-filter 200ms ease;
  /* 0 = enlarged hero brand, 1 = compact header brand */
  --brand-progress: 0;
}

.site-header.is-scrolled {
  background-color: var(--color-overlay-50);
  backdrop-filter: blur(6px);
}

.site-header__inner {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.25rem var(--container-pad);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: var(--header-height);
}

.site-header__brand {
  position: absolute;
  left: 50%;
  /* Drop below the header bar at the top; settle into header center on scroll */
  top: calc(50% + (1 - var(--brand-progress)) * clamp(7rem, 20vh, 13rem));
  transform: translate(-50%, -50%)
    scale(calc(1 + (1 - var(--brand-progress)) * 1.05));
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  will-change: transform, top;
}

.site-header__logo-link {
  display: block;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.logo-mark {
  display: block;
  /* SVG is a square canvas; letters live in a thin mid band — crop to that.
     max-width leaves room for the menu + RSVP on either side. */
  width: clamp(7.5rem, 34vw, 30rem);
  max-width: calc(100vw - 16rem);
  height: clamp(1.35rem, 5.2vw, 4.25rem);
  object-fit: cover;
  object-position: center;
}

.site-header__tagline {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(0.5rem, 1.1vw, 0.875rem);
  line-height: 1.2;
  color: var(--color-lime);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  /* Full viewport — extends under the fixed transparent header */
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-block: clamp(1.5rem, 4vw, 3rem) 0;
  /* Visible so the eye logo can hang below the fold into the next section */
  overflow: visible;
  z-index: 2;
  /* Solid base under the translucent texture */
  background-color: #050505;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/backgrounds/AdobeStock_275265725.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

/* Custom multi-spike star — above hero background, below all page content */
.hero-tagline-star {
  position: absolute;
  z-index: 0;
  left: auto;
  right: 0;
  /* Align with the enlarged brand / tagline band at load */
  top: calc(var(--header-height) * 0.5 + clamp(4rem, 12vh, 8rem));
  /* Scales with viewport; checker re-fits rotation on resize */
  width: clamp(14rem, 55vw, 56rem);
  height: auto;
  max-width: min(56rem, 92vw);
  aspect-ratio: 1;
  color: var(--color-lime);
  transform: translate(calc(28% - 4vw), calc(-55% + 4vh))
    rotate(var(--star-rot, 36deg));
  pointer-events: none;
  user-select: none;
  overflow: visible;
}

.hero-tagline-star path {
  fill: currentColor;
}

/* Keep decorative letters above the star, still behind UI */
.hero > .giant-letter {
  z-index: 1;
}

.hero > .wrapper {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  position: relative;
  z-index: 2;
}

.hero__slogan {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  margin: 0;
  width: max-content;
  max-width: none;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  /* Scales with viewport so the full line always fits */
  font-size: min(7.5rem, 5.4vw);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-lime);
  white-space: nowrap;
  pointer-events: none;
}

/* Mobile-only line break; desktop keeps a single row */
.hero__slogan-br {
  display: none;
}

/* In-flow wordmark — mobile only (sits directly above the slogan) */
.hero__wordmark {
  display: none;
}

/* Meta shares the bottom of the opening screen */
.hero__bottom {
  width: auto;
  position: absolute;
  /* Match page gutters so meta never kisses the viewport edges */
  left: var(--container-pad);
  right: var(--container-pad);
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__bottom .hero__meta {
  pointer-events: auto;
}

.hero__meta {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    var(--hero-eye-size)
    minmax(0, 1fr);
  align-items: end;
  column-gap: clamp(0.5rem, 2vw, 2rem);
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin-top: 0;
  box-sizing: border-box;
}

.hero__meta-col--dates {
  justify-self: center;
  text-align: center;
  width: max-content;
  max-width: none;
  min-width: 0;
  padding-bottom: clamp(1.25rem, 3.5vw, 2.5rem);
  /* Lift off the hero bottom; independent of the star’s layout height */
  margin-bottom: 6vh;
  position: relative;
  z-index: 4;
}

.hero__meta-col--institution {
  justify-self: center;
  text-align: center;
  width: max-content;
  max-width: none;
  min-width: 0;
  padding-bottom: clamp(1.25rem, 3.5vw, 2.5rem);
  margin-bottom: 6vh;
  position: relative;
  z-index: 4;
}

.hero__meta-col--logo {
  justify-self: center;
  align-self: end;
  /* Collapse layout height so the large star doesn’t push the text down */
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 0;
  position: relative;
  overflow: visible;
  z-index: 3;
}

.hero__dates {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.8rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

.hero__institution {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.65rem, 1.35vw, 1.2rem);
  line-height: 1.35;
  margin: 0;
  text-align: center;
  /* Keep intentional <br> breaks; prevent soft wraps mid-line */
  white-space: nowrap;
}

.hero__squiggle {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 0.55rem;
  color: var(--color-teal);
  overflow: visible;
}

.hero-eye {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  aspect-ratio: 1;
  /* Hang below the initial screen; eye sits mid-logo so it stays visible */
  transform: translate(-50%, 28%);
  pointer-events: none;
}

.hero-eye svg,
.hero-eye__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-eye [id$="-pupil-move"] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .site-header__brand {
    will-change: auto;
  }
}

/* ==========================================================================
   Feelings — "I feel _______ about AI."
   ========================================================================== */

.feelings {
  position: relative;
  height: 40vh;
  min-height: 18rem;
  max-height: 40vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-lime);
  overflow: hidden;
  isolation: isolate;
}

.feelings__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-block: clamp(1.5rem, 4vh, 2.5rem);
}

.feelings__prompt {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  column-gap: 0.35em;
  row-gap: 0.15em;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-black);
}

.feelings__static {
  color: var(--color-black);
}

.feelings__static--before {
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.feelings__static--after {
  justify-self: start;
  text-align: left;
  white-space: nowrap;
}

.feelings__blank {
  justify-self: center;
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: content-box;
  width: 11ch;
  overflow: hidden;
  padding-bottom: 0.08em;
  border-bottom: 0.085em solid var(--color-black);
  vertical-align: baseline;
}

.feelings__word {
  display: block;
  width: 100%;
  min-height: 1.05em;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-purple);
  white-space: nowrap;
  transform-origin: 50% 70%;
  will-change: transform, opacity, filter;
}

.feelings__word.is-flipping {
  animation: feelings-flip 90ms steps(2, end) both;
}

.feelings__word.is-settling {
  animation: feelings-settle 420ms var(--ease-smooth) both;
}

@keyframes feelings-flip {
  0% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  40% {
    opacity: 0.35;
    transform: translateY(0.12em);
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes feelings-settle {
  0% {
    opacity: 0.55;
    transform: translateY(0.18em);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feelings__word {
    will-change: auto;
  }

  .feelings__word.is-flipping,
  .feelings__word.is-settling {
    animation: none;
  }
}

/* ==========================================================================
   Brand color bands (40vh breaks between major sections)
   Sticky photos stay locked to the viewport; section frames scroll over them
   and clip/reveal each image as the divider crosses the screen.
   ========================================================================== */

.brand-band {
  position: relative;
  height: 40vh;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  /* Clips position:fixed photos to this section’s box */
  clip-path: inset(0);
}

/*
  Cover the divider without changing aspect ratio:
  size to the section box, then object-fit: cover scales up from
  full-width as needed so height always fills (letterboxing never).
*/
.brand-band__photo {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.brand-band__frame-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.brand-band__frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .brand-band__photo {
    position: absolute;
  }
}

.brand-band--lime {
  background-color: var(--color-lime);
}

.brand-band--teal {
  background-color: var(--color-teal);
}

.brand-band--pink {
  background-color: var(--color-pink);
}

.brand-band--orange {
  background-color: var(--color-orange);
}

.brand-band--purple {
  background-color: var(--color-purple);
}

.brand-band--blue {
  background-color: var(--color-blue);
}

/* ==========================================================================
   Schedule
   ========================================================================== */

.schedule {
  padding-block: clamp(3rem, 8vw, 6rem);
  isolation: isolate;
}

.schedule::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75%;
  z-index: -1;
  background-image: url("../img/backgrounds/AdobeStock_486233575.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.schedule__intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.schedule__intro-note {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: var(--font-size-body);
}

.schedule__key {
  position: sticky;
  /* Sit below the header with a gap once sticky engages */
  top: calc(var(--header-height) + 0.75rem);
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-key-purple);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  background: color-mix(in srgb, var(--color-blue) 16%, var(--color-black));
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.key-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--font-size-body);
  background: transparent;
  opacity: 1;
  transition: opacity var(--duration-med) var(--ease-standard);
}

.key-item__swatch {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.schedule__day {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--color-hairline);
}

.schedule__day:first-of-type {
  border-top: none;
}

.schedule__day-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  flex-shrink: 0;
  width: clamp(64px, 6vw, 98px);
  padding-top: 0.15em;
}

.schedule__events {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  width: 100%;
  min-width: 0;
}

.event {
  --event-accent: var(--color-lime);
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.event[data-category="1"] {
  --event-accent: var(--color-lime);
}

.event[data-category="2"] {
  --event-accent: var(--color-teal);
}

.event[data-category="3"] {
  --event-accent: var(--color-pink);
}

.event[data-category="4"] {
  --event-accent: var(--color-orange);
}

.event[data-category="5"] {
  --event-accent: var(--color-purple);
}

.event__divider {
  position: relative;
  flex: 0 0 8px;
  width: 8px;
  color: var(--event-accent);
}

.event__divider svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.event__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.event__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

.event__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.05;
  color: var(--event-accent);
  flex: 1 1 auto;
  min-width: 0;
}

.event__when-where {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-family: var(--font-mono);
  font-style: italic;
  font-size: var(--font-size-body);
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  margin-inline-start: auto;
  text-align: right;
}

.event__when-where > span {
  white-space: nowrap;
  flex-shrink: 0;
}

.event__location {
  font: inherit;
  font-style: italic;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: normal;
  min-width: 0;
  flex: 0 1 auto;
}

.event__location:hover,
.event__location:focus-visible {
  color: var(--event-accent);
}

.event__pin {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.event__description {
  width: 100%;
  max-width: none;
  font-family: var(--font-mono);
  font-size: var(--font-size-body);
  line-height: 1.24;
}

/* ==========================================================================
   Speakers & Team
   ========================================================================== */

.speakers {
  padding-block: clamp(3rem, 8vw, 6rem);
  isolation: isolate;
}

.speakers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/backgrounds/AdobeStock_1887309543.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.speakers__heading {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: clamp(2.5rem, 6vw, 3.5rem);
}

.speaker-card {
  position: relative;
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
}

.speaker-card__divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  color: var(--color-teal);
  overflow: visible;
  pointer-events: none;
}

.speaker-card__divider svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.speaker-card:nth-child(-n + 2) {
  padding-top: 0;
}

.speaker-card:nth-child(-n + 2) .speaker-card__divider {
  display: none;
}

.speaker-card__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: clamp(150px, 16vw, 239px);
}

.speaker-card__photo {
  width: 100%;
  aspect-ratio: 239 / 306;
  background: var(--color-placeholder);
  border-radius: 4px;
}

.speaker-card__badge {
  position: absolute;
  right: -10%;
  bottom: 8%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(20.87deg);
}

.speaker-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.speaker-card__name {
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
}

.speaker-card__role {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: var(--font-size-body);
  color: var(--color-lime);
}

.speaker-card__bio {
  font-family: var(--font-mono);
  font-size: var(--font-size-body);
  line-height: 1.4;
}

/* ==========================================================================
   Glossary
   ========================================================================== */

.glossary {
  padding-block: clamp(3rem, 8vw, 6rem);
  isolation: isolate;
}

.glossary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/backgrounds/AdobeStock_1946666437%20%5BConverted%5D.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.glossary__intro {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glossary__intro-note {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: var(--font-size-body);
}

.glossary-box {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--color-teal);
}

.glossary-row {
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  align-items: stretch;
}

.glossary-row + .glossary-row {
  border-top: 4px solid var(--color-teal);
}

.glossary-term {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.15;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-white);
  border-right: 4px solid var(--color-teal);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  transition:
    color var(--duration-fast) var(--ease-standard),
    background-color var(--duration-fast) var(--ease-standard);
}

.glossary-box__definition {
  font-family: var(--font-mono);
  font-size: var(--font-size-body);
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
  overflow-wrap: break-word;
  transition: color var(--duration-fast) var(--ease-standard);
}

/* Desktop/tablet: shared slot unused (mobile expands inline defs) */
.glossary-box__definition--shared {
  display: none;
}

/* Hover: lime term background only, black text */
.glossary-term:hover,
.glossary-term:focus-visible,
.glossary-term[aria-pressed="true"] {
  background-color: var(--color-lime);
  color: var(--color-black);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 0;
  position: relative;
  /* End the page partway through the star — bottom is covered, not scrollable */
  overflow: hidden;
}

.site-footer__inner {
  width: 100%;
}

/* Same 3-column band as the hero meta: sides + star eye */
.site-footer__stage {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    var(--hero-eye-size)
    minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.5rem, 2vw, 2rem);
  width: 100%;
  position: relative;
}

.site-footer__hussman { 
  justify-self: start; 
  align-self: center; 
  display: block; 
  width: min(900px, 20vw);
  margin-top: 5vh; 
  margin-bottom: 0; 
  position: relative; 
  z-index: 4;
} 

.site-footer__hussman img { 
  width: 100%; 
  height: auto; 
  aspect-ratio: 622 / 72; 
  object-fit: contain; 
}

.site-footer__center {
  --footer-star-size: var(--hero-eye-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
}

.site-footer__heading {
  text-align: center;
  /* SVG has empty padding above the orange ink — pull text down onto it */
  margin: 0 0 calc(var(--footer-star-size) * -0.3);
  padding-bottom: 0.15rem;
  position: relative;
  z-index: 4;
}

.site-footer__logo {
  width: 100%;
  /* Layout height ≈ 65% of the square star; remaining is clipped by the footer */
  aspect-ratio: 1 / 0.65;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

/* Match hero star size (100% of eye column) — bottom ~35% clipped by page end */
.site-footer__eye.hero-eye {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: auto;
  width: 100%;
  min-width: 0;
  max-width: none;
  transform: translateX(-50%);
  margin: 0;
}

.site-footer__instagram {
  justify-self: end;
  align-self: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin-top: 5vh;
  margin-bottom: 0;
  position: relative;
  z-index: 4;
}

.site-footer__instagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
