/* ==========================================================================
   Events microsite — shared design system
   Scoped under .bh26-page so nothing here leaks into shared header/footer
   or other templates. First consumer: Black Hat USA 2026 landing page.

   Palette is deliberately pulled from tokens already used on the CertiNext
   US pages (files/certinext/css/common/variable.css, files/css/certinext-us.css)
   rather than invented: #F26739 is the eMudhra/CertiNext brand orange
   (confirmed via scripts/replace-brand-orange-with-blue.js), --secondary-050
   /#FFF8F1 + --secondary-100/#FEECDC are the light-peach section tokens,
   --neutral-900/#111928 is the ink used for the one dark emphasis section.

   Flat, enterprise-SaaS surface language throughout: borders + background
   contrast + spacing instead of box-shadow. The only elevation cue on
   hover is a small translateY lift — no drop shadows.
   ========================================================================== */

.bh26-page {
  --bh26-white: #ffffff;
  --bh26-cream: #fff8f1;
  --bh26-peach-border: #feecdc;
  --bh26-grey-bg: #f8f9fa;
  --bh26-navy: #0e1526;
  --bh26-navy-soft: #16203a;
  --bh26-ink: #111928;
  --bh26-ink-soft: #4b5563;
  --bh26-ink-muted: #6b7280;
  --bh26-orange: #f26739;
  --bh26-orange-deep: #ff5a1f;
  --bh26-orange-light: #ffb08a;
  --bh26-green: #47b17e;
  --bh26-border: #eceef1;
  --bh26-radius-lg: 18px;
  --bh26-radius-md: 16px;
  --bh26-radius-sm: 10px;
  --bh26-gradient-orange: linear-gradient(135deg, var(--bh26-orange-deep) 0%, var(--bh26-orange) 100%);
  font-family: var(--DMSans, "DM Sans", sans-serif);
  background: var(--bh26-white);
  color: var(--bh26-ink);
  overflow-x: hidden;
}

.bh26-page section {
  position: relative;
}

.bh26-page h1,
.bh26-page h2,
.bh26-page h3,
.bh26-page h4,
.bh26-page p {
  margin: 0;
}

.bh26-page .container {
  max-width: 1240px;
}

/* CertiNext product sub-nav background — Black Hat page only. Scoped via
   the body.bh26-page selector rather than editing the shared
   partials/certinext/header-en-us.ejs markup/CSS directly, so every other
   page that includes that same partial (index-en-us, about-us-en-us,
   security-compliance, etc.) keeps its default header background. */
body.bh26-page .ems-navheader {
  background: var(--secondary-050) !important;
}

.bh26-section {
  padding: 80px 0;
}

.bh26-section--form { padding: 56px 0; }

.bh26-section--white { background: var(--bh26-white); }
.bh26-section--cream { background: var(--bh26-cream); }
.bh26-section--grey { background: var(--bh26-grey-bg); }
.bh26-section--navy { background: var(--bh26-navy); color: #fff; }

.bh26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bh26-orange);
  background: var(--bh26-cream);
  border: 1px solid var(--bh26-peach-border);
  padding: 6px 14px;
  border-radius: 100px;
}

.bh26-section--navy .bh26-eyebrow {
  color: var(--bh26-orange-light);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.bh26-section-head {
  max-width: 700px;
  margin: 0 auto 40px !important;
  text-align: center;
}

.bh26-section-head .bh26-eyebrow {
  margin-bottom: 16px;
}

.bh26-section-title {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--bh26-ink);
  margin-top: 12px !important;
}

.bh26-section--navy .bh26-section-title {
  color: #fff;
}

.bh26-section-title .bh26-accent {
  color: var(--bh26-orange);
}

.bh26-section-sub {
  font-size: 16.5px;
  color: var(--bh26-ink-soft);
  margin-top: 12px !important;
  line-height: 1.65;
}

