.hero-actions {
  gap: 14px;
}

.hero-actions .button {
  min-width: 205px;
  gap: 8px;
}

.credential-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.credential-logo {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: transparent;
  border: 0;
}

.credential-logo img {
  display: block;
  width: 100%;
  max-width: 290px;
  max-height: 92px;
  object-fit: contain;
}

.credential-logo.ismeta-logo img {
  max-height: 112px;
}

.expertise-card.event-operations {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue);
}

.expertise-card.event-operations::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(41, 68, 255, .94) 0%, rgba(41, 68, 255, .68) 48%, rgba(41, 68, 255, .88) 100%),
    linear-gradient(180deg, rgba(41, 68, 255, .28), rgba(41, 68, 255, .78)),
    url("event-operations-stage-management.png");
  background-size: cover;
  background-position: center;
  filter: saturate(.82) contrast(.94);
  opacity: .78;
}

.expertise-card.event-operations::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 22%, rgba(18, 36, 190, .42) 76%, rgba(14, 28, 144, .72) 100%);
}

/* Keep the hero's role line clear while using the open right side for actions. */
@media (min-width: 901px) {
  .hero-actions {
    position: absolute;
    right: 5vw;
    bottom: 108px;
    flex-direction: column;
    align-items: stretch;
    width: 228px;
    margin: 0;
  }

  .hero-actions .button {
    min-width: 0;
    border: 1px solid rgba(255,255,255,.82);
    background: rgba(5,5,5,.72);
    color: #fff;
    backdrop-filter: blur(10px);
  }

  .disciplines {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(5,5,5,.62);
    backdrop-filter: blur(8px);
  }
}

.expertise-card.hospitality-strategy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #111;
  background: var(--yellow);
}

.expertise-card.hospitality-strategy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255,212,0,.93) 0%, rgba(255,212,0,.72) 50%, rgba(255,212,0,.86) 100%),
    linear-gradient(180deg, rgba(255,212,0,.18), rgba(255,212,0,.64)),
    url("hospitality-strategy-chef-meeting.png");
  background-size: cover;
  background-position: center;
  opacity: .88;
}

.expertise-card.hospitality-strategy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 18%, rgba(255,212,0,.22) 68%, rgba(230,173,0,.5) 100%);
}

.logo-rail span:nth-child(3n),
.logo-rail span:nth-child(5n) {
  color: var(--red);
}

.portrait-feature {
  padding: 16px;
  background: var(--blue);
  box-shadow: 18px 18px 0 var(--red);
}

.portrait-feature img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.social-directory {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
}

.social-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(5,5,5,.14);
}

.social-group:nth-child(2) {
  border-color: rgba(255,212,0,.72);
  background: rgba(255,212,0,.12);
}

.social-group strong {
  margin-bottom: 5px;
  font-family: "Instrument Serif",serif;
  font-size: 22px;
  font-weight: 400;
}

.social-group a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 0;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #111;
}

.icon-cv { color: #111; background: var(--yellow); font-size: 8px; }
.icon-linkedin { background: #0a66c2; font-family: Arial,sans-serif; font-size: 13px; }
.icon-email { color: #111; background: var(--pink); font-size: 13px; }
.icon-web { background: var(--blue); font-size: 14px; }
.icon-social { color: #111; background: linear-gradient(135deg,var(--yellow),var(--pink)); font-size: 13px; }

@media (max-width: 560px) {
  .hero-content { margin-top: 20px; padding-bottom: 150px; }
  .hero-actions { align-items: stretch; max-width: 270px; }
  .hero-actions .button { width: 100%; }
  .disciplines { bottom: 72px; }
  .credential-logos { grid-template-columns: 1fr; }
  .social-directory { grid-template-columns: 1fr; }
}
