/* ==========================================================================
   ABOUT SECTION ONLY (about.css)
   ========================================================================== */

.about__container {
  row-gap: 2.5rem;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .about__container {
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 3.5rem;
    text-align: left;
  }
}

/* --- Image Styling --- */
.about__img {
  justify-self: center;
}

.about__img-wrapper {
  position: relative;
  width: 240px;
  height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(14, 36, 49, 0.12);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
  .about__img-wrapper {
    width: 280px;
    height: 330px;
  }
}

.about__img-wrapper:hover {
  transform: translateY(-5px);
}

.about__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* --- Content & Subtitle --- */
.about__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--second-color);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.about__text {
  color: hsl(var(--hue-color), 20%, 35%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* --- Highlights List --- */
.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--second-color);
  font-size: var(--normal-font-size);
  line-height: 1.4;
}

.about__icon {
  font-size: 1.35rem;
  color: var(--first-color);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* --- Quick Info / Stats Grid --- */
.about__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.about__info-box {
  background-color: #fff;
  padding: 0.85rem 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(14, 36, 49, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about__info-title {
  display: block;
  font-size: var(--smaller-font-size);
  color: hsl(var(--hue-color), 20%, 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.about__info-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--second-color);
}