.bh26-section--navy .bh26-section-sub {
  color: #b7bfd3;
}

/* Subtle, enterprise-appropriate entrance animation only. */
.bh26-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bh26-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bh26-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Buttons: this page intentionally does NOT define its own — it reuses  */
/* the sitewide .ems-btn / .ems-btn--info (main.css) so every CTA on this */
/* page matches the rest of the CertiNext site exactly: bg, border,      */
/* hover, and 8px border-radius all come from that shared component.     */
/* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- */
/* Hero — full-bleed Las Vegas skyline, left content, white fade          */
/* ---------------------------------------------------------------------- */

.bh26-hero {
  position: relative;
  overflow: hidden;
  background: var(--bh26-white);
  min-height: 440px;
  display: flex;
  align-items: flex-start;
  padding: 70px 0px 50px;
}

.bh26-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  z-index: 0;
}

.bh26-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 0%;
  display: block;
}

.bh26-hero__media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #fff 0%,
    #fff 8%,
    rgba(255, 255, 255, 0.78) 20%,
    rgb(255 255 255 / 45%) 40%,
    rgba(255, 255, 255, 0) 58%);
}

.bh26-hero .container {
  position: relative;
  z-index: 1;
}

.bh26-hero__content {
  max-width: 660px;
  padding-inline: 2.1rem;
}

.bh26-hero__logo {
  display: block;
  width: clamp(220px, 24vw, 320px);
  height: auto;
  margin-top: 6px;
}

.bh26-hero__eyebrow {
  margin-bottom: 22px !important;
}

.bh26-hero__title {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--bh26-ink);
}

/* Nods to the Black Hat wordmark's heavy, condensed display type —
   an original treatment on our own text, not the event's logo mark. */
.bh26-hero__title span {
  font-family: 'Archivo Black', var(--DMSans, sans-serif);
  color: var(--bh26-orange);
  letter-spacing: -0.01em;
}

.bh26-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px !important;
}

.bh26-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bh26-ink);
}

.bh26-hero__meta-item svg {
  color: var(--bh26-orange);
  flex-shrink: 0;
}

/* Highlighted booth-number callout, reused inline across the page. */
.bh26-booth-badge {
  display: inline-flex;
  align-items: center;
  font-weight: normal;
  color: #fff;
  background: var(--bh26-gradient-orange);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.85em;
  white-space: nowrap;
}

.bh26-section--navy .bh26-booth-badge {
  color: #fff;
}

/* Black Hat "thank you" page — cloned from views/pages/thank-you.ejs
   (checkout-section/thank-wraper/main-head/thankyou-desc from case-study.css)
   with a CertiNext-branded action row underneath. Self-contained: remove
   this block, the view file, the route-map entry, and the redirect target
   in events.js after the event, with zero effect on any other page. */
.bh26-thankyou-section {
  min-height: 56vh;
  display: flex;
  align-items: center;
}

.bh26-thankyou__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bh26-hero__desc {
  font-size: 16.25px;
  color: var(--bh26-ink-soft);
  margin-top: 20px !important;
  line-height: 1.65;
  max-width: 100%;
}

.bh26-hero__ctas {
  margin-top: 25px !important;
}

/* ---------------------------------------------------------------------- */
/* Form section — "Reserve Your Meeting"                                  */
/* ---------------------------------------------------------------------- */

.bh26-form-section__row {
  align-items: center;
}

.bh26-form-copy__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bh26-form-copy__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--bh26-ink);
}

.bh26-form-copy__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bh26-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bh26-lead-card {
  background: #fff;
  border: 1px solid var(--bh26-border);
  border-radius: var(--bh26-radius-md);
  padding: 30px;
}

.bh26-lead-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bh26-ink);
}

.bh26-lead-card__sub {
  font-size: 14px;
  color: var(--bh26-ink-muted);
  margin-top: 6px !important;
}

