/* AFTERTOUGE — About section mobile (≤480px)
   File: /styles/about-section.css
   Scope: only tweaks layout/typography on small screens; loaded after about.css
*/

/* Outer spacing */
.about-pro .about-wrap{
  padding-left: 12px;
  padding-right: 12px;
}

/* Headline + paragraph */
.about-pro .about-head h3{
  font-size: clamp(18px, 5.5vw, 22px);
  line-height: 1.25;
  margin-bottom: 8px;
}
.about-pro .about-head p{
  font-size: clamp(13px, 3.8vw, 15px);
  line-height: 1.6;
  margin: 0;
}

/* Category chips */
.about-pro .about-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.about-pro .about-tags .tag{
  font-size: 12px;
  padding: 6px 10px;
  line-height: 1;
}

/* Feature cards → single column with compact spacing */
.about-pro .about-grid{
  display: grid;
  grid-template-columns: 1fr;        /* stack */
  gap: 12px;
  margin-top: 16px;
}
.about-pro .about-card{
  padding: 14px;
}
.about-pro .about-card__icon{
  width: 24px; height: 24px;
  margin-bottom: 8px;
}
.about-pro .about-card h4{
  font-size: 16px;
  margin: 6px 0 6px;
}
.about-pro .about-card p{
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 8px;
}
.about-pro .about-card .about-list{
  margin: 0;
  padding-left: 18px;               /* keep bullets but tighter */
}
.about-pro .about-card .about-list li{
  font-size: 13px;
  line-height: 1.5;
  margin: 4px 0;
}

/* Stats bar → compact 2×2 grid, centered text */
.about-pro .about-bar{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  gap: 10px;
  margin-top: 14px;
  text-align: center;
}
.about-pro .about-stat{
  padding: 10px 6px;
}
.about-pro .about-stat strong{
  display: block;
  font-size: 14px;
  line-height: 1.2;
}
.about-pro .about-stat span{
  display: block;
  font-size: 12px;
  color: var(--muted, #667085);
  line-height: 1.35;
}

/* Safety: avoid horizontal scroll from long words */
#about, #about *{
  overflow-wrap: anywhere;
  word-break: break-word;
}
