/* public/css/brand-hero-1.css — Stand-alone styles for the Brand hero (uses site theme vars) */

/* Section background matches site "section-dark-background" */
.hbrand-1 {
  color: var(--white-color-1);
  font-family: var(--identity-font);
  background-color: var(--section-dark-background-color);
  padding-top: 32px;
  padding-bottom: 0px;
  position: relative;
}

/* Header grid (anchors socials to top-right) */
.hbrand-head {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start
}

.hbrand-head-wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  justify-content: flex-start;
  align-items: center;
}

/* Logo circle */
.hbrand-logo-wrap {
  width: clamp(125px, 111.6667px + 3.3333vw, 150px);
  height: clamp(125px, 111.6667px + 3.3333vw, 150px);
  border-radius: 50%;
  background: var(--section-darkest-background-color);
  border: 1px solid var(--section-light-background-color);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hbrand-logo {
  width: 72.5%;
  height: 72.5%;
  object-fit: contain;
  display: block;
}

/* Titles */
.hbrand-titles {
  min-width: 0;
}

.hbrand-title {
  position: relative;
  margin: 0 0 8px 0;
  font-weight: var(--font-weight8);
  font-size: var(--ft-42-32);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white-color-1);
}

.hbrand-subtitle {
  margin: 0 0 12px 0;
  color: var(--grey-color-2);
  font-weight: var(--font-weight4);
  font-size: var(--ft-20-17);
  line-height: 1.35;
}

/* Rank badge */
.hbrand-actions {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.hbrand-actions {
  font-size: 18px;
}

/* Top-right socials bar */
.hbrand-socials-bar {
  position: absolute;
  top: 6px;
  right: 0;
}

.hbrand-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hbrand-socials .hbrand-social {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white-color-1);
  background: transparent;
  border: 1px solid var(--section-light-background-color);
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.hbrand-socials .hbrand-social:hover {
  transform: translateY(-1px);
  background: var(--card-color, var(--site-start-color));
  border-color: transparent;
  color: var(--white-color-1);
}

.hbrand-socials .hbrand-social:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--card-glow, rgba(0, 0, 0, 0));
}

.hbrand-socials .hbrand-social .hbrand-social-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Summary copy */
.hbrand-summary {
  margin-top: 40px;
  color: var(--grey-color-1);
  font-weight: 400;
  font-size: var(--ft-17-16);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 825px) {
  .hbrand-1 {
    padding-top: 24px;
  }

  /* Header grid (anchors socials to top-right) */
  .hbrand-head {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 16px;
  }

  .hbrand-head-wrapper {
    row-gap: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center
  }

  .hbrand-title {
    text-align: center;
    margin: 0 0 12px 0;
  }

  .hbrand-subtitle {
    text-align: center;
    margin: 0 0 16px 0;
  }


  .hbrand-actions {
    justify-content: center;
  }

  .hbrand-summary {
    margin-top: 32px;
  }

  /* move socials inline above the title on narrow screens */
  .hbrand-socials-bar {
    position: static;
    justify-self: end;
    margin-bottom: 10px;
  }
}



.hbrand-quick-links {
  margin-top: 24px;
}