/* =========================================================
   Components
========================================================= */
.about-message__grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

.about-message__text p {
  line-height: 2;
}

.about-message__text p:first-child {
  margin-top: 0;
}

.about-message__text p+p {
  margin-top: 18px;
}

.about-message__portrait {
  margin: 0;
  width: 192px;
  height: 192px;
  background: #d9d9d9;
  overflow: hidden;
}

.about-message__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-message__name {
  margin-top: 10px;
}

.about-message__name .position {
  font-size: 14px;
}

.about-message__name .name {
  font-weight: 700;
}

.about-concept {
  margin-top: 72px;
}

.about-strengths {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 350px);
  gap: 42px 44px;
  justify-content: center;
}

.about-strength-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  min-height: 357px;
  position: relative;
}

.about-strength-card__no {
  position: absolute;
  left: 26px;
  top: 18px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.about-strength-card__icon {
  width: 80px;
  height: 80px;
  margin: 52px auto 14px;
}

.about-strength-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-strength-card__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.about-strength-card__text {
  margin-top: 14px;
}

.about-thoughts {
  margin: 0 auto 80px;
  position: relative;
  padding: 0 var(--gutter);
  max-width: 1200px;
}

.about-thoughts__banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.about-thoughts__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thoughts__inner {
  padding: 56px 0 0;
}

.about-banner {
  border-radius: 0;
  overflow: hidden;
  height: 35vw;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 40px;
}

.about-company {
  margin-top: 74px;
}

.about-table {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-row:first-child {
  border-top: 0;
}

.about-key {
  background: var(--brand-red);
  color: var(--offwhite);
  font-weight: 700;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-val {
  background: #fff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
}

.about-locations {
  margin-top: 80px;
}

.about-locations__list {
  margin-top: 22px;
  display: grid;
  gap: 26px;
}

.about-location__name {
  margin: 0;
  font-size: 32px;
  line-height: 45px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
}

.about-location__label {
  font-size: 24px;
  color: var(--brand-red);
}

.about-location__dept {
  font-size: 16px;
  font-weight: 400;
}

.about-location__addr {
  margin-top: 10px;
}

.map {
  margin-top: 26px;
}

/* =========================================================
   Responsive styles
========================================================= */

@media (max-width: 991px) {

  .about-concept,
  .about-company,
  .about-section-title--spaced,
  .about-locations {
    margin-top: 40px;
  }

  .about-thoughts__inner {
    padding-top: 0;
  }

  .about-location__addr {
    margin-bottom: 0;
  }
}

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

  .about-message__sign {
    display: grid;
    justify-items: center;
  }

  .about-message__text p,
  .about-lead,
  .about-strength-card__text,
  .about-location__addr {
    font-size: 16px;
    line-height: 2;
  }

  .about-strengths {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-strength-card {
    min-height: auto;
    padding: 5px;
  }

  .about-strength-card__no {
    margin-top: 0;
    line-height: 1;
  }

  .about-strength-card__title {
    font-size: 16px;
    font-feature-settings: "palt" 1;
    white-space: nowrap;
  }

  .about-strength-card__text {
    margin-bottom: 0;
    line-height: normal;
    text-align: justify;
  }

  .about-strength-card__icon  {
    width: 60px;
    height: 60px;
  }

  .about-thoughts {
    padding-top: 40px;
  }

  .about-thoughts__banner {
    height: 260px;
  }

  .about-thoughts__tiles {
    grid-template-columns: 1fr 1fr;
  }

  .about-thoughts__tile--narrow {
    grid-column: 1 / -1;
  }

  .about-row {
    grid-template-columns: 1fr;
  }

  .about-key {
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    line-height: 26px;
    padding: 14px 16px;
  }

  .about-val {
    font-size: 16px;
    line-height: 26px;
    padding: 14px 16px;
  }

  .about-location__name {
    font-size: 24px;
    line-height: 34px;
  }

  .map iframe {
    max-width: 100%;
    height: auto;
  }
}