/* =====================
   ABOUT SECTION
===================== */
.about-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

/* ===== TEAM SECTION ===== */
#team {
  background: linear-gradient(to bottom, #0b0b0b, #111);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* SINGLE IMAGE CONTAINER */
.team-single {
  max-width: 800px;
  margin: 40px auto 0;

  background: #161616;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;

  transition: 0.3s ease;
}

/* IMAGE */
.team-single img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* TEXT */
.team-text {
  padding: 20px;
}

.team-text h4 {
  margin-bottom: 5px;
}

.team-text p {
  color: #aaa;
  font-size: 14px;
}

/* HOVER */
.team-single:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
/* IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 32px;
}
.grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-text p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* BUTTON */
.about-text .btn {
  margin-top: 15px;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-img img {
    height: 300px;
  }
}