.hns-contact-info {
  --hns-contact-bg: #fffcf5;
  --hns-contact-section-top: 62px;
  --hns-contact-section-bottom: 98px;
  --hns-contact-heading-gap: 55px;
  --hns-contact-grid-gap: 44px;
  --hns-contact-icon-size: 60px;
  --hns-contact-icon-gap: 18px;
  --hns-contact-title-size: clamp(20px, 1.45vw, 28px);
  --hns-contact-title-line: 1.18;
  --hns-contact-subtext-size: var(--hns-fs-body-lg, 15px);
  --hns-contact-button-width: 360px;
  --hns-contact-button-height: 54px;
  --hns-contact-button-gap: 18px;
  --hns-contact-heading-color: #1f1d1a;
  --hns-contact-muted: #817f7a;
  --hns-contact-gold: #da9e1d;
  --hns-contact-gold-border: #dfb761;
  --hns-contact-blue: #0060ff;
  --hns-contact-blue-border: #9fbbe3;
  --hns-contact-ink: #373636;
  --hns-contact-ink-border: #969591;

  width: 100%;
  background: var(--hns-contact-bg);
  color: var(--hns-contact-ink);
}

.hns-contact-info *,
.hns-contact-info *::before,
.hns-contact-info *::after {
  box-sizing: border-box;
}

.hns-contact-info--section {
  padding-top: var(--hns-contact-section-top);
  padding-bottom: var(--hns-contact-section-bottom);
}

.hns-contact-info--element {
  padding: 0;
}

.hns-contact-info__inner {
  margin: 0 auto;
}

.hns-contact-info--element .hns-contact-info__inner {
  width: 100%;
  max-width: none;
}

.hns-contact-info__heading.hns-page-heading {
  margin: 0 0 var(--hns-contact-heading-gap);
  color: var(--hns-contact-heading-color);
  font-family: var(--hns-font-display, "Playfair Display", Georgia, "Times New Roman", serif);
  font-size: var(--hns-fs-section-heading, clamp(28px, 2.4vw, 40px));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.hns-contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hns-contact-grid-gap);
  align-items: start;
}

.hns-contact-info__item {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  color: var(--hns-contact-ink);
  font-family: var(--hns-font-sans, "Inter", Arial, Helvetica, sans-serif);
  text-align: center;
}

.hns-contact-info__icon {
  display: block;
  width: var(--hns-contact-icon-size);
  height: var(--hns-contact-icon-size);
  margin: 0 0 var(--hns-contact-icon-gap);
  object-fit: contain;
}

.hns-contact-info__title {
  margin: 0;
  color: currentColor;
  font-family: var(--hns-font-sans, "Inter", Arial, Helvetica, sans-serif);
  font-size: var(--hns-contact-title-size);
  font-weight: 700;
  line-height: var(--hns-contact-title-line);
  letter-spacing: 0;
}

.hns-contact-info__subtext {
  margin: 6px 0 0;
  color: var(--hns-contact-muted);
  font-family: var(--hns-font-sans, "Inter", Arial, Helvetica, sans-serif);
  font-size: var(--hns-contact-subtext-size);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.hns-contact-info__button,
a.hns-contact-info__button {
  display: inline-flex;
  width: min(100%, var(--hns-contact-button-width));
  min-height: var(--hns-contact-button-height);
  align-items: center;
  justify-content: center;
  margin: var(--hns-contact-button-gap) 0 0;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  appearance: none;
  background: transparent !important;
  box-shadow: none !important;
  color: currentColor !important;
  font-family: var(--hns-font-sans, "Inter", Arial, Helvetica, sans-serif);
  font-size: var(--hns-fs-button, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0 !important;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
}

.hns-contact-info__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.hns-contact-info__item--phone {
  color: var(--hns-contact-gold);
}

.hns-contact-info__item--phone .hns-contact-info__button {
  border-color: var(--hns-contact-gold-border);
}

.hns-contact-info__item--zalo {
  color: var(--hns-contact-blue);
}

.hns-contact-info__item--zalo .hns-contact-info__button {
  border-color: var(--hns-contact-blue-border);
}

.hns-contact-info__item--email {
  color: var(--hns-contact-ink);
}

.hns-contact-info__item--email .hns-contact-info__button {
  border-color: var(--hns-contact-ink-border);
}

@media (max-width: 1024px) {
  .hns-contact-info {
    --hns-contact-title-size: clamp(18px, 2.5vw, 24px);
    --hns-contact-button-width: 100%;
    --hns-contact-button-height: 46px;
  }
}

@media (max-width: 900px) {
  .hns-contact-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }
}

@media (max-width: 640px) {
  .hns-contact-info {
    --hns-contact-section-top: 40px;
    --hns-contact-section-bottom: 52px;
    --hns-contact-heading-gap: 28px;
    --hns-contact-grid-gap: 30px;
    --hns-contact-icon-size: 48px;
    --hns-contact-icon-gap: 12px;
    --hns-contact-title-size: var(--hns-fs-card-title-lg, 20px);
    --hns-contact-subtext-size: var(--hns-fs-body-sm, 13px);
    --hns-contact-button-height: 40px;
    --hns-contact-button-gap: 14px;
  }

  .hns-contact-info__heading.hns-page-heading {
    font-size: var(--hns-fs-section-heading, 24px);
    text-align: center;
  }

  .hns-contact-info__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
