.about-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.about-image-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-me-page .about-image-section img {
  object-fit: contain;
  width: 93%;
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 3.4375rem rgba(0, 0, 0, 0.25);
  margin-top: 0.5rem;
}
/* .about-image-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
} */
.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-badge-icon {
  font-size: var(--font-display);
  flex-shrink: 0;
}
.about-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-badge-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-xl);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.about-badge-text span {
  font-size: var(--font-s);
  color: var(--text-main);
  opacity: 0.8;
}
.about-text-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-text {
  font-size: var(--font-l);
  line-height: 1.8;
}
.about-text p {
  margin-bottom: 1.5rem;
}
.about-text-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-2xl);
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold-border-light);
  padding-bottom: 0.5rem;
}
.about-text-heading:first-child {
  margin-top: 0;
}
.highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.highlight-card {
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-left-color 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.highlight-card:hover {
  transform: translateX(0.3125rem);
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.08);
  border-left-color: var(--accent-dark);
}
.highlight-card-content {
  flex: 1;
}
.highlight-title {
  font-size: var(--font-2xl);
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.highlight-text {
  font-size: var(--font-m);
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.9;
  margin: 0;
}

/* Responsive - 1024px and below */
@media (max-width: 1024px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0;
  }

  .about-image-section {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: clamp(0.5rem, 2vw, 1.5rem) auto;
  }

  .about-header .section-subtitle {
    margin-bottom: 1rem;
  }

  .about-me-page .about-image-section img {
    width: clamp(12rem, 40vw, 20rem);
    margin: clamp(0.5rem, 2vw, 1.5rem) 0;
  }

  .about-header {
    margin-bottom: 0rem;
  }

  .about-badge {
    display: none;
  }

  .about-text-section {
    gap: 2rem;
  }

  .about-text {
    font-size: var(--font-m);
  }

  .about-text-heading {
    margin-top: 1.5rem;
  }

  .highlight-cards {
    margin-top: 2rem;
  }

  .highlight-card {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .about-header {
    margin-bottom: 2rem;
  }

  .about-me-page .about-image-section img {
    width: clamp(8rem, 50vw, 12rem);
  }

  .highlight-card {
    padding: 1.25rem;
    gap: 1rem;
  }
}
