/* About Page */
.about-me {
  padding: 32px 0 48px;
}

.about-hero {
  margin-bottom: 24px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #d8e7fb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.about-hero-text h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #17324d;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b66d6;
}

.hero-summary {
  margin: 0;
  color: #334155;
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 900px;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.focus-tags span {
  background: #ffffff;
  color: #0b66d6;
  border: 1px solid #cfe0f8;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-description {
  display: grid;
  gap: 22px;
}

.about-card {
  padding: 24px 26px;
  border: 1px solid #dbe3ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.section-title {
  margin: 0 0 16px;
  color: #17324d;
  font-size: 1.4rem;
  line-height: 1.2;
}

.about-card p {
  margin-bottom: 16px;
  color: #334155;
  line-height: 1.8;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 20px 22px;
  border: 1px solid #dbe3ec;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: #17324d;
}

.info-card ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.info-card li {
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.7;
}

.info-card li:last-child {
  margin-bottom: 0;
}

.closing-note {
  padding: 18px 20px;
  border-left: 4px solid #0b66d6;
  background: #eef5ff;
  border-radius: 12px;
  color: #24415f;
}

.closing-note p {
  margin: 0;
  line-height: 1.75;
}

.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-bottom: 20px;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-card,
  .info-card {
    padding: 20px 18px;
  }

  .about-me {
    padding: 24px 0 36px;
  }
}