/* Custom-styled form — submits via fetch() to /api/blackhat-register, which
   forwards to HubSpot (routes/api.js), so submissions still land in HubSpot
   for notifications/workflows while the UI stays on-brand. Same approach as
   the Media Contacts form (files/js/media-contacts-form.js -> /api/media-contact). */
.bh26-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bh26-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bh26-field {
  position: relative;
  margin-bottom: 1rem;
}

.bh26-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bh26-ink-soft);
  margin-bottom: 6px !important;
}

.bh26-field .bh26-req {
  color: var(--bh26-orange);
}

.bh26-field input,
.bh26-field textarea {
  width: 100%;
  background: var(--bh26-grey-bg);
  border: 1px solid #e5e7eb;
  border-radius: var(--bh26-radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--bh26-ink);
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bh26-field textarea {
  min-height: 72px;
  resize: vertical;
}

.bh26-field input:focus,
.bh26-field textarea:focus {
  outline: none;
  border-color: var(--bh26-orange);
  background: #fff;
}

.bh26-field.has-error input,
.bh26-field.has-error textarea {
  border-color: #e0473f;
}

.bh26-field__error {
  display: none;
  font-size: 12px;
  color: #e0473f;
  margin-top: 4px;
}

.bh26-field.has-error .bh26-field__error {
  display: block;
}

/* Honeypot — off-screen, not display:none, per lib/form-security.js so bot
   autofill still targets it while real users never see or reach it. */
.bh26-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Phone field — searchable country-code dropdown via the sitewide
   PhoneValidator module (files/js/phone-validation.js -> intl-tel-input),
   the same implementation used on /contact-us. Scoped overrides only. */

.bh26-phone-wrap .iti {
  width: 100%;
  display: block;
}

.bh26-phone-wrap .iti__tel-input {
  width: 100%;
  background: var(--bh26-grey-bg);
  border: 1px solid #e5e7eb;
  border-radius: var(--bh26-radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--bh26-ink);
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bh26-phone-wrap .iti__tel-input:focus {
  outline: none;
  border-color: var(--bh26-orange);
  background: #fff;
}

.bh26-phone-wrap .iti--separate-dial-code .iti__selected-flag {
  background: #eef0f2;
  border-right: 1px solid #e5e7eb;
  border-radius: var(--bh26-radius-sm) 0 0 var(--bh26-radius-sm);
}

.bh26-phone-wrap .iti__selected-dial-code {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bh26-ink);
}

.bh26-phone-wrap .iti__country-list {
  border-radius: var(--bh26-radius-sm);
  border: 1px solid var(--bh26-border);
  max-height: 240px;
}

.bh26-field.has-error .bh26-phone-wrap .iti__tel-input {
  border-color: #e0473f;
}

.bh26-form__submit {
  margin-top: 10px;
}

/* Same consent block used on other lead forms sitewide (files/css/common/case-study.css) —
   restyled here since that stylesheet isn't loaded on this page. */
.csd-form__consent {
  margin-top: 0.75rem;
}

.csd-form__consent p {
  font-size: 0.6875rem !important;
  color: var(--bh26-ink-muted);
  line-height: 1.55;
  margin: 0 !important;
}

.csd-form__consent a {
  color: #673695;
  font-weight: 500;
  text-decoration: none;
}

.csd-form__consent a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------- */
/* Card language — shared by Identities & Credentials and What-to-Expect  */
/* One consistent card style: border + flat bg + translateY lift on hover */
/* ---------------------------------------------------------------------- */

.bh26-cards-grid,
.bh26-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bh26-card,
.bh26-expect-card {
  background: #fff;
  border: 1px solid var(--bh26-border);
  border-radius: var(--bh26-radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.bh26-card:hover,
.bh26-expect-card:hover {
  transform: translateY(-4px);
  border-color: var(--bh26-peach-border);
}

.bh26-card__icon,
.bh26-expect-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.bh26-card__icon {
  background: #eaf7f0;
  border: 1px solid #d3efe0;
}

.bh26-expect-card__icon {
  background: var(--bh26-cream);
  border: 1px solid var(--bh26-peach-border);
}

.bh26-card__icon svg,
.bh26-expect-card__icon svg {
  width: 26px;
  height: 26px;
}

.bh26-card__title,
.bh26-expect-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bh26-ink);
  line-height: 1.4;
}

.bh26-card__title {
  margin-bottom: 8px !important;
}

.bh26-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bh26-ink-soft);
}

