/* ============================================================
   ABOUT PAGE — HIROSHI OUR STUDIO REPLICA
   All classes prefixed with hs- to avoid conflicts
============================================================ */

/* ============================================================
   SECTION 1 — HERO
============================================================ */
.hs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

.hs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../Project%20images/WIN_Facility6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65);
  /* Darker for better contrast */
  transform: none !important;
  transition: none !important;
}

.hs-hero-content,
.hs-hero-title,
.hs-hero-tag {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* New Hero Header */
.hs-hero-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 40px 80px;
  z-index: 10;
}

.hs-hero-logo {
  font-family: var(--font-b);
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 60px;
}

.hs-hero-logo .bold {
  font-weight: 700;
}

.hs-hero-logo .light {
  font-weight: 300;
}

.hs-hero-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.hs-hero-nav li {
  display: flex;
  align-items: center;
}

.hs-hero-nav li.active::before {
  display: none;
}

.hs-hero-nav a {
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.hs-hero-nav li.active a,
.hs-hero-nav a:hover {
  color: #fff;
}

/* Circle Button (Top Right) */
.hs-hero-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}

.hs-hero-circle:hover {
  border-color: #fff;
  transform: scale(1.1);
}

.hs-hero-circle svg {
  width: 12px;
  height: 12px;
  stroke-width: 2px;
}

.hs-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  width: 100%;
}

.hs-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

/* Hero Footer / Tag */
.hs-hero-footer {
  position: absolute;
  bottom: 45px;
  left: 80px;
  z-index: 10;
}

.hs-hero-tag {
  font-family: var(--font-h);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.hs-hero-tag .dot {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

/* Hide home-page top bar if present */
.about-page #top-bar {
  display: none !important;
}

/* ============================================================
   ABOUT PAGE — STICKY HEADER: hidden until scrolled past hero
============================================================ */
.about-page #sticky-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-page #sticky-header.scrolled-in {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* On mobile the hero nav is hidden — always show sticky header so hamburger is reachable */
@media (max-width: 768px) {
  .about-page #sticky-header {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .about-hero-nav {
    display: none !important;
  }
}

/* ============================================================
   ABOUT HERO NAVBAR (lives inside the hero section)
============================================================ */
.about-hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 36px 40px;
  z-index: 20;
  background: transparent;
}

.about-hero-nav .hero-logo {
  text-decoration: none;
  margin-right: 60px;
  flex-shrink: 0;
}

.about-hero-nav .hero-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* force white */
}

.about-hero-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 52px;
  align-items: center;
}

.about-hero-nav ul li a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.about-hero-nav ul li a:hover,
.about-hero-nav ul li.active a {
  color: #ffffff;
}

.about-hero-nav ul li.active {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-hero-nav ul li.active::before {
  display: none;
}

@media (max-width: 768px) {
  .about-hero-nav {
    padding: 24px 30px;
  }

  .about-hero-nav ul {
    gap: 20px;
  }

  .about-hero-nav ul li a {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .about-hero-nav ul {
    display: none;
  }

  .about-hero-nav {
    justify-content: flex-start;
    padding: 20px 24px;
  }
}

/* Adjust about hero content when sticky header is always-on at mobile */
@media (max-width: 768px) {
  .hs-hero-content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: calc(var(--header-height) + 20px);
  }

  .hs-hero-footer {
    left: 24px;
    bottom: 28px;
  }

  .hs-hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
}


/* ============================================================
   SECTION 2 — INTRO TEXT + PHOTO
============================================================ */
.hs-intro {
  background: #ffffff;
  padding: 158px 0 40px;
}

.hs-intro-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 65px;
  display: grid;
  grid-template-columns: 1fr 606px;
  gap: 84px;
  align-items: flex-start;
}

.hs-intro-heading {
  font-family: var(--font-b);
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 400;
  color: #111;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 24px;
}

@media (min-width: 1025px) and (max-width: 1300px) {
  .hs-intro-heading {
    font-size: 1.65rem;
  }
}

@media (max-width: 1024px) {
  .hs-desktop-br {
    display: none;
  }
}

.hs-intro-body {
  font-family: var(--font-b);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
  max-width: 480px;
}

.hs-intro-img-wrap {
  width: 606px;
  height: 303px;
  overflow: hidden;
}

.hs-intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: none !important;
}

.hs-intro-img-wrap:hover img {
  transform: none !important;
}

/* ============================================================
   SECTION 3 — THREE APPROACH COLUMNS
============================================================ */
.hs-approach {
  background: #ffffff;
  padding: 0 0 100px;
  border-bottom: 1px solid #e8e6e1;
}

.hs-approach-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hs-approach-col {
  padding-top: 32px;
  border-top: 1px solid #e5e2dd;
}

.hs-approach-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hs-approach-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs-approach-link {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0, 0, 0, 0.85);
  transition: text-decoration-color 0.3s;
}

.hs-approach-link:hover {
  text-decoration-color: #111;
}

.hs-approach-col p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
}

