/**
 * HALINK DV04 - Base Utilities
 */
.hl-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

@media (min-width: 992px) {
  .hl-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.hl-section-title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.hl-subtitle {
  display: inline-block;
  color: var(--hl-green);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.hl-title {
  color: var(--hl-navy);
  font-weight: 800;
  font-size: 33.75px;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .hl-title {
    font-size: 40.5px;
  }
}

.hl-card {
  background: var(--hl-card-bg);
  border: 1px solid var(--hl-border-color);
  border-radius: var(--hl-radius-lg);
  box-shadow: var(--hl-shadow-sm);
  transition: var(--hl-transition);
}

.hl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 14.62px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--hl-radius-pill);
  transition: var(--hl-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.hl-btn-primary {
  background-color: var(--hl-navy);
  color: #ffffff !important;
}

.hl-btn-primary:hover {
  background-color: var(--hl-green);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hl-btn-green {
  background-color: var(--hl-green);
  color: #ffffff !important;
}

.hl-btn-green:hover {
  background-color: var(--hl-green-hover);
  color: #ffffff !important;
}

.hl-btn-navy {
  background-color: var(--hl-navy);
  color: #ffffff !important;
}

.hl-btn-navy:hover {
  background-color: var(--hl-gold);
  color: var(--hl-navy) !important;
}

.hl-btn-outline {
  background: transparent;
  border: 2px solid var(--hl-navy);
  color: var(--hl-navy) !important;
}

.hl-btn-outline:hover {
  background: var(--hl-navy);
  color: #ffffff !important;
}

.hl-badge-sale {
  background: #e11d48;
  color: #fff;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11.25px;
  font-weight: 800;
  line-height: 1;
}

.hl-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--hl-radius-md);
  background: rgba(0, 168, 89, 0.1);
  color: var(--hl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22.5px;
}
