/** Shopify CDN: Minification failed

Line 9:22 Unterminated string token

**/
/* About Founder Hero */

@font-face {
  font-family: "anton;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  }

.afh-section {
  width: 100%;
  padding: 0;
}

.afh-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 640px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Photo column */
.afh-photo-col {
  position: relative;
  padding: 56px 0 56px 56px;
  display: flex;
}

.afh-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.afh-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px 0 0 6px;
}

.afh-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8d9c8;
  height: 100%;
  border-radius: 6px 0 0 6px;
}

.afh-photo--placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.5;
}

.afh-name-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 14px 22px;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.afh-photo-wrap:hover .afh-name-card {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.afh-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.afh-title {
  font-size: 13px;
  margin: 2px 0 0;
  line-height: 1.3;
}

/* Text column */
.afh-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 72px 56px 64px;
}

.afh-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.afh-eyebrow-line {
  width: 26px;
  height: 1.5px;
}

.afh-heading {
  font-family: "anton";
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 24px;
}

.afh-heading-highlight {
  display: inline;
}

.afh-body {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.afh-body p {
  margin: 0 0 14px;
}

.afh-body p:last-child {
  margin-bottom: 0;
}

.afh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.afh-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  opacity: 0.92;
}

.afh-button:active {
  transform: translateY(-1px);
}

/* Entrance animation */
.afh-photo-col {
  animation: afh-fade-in 0.7s ease both;
}

.afh-text-col {
  animation: afh-fade-up 0.7s ease both;
  animation-delay: 0.15s;
}

@keyframes afh-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes afh-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 989px) {
  .afh-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .afh-photo-col {
    padding: 40px 40px 0 40px;
  }
  .afh-photo-wrap {
    min-height: 420px;
  }
  .afh-photo,
  .afh-photo--placeholder {
    border-radius: 6px;
  }
  .afh-text-col {
    padding: 40px;
  }
  .afh-heading {
    font-size: 44px;
  }
}

/* Mobile */
@media (max-width: 599px) {
  .afh-photo-col {
    padding: 24px 20px 0 20px;
  }
  .afh-photo-wrap {
    min-height: 320px;
  }
  .afh-name-card {
    left: 16px;
    bottom: 16px;
    padding: 10px 16px;
  }
  .afh-text-col {
    padding: 32px 20px 40px;
  }
  .afh-heading {
    font-size: 34px;
  }
  .afh-body {
    font-size: 15px;
    max-width: none;
  }
  .afh-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .afh-photo-col,
  .afh-text-col,
  .afh-name-card,
  .afh-button {
    animation: none;
    transition: none;
  }
}