.hs-read-more {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.hs-read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.hs-read-more:hover::after {
  transform: scaleX(0);
  transform-origin: right center;
}

/* ============================================================
   SECTION 4 — HORIZONTAL SLIDER GALLERY
============================================================ */
.hs-gallery {
  background: #ffffff;
  padding: 80px 100px;
  overflow: hidden;
  position: relative;
}

.hs-gallery-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.hs-gallery-slider {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  height: 362px;
}

.hs-gallery-item {
  flex: 0 0 349px;
  height: 238px;
  overflow: hidden;
  position: relative;
  transition: all 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 1s ease;
  transform-origin: center center;
  filter: brightness(1);
}

.hs-gallery-item.active {
  flex: 0 0 322px;
  height: 362px;
}

.hs-gallery-item.active img {
  transform: none;
  filter: brightness(1);
}

.hs-gallery-controls {
  max-width: 1400px;
  margin: 17px auto 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hs-gallery-controls::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8e6e1;
}

.hs-gallery-counter {
  font-family: var(--font-b);
  font-size: 1.15rem;
  color: #000000;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 0;
  font-weight: 300;
  letter-spacing: 0;
}

.hs-gallery-nav {
  display: flex;
  gap: 16px;
}

.hs-gallery-nav button {
  background: transparent;
  border: none;
  width: auto;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, color 0.3s;
  color: #111;
  padding: 0;
}

.hs-gallery-nav button:hover {
  transform: scale(1.1);
}

/* ============================================================
   SECTION 5 — CENTERED QUOTE
============================================================ */
.hs-quote {
  background: #ffffff;
  padding: 110px 0;
}

.hs-quote-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  backface-visibility: hidden;
  /* GPU optimization */
}

.hs-quote-text {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 300;
  color: #111;
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* Longer, smoother transition */
  will-change: opacity, transform;
}

.hs-quote-author {
  display: block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.hs-quote-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.hs-dot {
  width: 28px;
  height: 2px;
  background: #ccc;
  display: inline-block;
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.hs-dot.active {
  width: 50px;
  background: #111;
}

/* ============================================================
   SECTION 6 — FULL-WIDTH BANNER IMAGE
============================================================ */
.hs-banner {
  position: relative;
  width: 100%;
  height: 536px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hs-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0) 100%),
    url('../../Project%20images/hero_exterior.png');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}

.hs-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 60px;
  max-width: 700px;
}

.hs-banner-quote {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ============================================================
   SECTION 7 — STATS ROW
============================================================ */
.hs-stats {
  background: #ffffff;
  border-bottom: 1px solid #e8e6e1;
  padding: 0;
}

.hs-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 110px;
  position: relative;
}

.hs-stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 50px 30px 0;
}

.hs-stat-num {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #111;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hs-stat-label {
  font-family: var(--font-b);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.5;
}

.hs-stat-divider {
  width: 1px;
  height: 36px;
  background: #d9d7d3;
  margin-right: 50px;
  flex-shrink: 0;
}

.hs-stat-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.hs-stat-nav button {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
  padding: 6px;
  transition: color 0.25s;
}

.hs-stat-nav button:hover {
  color: #111;
}

/* ============================================================
   SECTION 8 — MEET OUR ARCHITECTS (founders)
============================================================ */
.hs-founders {
  background: #ffffff;
  padding: 120px 0;
  min-height: auto;
  display: flex;
  align-items: flex-start;
}

.hs-founders-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 0 0 100px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hs-founders-heading {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hs-founders-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  max-width: 480px;
}

.hs-founders-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hs-founder-photo {
  overflow: hidden;
  height: 736px;
}

.hs-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.hs-founder-photo:hover img {
  transform: scale(1.04);
  filter: grayscale(30%);
}

/* ============================================================
   SECTION 9 — TEAM GRID (2×2)
============================================================ */
.hs-team {
  background: #ffffff;
  padding: 80px 0;
}

.hs-team-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  /* Vertical gap handled by margins/padding */
}

.hs-team-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 225px;
}

/* Row separator line */
.hs-team-card:nth-child(1),
.hs-team-card:nth-child(2) {
  border-bottom: 1px solid #e8e6e1;
  margin-bottom: 40px;
  padding-bottom: 40px;
  height: 265px;
  /* height + padding */
}

.hs-team-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hs-tc-photo {
  flex: 0 0 300px;
  /* Increased width to match reference */
  overflow: hidden;
}

.hs-tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.hs-team-card:hover .hs-tc-photo img {
  transform: scale(1.05);
  filter: grayscale(40%);
}

