/* Responsive overrides for About page */

/* Mobile: <= 480px (aligns with Figma 375px layout) */
@media (max-width: 480px) {
  .our-story { background-color: #121212; }

  .our-story__container {
    max-width: 100%;
    padding: 60px 16px; /* reduce side padding from 151px to 16px */
    gap: 24px; /* tighter spacing between image and text */
  }

    .about-hero{
      display: none;
    }
    .why-choose-us{
      display: none;
    }
    .core-values{
      display: none;
    }

  .our-story__media {
    width: 100%;
    height: auto; /* let image define height */
  }

  .our-story__image {
    width: 100%;
    height: auto; /* keep aspect ratio on mobile */
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }

  .our-story__content { max-width: 100%; }

  .our-story__text {
    font-size: 14px; /* down from 24px on desktop */
    line-height: 1.7; /* improve readability on small screens */
    margin: 0 0 12px 0;
    color: #FFFFFF;
  }

  .our-story__text:last-child { margin-bottom: 0; }


.achievement-card{
  width: 100%;
  max-width: 343px;
  aspect-ratio: 343 / 519;
  height: auto;
  margin: 0 auto;
}


.achievement-text-group{
  width: 100%;
  max-width: 100%;
  height: auto;
  gap: 8px;
}

.achievement-wrapper .section-title{
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}

.achievement-icon{
  margin-bottom: 12px;
  width: 36px;
  height: auto;
}

.achievement-content{
  padding: 20px 16px;
  gap: 16px;
}

.achievement-text{
  font-size: 13px;
  line-height: 1.5;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.achievement-lines{
  margin-top: 8px;
}

/* Scale decorations for small screens to match Figma proportions */
.corner-decoration{
  width: 28px;
  height: 28px;
}
}