/* About Us page — complements landing Tailwind + footer.css */

.about-page {
  background: #fff;
  color: #171717;
}

.about-hero {
  background: #fefbf7;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5a623;
}

@media (min-width: 480px) {
  .about-breadcrumb {
    font-size: 12px;
  }
}

.about-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.about-breadcrumb a:hover {
  color: #e09410;
}

.about-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.about-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: #ffb028;
}

.about-quote {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid #ffb028;
  border-radius: 0 14px 14px 0;
  background: #fff6e5;
  color: #404040;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.55;
}

.about-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .about-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .about-impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 16px;
}

@media (min-width: 768px) {
  .about-impact-item {
    padding: 12px 20px;
    border-right: 1px solid #e5e7eb;
  }

  .about-impact-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (min-width: 1024px) {
  .about-impact-item {
    border-right: 1px solid #e5e7eb;
  }

  .about-impact-item:nth-child(2n) {
    border-right: 1px solid #e5e7eb;
  }

  .about-impact-item:last-child {
    border-right: 0;
  }
}

.about-impact-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
}

.about-impact-icon--customers {
  background: #ffe8cc;
  color: #f5a623;
}

.about-impact-icon--stores {
  background: #e8f8ef;
  color: #22a06b;
}

.about-impact-icon--deliveries {
  background: #ffe4e6;
  color: #e11d48;
}

.about-impact-icon--rating {
  background: #e8f1ff;
  color: #3b82f6;
}

.about-impact-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-family-section {
  background: #FEEED6;
}

.about-family__media {
  position: relative;
}

.about-family__dots {
  position: absolute;
  top: -10px;
  right: -6px;
  display: flex;
  gap: 6px;
  z-index: 1;
}

.about-family__dots span {
  width: 18px;
  height: 18px;
  border-radius: 999px 999px 0 0;
  background: #fff;
  opacity: 0.95;
}

.about-offer-card__media {
  position: relative;
  margin-bottom: 28px;
}

.about-offer-card__media > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 24px;
  background: #fefbf7;
}

.about-offer-card__badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transform: translateX(-50%);
  color: #ffb028;
}

.about-offer-card__badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-rich-heading p {
  display: inline;
  margin: 0;
}

.about-rich-text p:first-child {
  margin-top: 0;
}

.about-quote p {
  display: inline;
  margin: 0;
}