.hs-tc-info {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs-tc-name {
  font-family: var(--font-b);
  font-size: 1.3rem;
  /* Larger font as per screenshot */
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hs-tc-role {
  font-family: var(--font-b);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  /* Slightly darker than before */
  margin-bottom: 24px;
  font-weight: 500;
}

.hs-tc-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hs-tc-socials a {
  color: #000;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.hs-tc-socials a:hover {
  transform: translateY(-2px);
}

.hs-stars {
  font-size: 0.7rem;
  color: #ccc;
  letter-spacing: 4px;
}

/* ============================================================
   SECTION 10 — CTA STRIP
============================================================ */
.hs-cta {
  background: #EAEAD8;
  /* Meadow Mist 936 */
  padding: 50px 0;
}

.hs-cta-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hs-cta-text {
  font-family: var(--font-b);
  font-size: 0.98rem;
  font-weight: 380;
  color: #111;
  line-height: 1.6;
  flex: 1;
  max-width: 800px;
}

.hs-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  /* Lowercase as per screenshot */
  color: #111;
  border: 1px solid #111;
  padding: 12px 48px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hs-cta-btn:hover {
  background: #111;
  color: #fff;
}

/* ============================================================
   FOOTER
============================================================ */

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {

  .hs-intro-inner,
  .hs-founders-inner {
    grid-template-columns: 1fr;
    padding: 0 50px;
  }

  .hs-intro-img-wrap {
    width: 100%;
    max-width: 606px;
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .hs-approach-inner {
    padding: 0 50px;
  }

  .hs-team-grid {
    padding: 0 50px;
    grid-template-columns: 1fr;
  }

  .hs-gallery-inner {
    grid-template-columns: 1fr 1fr 1fr;
    height: 320px;
  }

  .hs-stats-inner {
    padding: 0 50px;
  }

  .hs-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 50px;
  }

}

@media (max-width: 768px) {
  .hs-hero-logo {
    display: none;
  }

  .hs-hero-content {
    padding-left: 40px;
  }

  .hs-intro-inner {
    padding: 0 30px;
    gap: 50px;
  }

  .hs-approach-inner {
    grid-template-columns: 1fr;
    padding: 0 30px;
    gap: 36px;
  }

  .hs-gallery-inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hs-gallery-slider {
    height: 450px;
  }

  .hs-gallery-item {
    height: 450px;
  }

  .hs-quote-inner {
    padding: 0 30px;
  }

  .hs-banner-content {
    padding: 0 30px 40px;
  }

  .hs-stats-inner {
    flex-wrap: wrap;
    padding: 20px 30px;
    gap: 0;
  }

  .hs-stat-item {
    padding: 16px 20px 16px 0;
    flex: 0 0 45%;
  }

  .hs-stat-divider {
    display: none;
  }

  .hs-founders-inner {
    padding: 0 30px;
  }

  .hs-founders-photos {
    grid-template-columns: 1fr 1fr;
  }

  .hs-team-grid {
    padding: 0 30px;
    grid-template-columns: 1fr;
  }

  .hs-cta-inner {
    padding: 0 30px;
  }

}

/* ============================================================
   MOBILE — 480px and below (phones)
============================================================ */
@media (max-width: 480px) {
  .hs-hero {
    min-height: 100svh;
  }

  .hs-hero-title {
    font-size: 1.8rem;
  }

  .hs-hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hs-hero-footer {
    left: 20px;
    bottom: 30px;
  }

  .hs-intro-inner {
    padding: 0 20px;
    gap: 24px;
  }

  .hs-intro-heading {
    font-size: 1.5rem;
  }

  .hs-approach-inner {
    padding: 0 20px;
    gap: 28px;
  }

  .hs-gallery-item,
  .hs-gallery-item.active {
    flex: 0 0 260px;
    height: 350px;
  }

  .hs-gallery-slider {
    height: 350px;
  }

  .hs-gallery-wrapper {
    padding: 0 16px;
  }

  .hs-gallery-controls {
    padding: 0 16px;
  }

  .hs-quote-inner {
    padding: 0 20px;
  }

  .hs-quote-text {
    font-size: 1rem;
  }

  .hs-banner-content {
    padding: 0 20px 32px;
  }

  .hs-banner-quote {
    font-size: 1.1rem;
  }

  .hs-stats-inner {
    padding: 20px;
  }

  .hs-stat-item {
    flex: 0 0 100%;
    padding: 12px 0;
  }

  .hs-founders-inner {
    padding: 40px 20px;
    gap: 28px;
  }

  .hs-founders-heading {
    font-size: 1.8rem;
  }

  .hs-founder-photo {
    height: 180px;
  }

  .hs-founders-photos {
    grid-template-columns: 1fr 1fr;
  }

  .hs-team-grid {
    padding: 0 20px;
  }

  .hs-team-card {
    flex-direction: column;
    height: auto;
  }

  .hs-tc-photo {
    flex: none;
    width: 100%;
    height: 200px;
  }

  .hs-tc-info {
    padding: 18px 16px;
  }

  .hs-tc-name {
    font-size: 1.1rem;
  }

  .hs-cta-inner {
    padding: 0 20px;
    gap: 20px;
  }

  .hs-cta-text {
    font-size: 0.9rem;
  }

  .hs-footer-inner {
    padding: 40px 20px 28px;
  }

  .hs-footer-bottom {
    padding: 16px 20px;
  }
}