@import url("../components/config.css");
:root {
  --muted-line: #d9e3e3;
  --light-bg: #f8fbfb;
  --white: #ffffff;
}
.about-page {
  width: 100%;
  margin: 0 auto;
}

.container {
  width: min(1100px, 88%);
  margin: 0 auto;
}

/* Hero */
.page-hero {
      padding: 60px 0 14px;
  
}

.breadcrumb {
  font-size: var(--tiny-font-size);
  margin-bottom: 55px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 10px;
  color: #9aa8a8;
}

.breadcrumb strong {
  color: var(--primary-color);
}

.page-hero h1 {
  font-size: var(--super-title-font-size);
  line-height: 1;
  margin: 0;
  font-weight: 400;
  letter-spacing: -2px;
}

.title-line {
  width: 95px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 30px;
  margin-top: 28px;
}

/* Content */
.page-content {
  padding: 15px 0 90px;

  
}

.content-wrapper {
  padding-top: 65px;
  max-width: 1000px;
}

.content-wrapper p {
  font-size: var(--text-font-size);
  line-height: 1.65;
  margin: 0 auto 25px;

  /* verify it */
  font-weight: 300;
}

.content-wrapper p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 45px 0 35px;
  }

  .breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
  }

  .page-hero h1 {
    letter-spacing: -1px;
  }

  .content-wrapper {
    padding-top: 45px;
  }

  .content-wrapper p {
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .container {
    width: 90%;
  }

  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .breadcrumb span {
    margin: 0 4px;
  }
}