.bh26-section__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh26-ink-soft);
  margin-top: 16px !important;
}

.bh26-section__note svg {
  color: var(--bh26-orange);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* About Black Hat — dark-navy feature block, orange highlights + stats   */
/* ---------------------------------------------------------------------- */

.bh26-about__row {
  align-items: center;
}

.bh26-about__copy {
  max-width: 480px;
}

.bh26-about__intro {
  font-size: 16px;
  line-height: 1.75;
  color: #b7bfd3;
  margin-top: 16px !important;
}

.bh26-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bh26-stat-card {
  text-align: center;
  padding: 26px 16px;
  border-radius: var(--bh26-radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bh26-stat-card__num {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--bh26-orange-light);
}

.bh26-stat-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #9aa4bd;
  margin-top: 6px !important;
}

/* ---------------------------------------------------------------------- */
/* Team — real photos, consistent card height                            */
/* ---------------------------------------------------------------------- */

.bh26-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Floating-avatar card — same visual language as the eMudhra leadership
   page (files/css/common/style-details.css .teamcol/.teamcolinner): a
   circular photo in a white ring overlaps the top edge of a white card,
   which lifts and picks up a soft purple glow on hover. #673695 is
   eMudhra's secondary brand purple, used there for both the hover glow
   and the role/title text — reused here verbatim, not reinvented. */
.bh26-team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  margin-top: 67px;
  padding: 83px 24px 32px;
  border-radius: var(--bh26-radius-md);
  border: 1px solid var(--bh26-border);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bh26-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(103, 54, 149, 0.15);
  border-color: #673695;
}

/* LinkedIn badge — tucked into the card's corner, invisible until the
   card is hovered, so the card reads as a photo/bio first and a link
   second. The whole card is the actual <a>; this is just the visual cue. */
.bh26-team-card__linkedin {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0a66c2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bh26-team-card:hover .bh26-team-card__linkedin,
.bh26-team-card:focus-visible .bh26-team-card__linkedin {
  opacity: 1;
  transform: translateY(0);
}

.bh26-team-photo {
  position: absolute;
  top: -67px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: var(--bh26-grey-bg);
  overflow: hidden;
  flex-shrink: 0;
}

.bh26-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--bh26-cream) 55%, #ffe9db 100%);
}

.bh26-team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bh26-team-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #141414;
}

.bh26-team-card__role {
  font-size: 13.5px;
  font-weight: 600;
  color: #673695;
  margin-top: 4px !important;
  line-height: 1.5;
}

.bh26-team-card__bio {
  font-size: 13.5px;
  color: var(--bh26-ink-soft);
  line-height: 1.6;
  margin-top: 14px !important;
  flex: 1;
}

/* ---------------------------------------------------------------------- */
/* CTA — soft gradient, abstract accents, no heavy color block            */
/* ---------------------------------------------------------------------- */

.bh26-cta-band {
  background: linear-gradient(135deg, #fff 0%, var(--bh26-cream) 55%, #ffe9db 100%);
  text-align: center;
  padding: 76px 0;
  overflow: hidden;
}

.bh26-cta-band__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bh26-cta-band__deco span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 103, 57, 0.14) 0%, transparent 70%);
}

.bh26-cta-band__deco span:first-child {
  width: 340px;
  height: 340px;
  top: -140px;
  left: -80px;
}

