/* ------------------------------------------------------ */
/* ABOUT PAGE — MODERN EDITORIAL LAYOUT                   */
/* ------------------------------------------------------ */

/* MAIN WRAPPER */
.about-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 140px 24px 120px;
  background: #ffffff;
  color: #000000;
}

/* EYEBROW LABEL */
.about-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 24px;
}

/* TITLE */
.about-title {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
  color: #000;
}

/* BODY TEXT */
.about-body {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 60px;
}

/* DIVIDER */
.about-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 60px 0;
}

/* LINKS SECTION */
.about-links h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #000;
}

.about-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-links a {
  font-size: 16px;
  text-decoration: none;
  color: #000;
  position: relative;
  padding-bottom: 2px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.about-links a:hover {
  opacity: 1;
}

.about-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.25s ease;
}

.about-links a:hover::after {
  width: 100%;
}

/* ------------------------------------------------------ */
/* RESPONSIVE                                              */
/* ------------------------------------------------------ */

@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }
  .about-body {
    font-size: 18px;
  }
}
