/* ===== ABOUT PAGE — Services Two-Card Section ===== */

.about-services {
  padding: 48px 20px;
}

.about-services__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-services__header {
  text-align: center;
  margin-bottom: 40px;
}

.about-services__label {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #237a2e;
  margin-bottom: 8px;
}

.about-services__header h2 {
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

/* Cards grid */
.about-services__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-services__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.about-services__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.about-services__card-img {
  overflow: hidden;
}

.about-services__card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.about-services__card:hover .about-services__card-img img {
  transform: scale(1.03);
}

.about-services__card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-services__card-body h3 {
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.about-services__card-body p {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px;
  flex: 1;
}

/* Link styling */
.about-services__card-body .link-article {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1d4288;
  text-decoration: none;
  border: none;
  border-bottom: none;
  float: none;
  padding: 0;
  transition: gap 200ms ease, color 200ms ease;
}

.about-services__card-body .link-article:hover {
  gap: 10px;
  color: #3eb049;
}

.about-services__card-body .link-article img {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}

.about-services__card-body .link-article:hover img {
  transform: translateX(2px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px) {
  .about-services {
    padding-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .about-services__cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-services__card-img img {
    height: 260px;
  }

  .about-services__header h2 {
    font-size: 2rem;
  }

  .about-services {
    padding: 56px 40px 48px;
  }
}

@media (min-width: 992px) {
  .about-services {
    padding: 64px 40px 56px;
  }

  .about-services__header h2 {
    font-size: 2.25rem;
  }
}
