.page-hero {
  position: relative;
  background: url("/assets/mobile-mechanic-hero.png") center/cover;
  color: #fff;
  padding: 110px 0 95px;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  font: 56px/1.02 Oswald, sans-serif;
  text-transform: uppercase;
  max-width: 800px;
  margin: 15px 0;
  letter-spacing: -0.8px;
}
.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #d7d9dc;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 25px;
}
.page-body {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 76px;
  padding: 84px 0;
}
.aeo-section {
  margin-bottom: 50px;
}
.aeo-section:last-child {
  margin-bottom: 0;
}
.aeo-section h2 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0 0 16px;
  color: var(--ink);
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--red);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.aeo-section h2 em {
  color: var(--red);
  font-style: normal;
}
.aeo-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #2d3135;
  margin: 0;
  max-width: 680px;
}

/* Sidebar Styling */
.page-body aside {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.page-body aside h3 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 20px;
  color: var(--ink);
}
.page-body aside h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}
.page-body aside ul {
  list-style: none;
  padding: 20px;
  margin: 0 0 30px;
  background: #f7f7f5;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.page-body aside li {
  margin: 15px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.page-body aside li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.page-body aside a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.page-body aside a:hover {
  color: var(--red);
}
.page-body aside a::after {
  content: "→";
  color: var(--red);
  font-size: 16px;
  transition: transform 0.2s;
}
.page-body aside a:hover::after {
  transform: translateX(4px);
}
.service-area-box {
  background: var(--cream);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-top: 15px;
}
.service-area-box p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* Mobile Responsiveness */
@media(max-width:760px) {
  .page-nav {
    display: none;
  }
  .page-hero {
    padding: 70px 0;
  }
  .page-hero h1 {
    font-size: 42px;
  }
  .page-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }
  .aeo-section {
    margin-bottom: 35px;
  }
  .aeo-section h2 {
    font-size: 26px;
    padding-left: 15px;
  }
  .page-body aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 35px 0 0;
  }
  .service-area-box {
    padding: 16px;
  }
}
