/* About — Three platforms. Scoped to .hk-p3; reuses theme fonts (FreightBig Pro / Now). */
.hk-p3 {
  --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-p3,
.hk-p3 * {
  box-sizing: border-box;
}
.hk-p3 {
  position: relative;
  background: #09334a center/cover no-repeat;
  overflow: hidden;
  padding-top: clamp(60px, 4.166vw, 80px);
  padding-bottom: clamp(60px, 4.166vw, 80px);
}
.hk-p3__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hk-p3__wrap {
  position: relative;
  z-index: 1;
  max-width: 1441px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 73px);
}
.hk-p3__label {
  display: block;
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 5px;
}
.hk-p3__title {
  font-family: var(--hk-font-headline) !important;
  font-weight: 400 !important;
  font-size: 49px !important;
  line-height: 54px !important;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 30px;
}
.hk-p3__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.hk-p3__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 3px;
  padding: 25px 30px;
}
.hk-p3__media {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.hk-p3__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hk-p3__img--ph {
  background: radial-gradient(
    120% 120% at 40% 20%,
    #6b4a2a,
    #2a1c10 70%,
    #140d07
  );
}
.hk-p3__ctitle {
  font-family: var(--hk-font-body);
  font-weight: 500;
  font-size: 25px;
  line-height: 32px;
  color: #fff;
  margin: 0;
}
.hk-p3__ctext {
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0;
  flex: 1 0 auto;
}
.hk-p3__ctext p {
  margin: 0;
}
.hk-p3__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--hk-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.hk-p3__link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hk-p3__link:hover {
  opacity: 0.85;
}
.hk-p3__link svg {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .hk-p3__cards {
    grid-template-columns: 1fr;
  }
  .hk-p3__title {
    font-size: 38px !important;
    line-height: 44px !important;
  }
}
