/* ── About Hero ── */
.about-hero-section {
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 125px;
  align-items: start;
}

.about-hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-hero-visual-col {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hero-caption {
  font-family: var(--ff-handwritten);
  font-size: var(--fs-handwritten-sm);
  color: #f3f7f4CC;
  text-align: center;
}

@media screen and (width <= 480px) {
  .about-hero-section {
    padding: 50px 25px;
    grid-template-columns: 1fr;
  }
}


/* ── Stats ── */
.section-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 80px 125px;
}

.stats-bubbles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-bubble {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #f3f7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  background-color: #0d5175;
}

.stat-bubble-number {
  font-family: var(--ff-primary);
  font-size: 3rem;
  font-weight: 700;
  color: #f3f7f4;
  line-height: 1;
  margin: 0;
}

.stat-bubble-label {
  font-family: var(--ff-primary);
  font-size: 0.875rem;
  font-weight: 400;
  color: #f3f7f4CC;
  line-height: 1.3;
  margin: 0;
}

/* ── Studio ── */
.section-studio {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 80px 125px;
  @media screen and (width <= 480px) {
  padding: 50px 25px;
}

}

.studio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.studio-gallery-caption {
  font-family: var(--ff-handwritten);
  font-size: var(--fs-handwritten-sm);
  color: #f3f7f4CC;
}

/* ── Beliefs ── */
.section-beliefs {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 125px;
  background-color: #111e26;
}

.beliefs-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.beliefs-header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.belief-card {
  width: fit-content;
  min-width: 200px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 30px;
  border: 1px solid #000000;
  border-radius: 5px;
  transition: border-color 0.2s;
  box-shadow: 16px 16px 0px 0px #000000;
  color: #000000;
}

.belief-card:hover {
  border-color: #f3f7f480;
}

.belief-card-title {
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.belief-card-body {
  font-family: var(--ff-handwritten);
  font-weight: 300;
  font-size: 1.5rem;
  color: #000000;
}

.belief-conent-container {
  position:relative;
  width: 100%;
  padding: 0px 50px;
  min-height: 600px;
}

.card1 {
  position: absolute;
  top: 50%;
  left: 25%;
}


.belief-index {
  font-family: var(--ff-handwritten);
  font-size: var(--fs-handwritten-sm);
  color: #f3f7f450;
}

.about-hero-text-col-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  gap:20px;
}

@media screen and (width <= 480px) {
  .about-hero-text-col-right {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (width <= 480px) {
  .section-beliefs {
    display: flex;
    padding: 50px 25px;
    gap: 50px;
  }
  .belief-conent-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 25px;
  }

  .card1 {
    position: relative;
  }

  .belief-card {
    position: relative !important;
    width: 100%;
    top: auto !important;
    left: auto !important;
  }
}

