/**
 * PCTechComVn — About & Team CSS
 * Child Theme CSS Module
 * Version: 1.0.0 (Sprint 5)
 *
 * About section: 2-col grid (image with badge + content with features).
 * JS: scroll-reveal.js (Sprint 0)
 */

/* ═══════════════════════════════════════════════
   1. ABOUT GRID — 2 columns
   ═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}


/* ═══════════════════════════════════════════════
   2. ABOUT IMAGE & BADGE
   ═══════════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 2;
}


/* ═══════════════════════════════════════════════
   3. ABOUT CONTENT
   ═══════════════════════════════════════════════ */
.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--gray-500);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   4. ABOUT FEATURES LIST
   ═══════════════════════════════════════════════ */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-feat:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-feat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.about-feat span {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-img-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .about-img-badge {
    bottom: 10px;
    left: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
