.hero-banner {
  height: 40svh;
}

.hero-content {
  padding-top: calc(35svh - 120px);
}

.trust-icon-symbol {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background-color: var(--color-primary-dark);
  top: 20px;
  margin: auto;
  padding: 6px;

  opacity: 0.9;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--shadow-lg), var(--shadow-glow); */
}

.trust-icon-symbol img {
  width: 30px;
  height: 30px;
}



.trust-icon-text {
  position: absolute;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background-color: var(--color-primary-dark);
  top: 20px;
  margin: auto;
  padding: 5px 15px;

  opacity: 0.8;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--shadow-lg), var(--shadow-glow); */
}

.trust-icon-text p {
  color: white;
}
.business-name {
  margin-bottom: 0;
}

.category {
  font-size: 0.8rem;
  color: var(--color-text);
  text-transform: none;
}

.tagline {
  font-size: 1rem;
  font-weight: 500;
  max-width: 320px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.positioning {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.6rem;
}
.prime-person,
.value-text {
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding: 0.25rem;
  transition: all 0.3s ease;
}

.prime-person:hover {
  border-bottom: 1px solid var(--color-primary);
}

.prime-person span {
  font-weight: normal;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.section-title,
.testimonial-block
 {
  margin-bottom: auto;
  margin-top: auto;
}

.testimonial-block {
  padding: 1rem;
}

.section-title {
  /* text-align: center; */
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.key-persons {
  display: flex;
  flex-direction: column;

  align-items: center;
}

.key-persons a {
  /* text-align: center; */
  padding: 0.25rem 0.5rem;
  color: var(--color-primary-dark);
  margin: 0;
  width: 100%;
  animation: fadeInUp 0.8s ease forwards;
}
.key-persons a span {
  color: var(--color-primary);
}

.value-text strong {
  color: inherit;
}

.testimonial-block {
    margin-bottom: 0;
}
.value-text {
  margin: 0;
  padding: 0.25rem 0.5rem;
  color: var(--color-text);
  position: relative; /* Required for the pseudo-element to stay inside */
  padding-left: 20px; /* Optional: space for the "border" */
}
.value-text::before {
  content: "›"; /* Change symbol to "→", "▶" or "›" if preferred */
  position: absolute;
  left: 0px; /* Position it to the left of your text */
  top: 50%;
  transform: translateY(-50%); /* Centers it perfectly */
  color: var(--color-primary);
  font-size: 1.2em;
}

.affiliation {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.7rem;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: auto;
    
}

.affiliation-text {
    border-radius: 10px;
    padding: 0.25rem 0.75rem;
    color: white;
    background-color: var(--color-primary);
  cursor: pointer;
    
}


.registration-text {
  background-color: var(--color-primary-dark);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .tagline {
    max-width: 400px;
  }
}

@media (max-width: 390px) {
  .positioning {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4rem;
  }
}
