/* About — About 360. Scoped to .hk-a360; reuses theme fonts (FreightBig Pro / Now). */
.hk-a360 {
  --hk-font-headline: "FreightBig Pro", Georgia, "Times New Roman", serif;
  --hk-font-body:
    "Now", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.hk-a360,
.hk-a360 * {
  box-sizing: border-box;
}
.hk-a360 {
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: clamp(60px, 4.166vw, 80px);
  padding-bottom: clamp(60px, 4.166vw, 80px);
}
.hk-a360__wrap {
  max-width: 1441px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.hk-a360__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.hk-a360__cell {
  display: block;
}
.hk-a360__cell--wide {
  grid-column: 1 / -1;
}
.hk-a360__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  aspect-ratio: 1/1;
}
.hk-a360__cell--wide .hk-a360__img {
  aspect-ratio: 16/10;
}
.hk-a360__img--ph {
  background: radial-gradient(
    120% 120% at 40% 20%,
    #6b4a2a,
    #2a1c10 70%,
    #140d07
  );
}
.hk-a360__title {
  font-family: var(--hk-font-headline) !important;
  font-weight: 400 !important;
  font-size: 49px !important;
  line-height: 54px !important;
  letter-spacing: 0;
  color: #09334a;
  margin: 0 0 25px;
}
.hk-a360__lead {
  font-family: var(--hk-font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #09334a;
  margin: 0 0 24px;
}
.hk-a360__lead p {
  margin: 0;
}
.hk-a360__body {
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #09334a;
}
.hk-a360__body p {
  margin: 0 0 24px;
}
.hk-a360__body p:last-child {
  margin-bottom: 0;
}
.hk-a360__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hk-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #09334a;
  text-decoration: none;
  margin-top: 25px;
}
.hk-a360__link:hover {
  color: #8c752c;
}
.hk-a360__link svg {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .hk-a360__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hk-a360__title {
    font-size: 38px !important;
    line-height: 44px !important;
  }
  .hk-a360__lead,
  .hk-a360__body {
    font-size: 18px;
    line-height: 28px;
  }
}