.bh26-cta-band__deco span:last-child {
  width: 420px;
  height: 420px;
  bottom: -220px;
  right: -120px;
}

.bh26-cta-band__title {
  position: relative;
  z-index: 1;
  color: var(--bh26-ink);
  max-width: 620px;
  margin: 0 auto !important;
}

.bh26-cta-band__sub {
  position: relative;
  z-index: 1;
  font-size: 16.5px;
  color: var(--bh26-ink-soft);
  margin: 12px auto 0 !important;
  max-width: 480px;
}

.bh26-cta-band__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px !important;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                             */
/* ---------------------------------------------------------------------- */

/* Tablet (≤991px): hero still shows a shorter stacked banner image above
   the content — there's room for it here, unlike on phones below. */
@media (max-width: 991px) {
  .bh26-hero {
    min-height: 0;
    padding: var(--bh26-hero-offset, 120px) 0 0;
    display: block;
  }

  .bh26-hero__media {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: -1px;
  }

  .bh26-hero__media img {
    object-position: 70% 0%;
  }

  .bh26-hero__media-fade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, #fff 100%);
  }

  .bh26-hero__content {
    max-width: none;
    padding: 28px 1.25rem 48px;
  }

  .bh26-section {
    padding: 56px 0;
  }

  .bh26-section--form {
    padding: 44px 0;
  }

  .bh26-cta-band {
    padding: 56px 0;
  }

  .bh26-cards-grid,
  .bh26-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bh26-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bh26-about__copy {
    max-width: none;
    margin-bottom: 32px;
  }
}

/* Phone (≤767px): the banner photo is dropped entirely — on a screen this
   narrow it either gets cropped to something unrecognizable or eats the
   whole first screen with no room left for the actual message/CTA, so
   it's more useful to skip it and give that space to the content. */
@media (max-width: 767px) {
  .bh26-hero {
    padding: var(--bh26-hero-offset, 100px) 0 0;
  }

  .bh26-hero__media {
    display: none;
  }

  .bh26-hero__content {
    padding: 28px 1rem 40px;
  }

  .bh26-hero__logo {
    width: clamp(180px, 60vw, 260px);
  }

  .bh26-hero__meta {
    gap: 14px;
  }

  .bh26-hero__ctas .ems-btn,
  .bh26-cta-band__actions .ems-btn {
    width: 100%;
  }

  .bh26-section {
    padding: 48px 0;
  }

  .bh26-section-head {
    margin-bottom: 32px !important;
  }

  .bh26-form-section__row [class*="col-"]:first-child {
    margin-bottom: 28px;
  }

  .bh26-lead-card {
    padding: 22px;
  }

  .bh26-form__row {
    grid-template-columns: 1fr;
  }

  .bh26-cards-grid,
  .bh26-team-grid,
  .bh26-stat-grid,
  .bh26-expect-grid {
    grid-template-columns: 1fr;
  }

  .bh26-about__row {
    text-align: center;
  }

  .bh26-stat-grid {
    max-width: 320px;
    margin-inline: auto;
  }

  .bh26-cta-band__deco span {
    display: none;
  }
}

/* Small phone (≤480px): trim padding further and shrink the team card's
   floating avatar so it still reads as a photo, not the whole card. */
@media (max-width: 480px) {
  .bh26-hero__content {
    padding-inline: 0.75rem;
  }

  .bh26-hero__meta-item {
    font-size: 13px;
  }

  .bh26-section {
    padding: 40px 0;
  }

  .bh26-lead-card {
    padding: 18px;
  }

  .bh26-card,
  .bh26-expect-card {
    padding: 22px 16px;
  }

  .bh26-team-card {
    margin-top: 52px;
    padding: 66px 18px 26px;
  }

  .bh26-team-photo {
    top: -52px;
    width: 104px;
    height: 104px;
  }

  .bh26-stat-card {
    padding: 20px 14px;
  }
}
