@charset "UTF-8";
/**
 * Team members — grid cards (Views) + full profile hero.
 */
.team-profile,
.team-members-main-block,
.team-grid-card {
  --team-navy: var(--navy-blue, #0b2b5c);
  --team-blue: var(--primary-blue, #0077c0);
  --team-blue-dark: var(--blue-dark, #0055aa);
  --team-text: var(--text-dark, #1a2b3d);
  --team-muted: #5a6d80;
  --team-border: #dce4ee;
  --team-surface: var(--white, #fff);
  --team-soft: var(--light-blue, #e3f2fd);
  --team-radius: 16px;
  --team-radius-lg: 18px;
  --team-shadow: 0 8px 24px color-mix(in srgb, var(--team-navy) 7%, transparent);
  --team-shadow-hover: 0 18px 40px color-mix(in srgb, var(--team-blue) 16%, transparent);
}

.team-members-main-block {
  display: block;
  color: var(--team-text);
}

.content-wrapper .team-members-main-block .node.team-grid-card,
.content-area .team-members-main-block .node.team-grid-card,
.team-members-main-block .node.node--type-team-member.node--view-mode-teaser {
  max-width: none;
  margin: 0;
  padding: 0;
}

.content-wrapper .team-members-main-block .node.team-grid-card .node__content,
.content-area .team-members-main-block .node.team-grid-card .node__content,
.team-members-main-block .node.team-grid-card .node__content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.team-grid__intro {
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--team-muted);
  font-size: clamp(0.9375rem, 1.9vw, 1.05rem);
  line-height: 1.7;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.team-grid__intro p {
  margin: 0 0 0.75rem;
}
.team-grid__intro p:last-child {
  margin-bottom: 0;
}

.team-grid__body {
  display: block;
}

.team-members-main-block .view-grouping {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
}
.team-members-main-block .view-grouping:last-child {
  margin-bottom: 0;
}

.team-members-main-block .view-grouping-header {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  padding: 0 0 0.7rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--team-blue) 0%, color-mix(in srgb, var(--team-blue) 35%, var(--team-border)) 55%, transparent 100%) 1;
  color: var(--team-navy);
  font-size: clamp(1.1rem, 2.3vw, 1.3rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.team-members-main-block .view-grouping-content {
  display: block;
}

.team-members-main-block .views-view-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.8vw, 1.75rem);
  align-items: stretch;
}
@media (min-width: 48rem) {
  .team-members-main-block .views-view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .team-members-main-block .views-view-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.team-members-main-block .views-view-grid::after,
.team-members-main-block .views-view-grid .views-row::after {
  content: none;
}
.team-members-main-block .views-view-grid .views-row {
  display: contents;
}
.team-members-main-block .views-view-grid .views-col {
  display: flex;
  float: none;
  width: auto !important;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.team-members-main-block > .views-row {
  display: flex;
  min-width: 0;
}

.team-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--team-border) 90%, var(--team-blue));
  border-radius: var(--team-radius);
  background: var(--team-surface);
  box-shadow: var(--team-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  outline: none !important;
}
.team-grid-card.contextual-region.focus, .team-grid-card.contextual-region:focus {
  outline: none !important;
}
.team-grid-card:hover, .team-grid-card:focus-within {
  border-color: color-mix(in srgb, var(--team-blue) 38%, var(--team-border));
  box-shadow: var(--team-shadow-hover);
  transform: translateY(-4px);
}

.team-grid-card__inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.team-grid-card__visual {
  position: relative;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 5/4;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: color-mix(in srgb, var(--team-soft) 65%, var(--team-surface));
  text-decoration: none;
}
.team-grid-card__visual::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--team-blue) 0%, color-mix(in srgb, var(--team-blue) 50%, var(--team-navy)) 100%);
  pointer-events: none;
}
.team-grid-card__visual:hover, .team-grid-card__visual:focus-visible {
  text-decoration: none;
}
.team-grid-card__visual:focus-visible {
  outline: 2px solid var(--team-blue);
  outline-offset: -2px;
}

.team-grid-card__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.team-grid-card__photo--placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, color-mix(in srgb, var(--team-soft) 80%, var(--team-surface)), color-mix(in srgb, var(--team-blue) 10%, var(--team-soft)));
}

.team-grid-card:hover .team-grid-card__photo,
.team-grid-card:focus-within .team-grid-card__photo {
  transform: scale(1.04);
}

.team-grid-card__visual-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, color-mix(in srgb, var(--team-navy) 18%, transparent), transparent);
  pointer-events: none;
}

.team-grid-card__initials {
  color: var(--team-navy);
  font-size: clamp(2rem, 7vw, 2.75rem);
  letter-spacing: 0.05em;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.team-grid-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  min-height: 6.75rem;
  padding: 0.95rem 1.15rem 0.65rem;
  text-align: center;
}

.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span,
#main-content .team-grid-card h2.team-grid-card__name,
.content-area .team-grid-card h2.team-grid-card__name {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  position: static;
  max-width: none;
  font-size: clamp(1.12rem, 2.3vw, 1.2rem);
  line-height: 1.32;
  text-align: center;
  text-wrap: balance;
  letter-spacing: -0.01em;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name::after,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a::after,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span::after,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name::after,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a::after,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span::after,
#main-content .team-grid-card h2.team-grid-card__name::after,
.content-area .team-grid-card h2.team-grid-card__name::after {
  content: none !important;
  display: none !important;
}
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a a,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span a,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a a,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span a,
#main-content .team-grid-card h2.team-grid-card__name a,
.content-area .team-grid-card h2.team-grid-card__name a {
  color: var(--team-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a:hover, .node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a:focus-visible,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a a:hover,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a a:focus-visible,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span a:hover,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span a:focus-visible,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a:hover,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a:focus-visible,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a a:hover,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a a:focus-visible,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span a:hover,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span a:focus-visible,
#main-content .team-grid-card h2.team-grid-card__name a:hover,
#main-content .team-grid-card h2.team-grid-card__name a:focus-visible,
.content-area .team-grid-card h2.team-grid-card__name a:hover,
.content-area .team-grid-card h2.team-grid-card__name a:focus-visible {
  color: var(--team-blue);
  text-decoration: none;
}
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a span,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span span,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a span,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span span,
#main-content .team-grid-card h2.team-grid-card__name span,
.content-area .team-grid-card h2.team-grid-card__name span {
  all: unset;
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: inherit;
}
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span::after,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name a span::after,
.node--type-advanced-page .team-members-main-block .team-grid-card h2.team-grid-card__name span span::after,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span::after,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name a span::after,
.content-area .team-members-main-block .team-grid-card h2.team-grid-card__name span span::after,
#main-content .team-grid-card h2.team-grid-card__name span::after,
.content-area .team-grid-card h2.team-grid-card__name span::after {
  content: none !important;
  display: none !important;
}

.team-grid-card__role {
  margin: 0;
  color: var(--team-blue);
  font-size: clamp(0.875rem, 1.9vw, 0.9375rem);
  line-height: 1.4;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.team-grid-card__department {
  margin: 0.1rem 0 0;
  padding: 0;
  max-width: 100%;
  color: var(--team-muted);
  font-size: clamp(0.8rem, 1.7vw, 0.875rem);
  line-height: 1.45;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.team-grid-card__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: auto;
  padding: 0.6rem 1.1rem 0.85rem;
  border-top: 1px solid color-mix(in srgb, var(--team-border) 85%, transparent);
  background: color-mix(in srgb, var(--team-soft) 22%, var(--team-surface));
}

.team-grid-card__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.team-grid-card__contact {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--team-blue) 18%, var(--team-border));
  border-radius: 50%;
  background: var(--team-surface);
  color: var(--team-blue);
  text-decoration: none;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--team-navy) 5%, transparent);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.team-grid-card__contact svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentcolor;
}
.team-grid-card__contact:hover, .team-grid-card__contact:focus-visible {
  border-color: var(--team-blue);
  background: var(--team-soft);
  color: var(--team-blue-dark);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--team-blue) 14%, transparent);
  transform: translateY(-1px);
  text-decoration: none;
}
.team-grid-card__contact:focus-visible {
  outline: 2px solid var(--team-blue);
  outline-offset: 2px;
}

.team-grid-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid color-mix(in srgb, var(--team-blue) 28%, var(--team-border));
  border-radius: 8px;
  background: var(--team-surface);
  color: var(--team-navy);
  font-size: 0.8125rem;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, gap 0.2s ease, box-shadow 0.2s ease;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.team-grid-card__cta:hover, .team-grid-card__cta:focus-visible {
  border-color: var(--team-blue);
  background: var(--team-blue);
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--team-blue) 22%, transparent);
  text-decoration: none;
  gap: 0.6rem;
}
.team-grid-card__cta:focus-visible {
  outline: 2px solid var(--team-blue-dark);
  outline-offset: 2px;
}

.team-grid-card__cta-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: inherit;
  transition: transform 0.2s ease;
}
.team-grid-card__cta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.team-grid-card__cta:hover .team-grid-card__cta-icon,
.team-grid-card__cta:focus-visible .team-grid-card__cta-icon {
  transform: translateX(3px);
}

.content-area .team-grid-card a,
.content-wrapper .team-grid-card a,
.node__content .team-grid-card a {
  text-decoration: none;
}
.content-area .team-grid-card a:hover, .content-area .team-grid-card a:focus-visible,
.content-wrapper .team-grid-card a:hover,
.content-wrapper .team-grid-card a:focus-visible,
.node__content .team-grid-card a:hover,
.node__content .team-grid-card a:focus-visible {
  text-decoration: none;
}

.team-members-main-block .item-list h3 {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  padding: 0 0 0.7rem;
  border-bottom: 2px solid color-mix(in srgb, var(--team-blue) 28%, var(--team-border));
  color: var(--team-navy);
  font-size: clamp(1.1rem, 2.3vw, 1.3rem);
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.team-members-main-block .item-list ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.15rem, 2.5vw, 1.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 48rem) {
  .team-members-main-block .item-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .team-members-main-block .item-list ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.team-members-main-block .item-list li {
  display: flex;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.team-members-main-block .item-list li::before {
  content: none;
  display: none;
}

.team-profile {
  --profile-photo-w: clamp(7.5rem, 36vw, 10.5rem);
  --profile-photo-ratio: 4 / 5;
  --profile-hero-pad-y: clamp(1.35rem, 3.2vw, 2rem);
  --profile-hero-pad-x: clamp(1.1rem, 3vw, 2rem);
  --profile-hero-gap: clamp(1.15rem, 2.8vw, 1.75rem);
  --profile-identity-gap: clamp(0.35rem, 1vw, 0.5rem);
  --profile-copy-gap: clamp(0.95rem, 2.2vw, 1.35rem);
  color: var(--team-text);
}

.content-wrapper .node.team-profile,
.content-area .node.team-profile {
  max-width: none;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(2rem, 4.5vw, 3rem);
}

.content-wrapper .node.team-profile .node__content,
.content-area .node.team-profile .node__content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.team-profile__content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.team-profile__nav {
  margin: 0 0 clamp(1rem, 2.5vw, 1.25rem);
}

.team-profile__back {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1.1rem 0.45rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--team-blue) 28%, var(--team-border));
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--team-blue) 7%, var(--team-surface)) 0%, var(--team-surface) 100%);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--team-navy) 6%, transparent);
  color: var(--team-navy);
  font-size: 0.875rem;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, gap 0.2s ease;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.team-profile__back:hover, .team-profile__back:focus-visible {
  border-color: var(--team-blue);
  background: linear-gradient(135deg, color-mix(in srgb, var(--team-blue) 12%, var(--team-surface)) 0%, var(--team-surface) 100%);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--team-blue) 14%, transparent);
  color: var(--team-blue-dark);
  text-decoration: none;
  transform: translateX(-3px);
  gap: 0.85rem;
}
.team-profile__back:focus-visible {
  outline: 2px solid var(--team-blue);
  outline-offset: 3px;
}

.team-profile__back-icon {
  display: grid;
  place-items: center;
  flex: 0 0 1.85rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--team-blue);
  color: #fff;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--team-blue) 35%, transparent);
  transition: background 0.2s ease, transform 0.2s ease;
}
.team-profile__back-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentcolor;
}

.team-profile__back:hover .team-profile__back-icon,
.team-profile__back:focus-visible .team-profile__back-icon {
  background: var(--team-blue-dark);
  transform: translateX(-2px);
}

.team-profile__back-text {
  min-width: 0;
}

.team-profile__hero {
  position: relative;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--team-radius-lg);
  color: #fff;
  background: radial-gradient(90% 120% at 100% 0%, color-mix(in srgb, var(--team-blue) 48%, transparent) 0%, transparent 58%), linear-gradient(135deg, var(--team-navy) 0%, color-mix(in srgb, var(--team-blue) 32%, var(--team-navy)) 100%);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--team-navy) 14%, transparent);
  overflow: hidden;
}
.team-profile__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, #fff 4%, transparent) 0%, transparent 42%);
  pointer-events: none;
}

.team-profile__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: var(--profile-hero-gap);
  padding: var(--profile-hero-pad-y) var(--profile-hero-pad-x);
  text-align: center;
}

.team-profile__hero-media {
  flex: 0 0 auto;
  width: var(--profile-photo-w);
  max-width: 100%;
}

.team-profile__photo {
  display: block;
  width: 100%;
  aspect-ratio: var(--profile-photo-ratio);
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: clamp(14px, 2vw, 20px);
  border: 3px solid color-mix(in srgb, #fff 42%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, #fff 12%, transparent), 0 14px 32px color-mix(in srgb, #000 24%, transparent);
}
.team-profile__photo--placeholder {
  display: grid;
  place-items: center;
  background: color-mix(in srgb, #fff 16%, transparent);
}

.team-profile__initials {
  color: #fff;
  font-size: clamp(2rem, var(--profile-photo-w) * 0.38, 3rem);
  letter-spacing: 0.05em;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.team-profile__hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--profile-copy-gap);
  width: 100%;
  min-width: 0;
}

.team-profile__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--profile-identity-gap);
  width: 100%;
  min-width: 0;
}

.team-profile__eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, #fff 14%, transparent);
  border: 1px solid color-mix(in srgb, #fff 22%, transparent);
  color: color-mix(in srgb, #fff 82%, transparent);
  font-size: clamp(0.625rem, 0.45vw + 0.55rem, 0.75rem);
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
  text-wrap: pretty;
  hyphens: auto;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}

#main-content .team-profile h1.team-profile__name,
.content-area .team-profile h1.team-profile__name,
.node--type-advanced-page .team-profile h1.team-profile__name {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  max-width: none;
  color: #fff;
  font-size: clamp(1.45rem, 1.35vw + 0.85rem, 2.05rem);
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#main-content .team-profile h1.team-profile__name::after,
.content-area .team-profile h1.team-profile__name::after,
.node--type-advanced-page .team-profile h1.team-profile__name::after {
  content: none !important;
  display: none !important;
}
#main-content .team-profile h1.team-profile__name span,
.content-area .team-profile h1.team-profile__name span,
.node--type-advanced-page .team-profile h1.team-profile__name span {
  all: unset;
  display: inline;
  color: inherit;
  font: inherit;
}
#main-content .team-profile h1.team-profile__name span::after,
.content-area .team-profile h1.team-profile__name span::after,
.node--type-advanced-page .team-profile h1.team-profile__name span::after {
  content: none !important;
  display: none !important;
}

.team-profile__role {
  margin: 0;
  color: color-mix(in srgb, #fff 88%, transparent);
  font-size: clamp(0.9375rem, 0.65vw + 0.7rem, 1.125rem);
  line-height: 1.45;
  text-align: center;
  text-wrap: pretty;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.team-profile__contacts {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: clamp(0.5rem, 1.2vw, 0.7rem);
  width: 100%;
  margin: 0;
}

.team-profile__contact {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  min-width: 0;
  min-height: clamp(3.15rem, 8vw, 3.65rem);
  padding: clamp(0.65rem, 1.5vw, 0.8rem) clamp(0.75rem, 1.8vw, 1rem);
  border: 1px solid color-mix(in srgb, #fff 28%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 12%, transparent);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.team-profile__contact:hover, .team-profile__contact:focus-visible {
  border-color: color-mix(in srgb, #fff 48%, transparent);
  background: color-mix(in srgb, #fff 20%, transparent);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.team-profile__contact:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.team-profile__contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(2.15rem, 4vw, 2.5rem);
  width: clamp(2.15rem, 4vw, 2.5rem);
  height: clamp(2.15rem, 4vw, 2.5rem);
  border-radius: 50%;
  background: color-mix(in srgb, #fff 16%, transparent);
}
.team-profile__contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentcolor;
}

.team-profile__contact-body {
  display: grid;
  flex: 1;
  gap: 0.08rem;
  min-width: 0;
  text-align: left;
}

.team-profile__contact-label {
  color: color-mix(in srgb, #fff 72%, transparent);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.team-profile__contact-value {
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(0.8125rem, 0.35vw + 0.72rem, 0.9rem);
  line-height: 1.35;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.team-profile__contact--email .team-profile__contact-value {
  font-size: clamp(0.75rem, 0.35vw + 0.66rem, 0.875rem);
}

.content-area .team-profile a.team-profile__contact,
.content-wrapper .team-profile a.team-profile__contact,
.node__content .team-profile a.team-profile__contact {
  color: #fff;
  text-decoration: none;
}
.content-area .team-profile a.team-profile__contact:hover, .content-area .team-profile a.team-profile__contact:focus-visible,
.content-wrapper .team-profile a.team-profile__contact:hover,
.content-wrapper .team-profile a.team-profile__contact:focus-visible,
.node__content .team-profile a.team-profile__contact:hover,
.node__content .team-profile a.team-profile__contact:focus-visible {
  color: #fff;
  text-decoration: none;
}
.content-area .team-profile a.team-profile__contact .team-profile__contact-label,
.content-area .team-profile a.team-profile__contact .team-profile__contact-value,
.content-wrapper .team-profile a.team-profile__contact .team-profile__contact-label,
.content-wrapper .team-profile a.team-profile__contact .team-profile__contact-value,
.node__content .team-profile a.team-profile__contact .team-profile__contact-label,
.node__content .team-profile a.team-profile__contact .team-profile__contact-value {
  color: inherit;
  text-decoration: none;
}

.content-area .team-profile .team-profile__contact-label,
.content-wrapper .team-profile .team-profile__contact-label {
  color: color-mix(in srgb, #fff 72%, transparent);
}

.content-area .team-profile .team-profile__contact-value,
.content-wrapper .team-profile .team-profile__contact-value {
  color: #fff;
}

.team-profile__section {
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border: 1px solid var(--team-border);
  border-radius: var(--team-radius-lg);
  background: var(--team-surface);
  box-shadow: 0 6px 22px color-mix(in srgb, var(--team-navy) 5%, transparent);
}
.team-profile__section + .team-profile__section {
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

.team-profile__section-title {
  margin: 0 0 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid color-mix(in srgb, var(--team-blue) 22%, var(--team-border));
  color: var(--team-navy);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.3;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.team-profile__bio {
  color: var(--team-text);
  font-size: clamp(0.9375rem, 2vw, 1.05rem);
  line-height: 1.75;
  text-align: left;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.team-profile__bio p {
  margin: 0 0 1rem;
}
.team-profile__bio p:last-child {
  margin-bottom: 0;
}
.team-profile__bio a {
  color: var(--team-blue);
  font-weight: 600;
  text-decoration: none;
}
.team-profile__bio a:hover, .team-profile__bio a:focus-visible {
  color: var(--team-blue-dark);
  text-decoration: underline;
}
.team-profile__bio ul,
.team-profile__bio ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.team-profile__section--cv .field--name-field-cv {
  margin: 0;
}
.team-profile__section--cv .field--name-field-cv > .field__label {
  margin: 0 0 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid color-mix(in srgb, var(--team-blue) 22%, var(--team-border));
  color: var(--team-navy);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.3;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.team-profile__section--cv .field--name-field-cv > .field__items,
.team-profile__section--cv .field--name-field-cv > .field__item {
  margin: 0;
}
.team-profile__section--cv .media--type-document,
.team-profile__section--cv .field--name-field-media-document {
  margin: 0;
}
.team-profile__section--cv .field--name-field-media-document > .field__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "icon name" "icon meta";
  align-items: start;
  column-gap: clamp(0.85rem, 2vw, 1.1rem);
  row-gap: 0.2rem;
  margin: 0;
  padding: clamp(0.9rem, 2vw, 1.15rem);
  border: 1px solid color-mix(in srgb, var(--team-blue) 18%, var(--team-border));
  border-radius: 12px;
  background: color-mix(in srgb, var(--team-blue) 4%, var(--team-surface));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.team-profile__section--cv .field--name-field-media-document > .field__item::before {
  content: "";
  grid-area: icon;
  width: clamp(2.5rem, 5.5vw, 2.85rem);
  height: clamp(2.5rem, 5.5vw, 2.85rem);
  border-radius: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 2l5 5h-5V4zM8 13h8v2H8v-2zm0 4h8v2H8v-2z'/%3E%3C/svg%3E") center/1.2rem 1.2rem no-repeat, linear-gradient(145deg, var(--team-blue) 0%, color-mix(in srgb, var(--team-blue) 70%, var(--team-navy)) 100%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--team-blue) 22%, transparent);
}
.team-profile__section--cv .field--name-field-media-document > .field__item:hover {
  border-color: color-mix(in srgb, var(--team-blue) 34%, var(--team-border));
  box-shadow: 0 6px 18px color-mix(in srgb, var(--team-blue) 8%, transparent);
}
.team-profile__section--cv .field--name-field-media-document .file {
  grid-area: name;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.team-profile__section--cv .field--name-field-media-document .file::before {
  content: none;
  display: none;
}
.team-profile__section--cv .field--name-field-media-document .file a {
  display: inline;
  color: var(--team-navy);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.team-profile__section--cv .field--name-field-media-document .file a:hover, .team-profile__section--cv .field--name-field-media-document .file a:focus-visible {
  color: var(--team-blue-dark);
  text-decoration: underline;
}
.team-profile__section--cv .field--name-field-media-document > .field__item > span:not(.file) {
  grid-area: meta;
  color: var(--team-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.content-area .team-profile__section--cv .field--name-field-media-document .file a,
.content-wrapper .team-profile__section--cv .field--name-field-media-document .file a,
.node__content .team-profile__section--cv .field--name-field-media-document .file a {
  color: var(--team-navy);
  text-decoration: none;
}
.content-area .team-profile__section--cv .field--name-field-media-document .file a:hover, .content-area .team-profile__section--cv .field--name-field-media-document .file a:focus-visible,
.content-wrapper .team-profile__section--cv .field--name-field-media-document .file a:hover,
.content-wrapper .team-profile__section--cv .field--name-field-media-document .file a:focus-visible,
.node__content .team-profile__section--cv .field--name-field-media-document .file a:hover,
.node__content .team-profile__section--cv .field--name-field-media-document .file a:focus-visible {
  color: var(--team-blue-dark);
  text-decoration: underline;
}

.node--type-team-member.node--view-mode-full.team-profile .page-title * {
  all: unset;
  display: inline;
  color: inherit;
  font: inherit;
}
.node--type-team-member.node--view-mode-full.team-profile .page-title *::after {
  content: none;
}
.node--type-team-member.node--view-mode-full.team-profile .node__body {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 48rem) {
  .team-profile {
    --profile-photo-w: clamp(10rem, 13vw, 13.5rem);
    --profile-hero-pad-y: clamp(1.65rem, 2.5vw, 2.35rem);
    --profile-hero-pad-x: clamp(1.5rem, 2.8vw, 2.5rem);
    --profile-hero-gap: clamp(1.5rem, 2.5vw, 2.5rem);
    --profile-copy-gap: clamp(1.1rem, 1.8vw, 1.45rem);
  }
  .team-profile__hero-inner {
    grid-template-columns: minmax(0, var(--profile-photo-w)) minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }
  .team-profile__hero-media {
    align-self: center;
  }
  .team-profile__hero-copy {
    align-items: stretch;
    justify-content: center;
    align-self: center;
  }
  .team-profile__identity {
    align-items: flex-start;
  }
  #main-content .team-profile h1.team-profile__name,
  .content-area .team-profile h1.team-profile__name,
  .node--type-advanced-page .team-profile h1.team-profile__name {
    text-align: left;
  }
  .team-profile__eyebrow {
    align-self: flex-start;
    text-align: left;
  }
  .team-profile__role {
    text-align: left;
  }
  .team-profile__contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .team-profile {
    --profile-photo-w: clamp(10.5rem, 11.5vw, 14rem);
    --profile-hero-gap: clamp(1.65rem, 2.2vw, 2.75rem);
    --profile-copy-gap: clamp(1.15rem, 1.6vw, 1.5rem);
  }
  .team-profile__contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 80rem) {
  .team-profile {
    --profile-photo-w: clamp(12rem, 11vw, 16rem);
    --profile-hero-pad-y: clamp(2rem, 2.5vw, 2.85rem);
  }
}
@media (max-width: 47.999rem) {
  .content-wrapper .node.team-profile,
  .content-area .node.team-profile {
    padding-left: clamp(0.65rem, 3.5vw, 1rem);
    padding-right: clamp(0.65rem, 3.5vw, 1rem);
  }
  .team-profile {
    --profile-photo-w: clamp(6.75rem, 38vw, 9rem);
    --profile-hero-pad-y: clamp(1rem, 3vw, 1.25rem);
    --profile-hero-pad-x: clamp(0.85rem, 3.5vw, 1.1rem);
    --profile-hero-gap: clamp(0.95rem, 2.5vw, 1.25rem);
  }
  .team-profile__back {
    max-width: 100%;
    font-size: 0.8125rem;
    line-height: 1.35;
    padding: 0.4rem 0.9rem 0.4rem 0.45rem;
  }
  .team-profile__back-text {
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }
  .team-profile__hero-inner {
    justify-items: stretch;
    text-align: center;
  }
  .team-profile__hero-media {
    justify-self: center;
    width: min(var(--profile-photo-w), 72vw);
  }
  .team-profile__hero-copy {
    align-items: center;
  }
  .team-profile__identity {
    align-items: center;
  }
  .team-profile__eyebrow {
    align-self: center;
    font-size: 0.625rem;
    letter-spacing: 0.045em;
    padding: 0.28rem 0.65rem;
    line-height: 1.45;
    text-align: center;
  }
  #main-content .team-profile h1.team-profile__name,
  .content-area .team-profile h1.team-profile__name,
  .node--type-advanced-page .team-profile h1.team-profile__name {
    text-align: center;
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .team-profile__role {
    text-align: center;
    font-size: clamp(0.9375rem, 3.8vw, 1.05rem);
  }
  .team-profile__contacts {
    width: 100%;
  }
  .team-profile__contact {
    align-items: center;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 0.75rem;
  }
  .team-profile__contact-icon {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    margin-top: 0.05rem;
  }
  .team-profile__contact-value {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .team-profile__contact--email .team-profile__contact-value {
    font-size: 0.75rem;
  }
  .team-profile__section {
    padding: 1rem 0.9rem;
  }
  .team-profile__section-title {
    font-size: 1.05rem;
  }
  .team-profile__bio {
    font-size: 0.9375rem;
    line-height: 1.65;
  }
  .team-profile__section--cv .field--name-field-media-document > .field__item {
    padding: 0.85rem;
    column-gap: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-profile__back,
  .team-profile__back-icon,
  .team-profile__contact,
  .team-profile__section--cv .field--name-field-media-document > .field__item,
  .team-grid-card,
  .team-grid-card__photo,
  .team-grid-card__contact,
  .team-grid-card__cta {
    transition: none;
  }
  .team-grid-card:hover,
  .team-grid-card:focus-within {
    transform: none;
  }
  .team-profile__contact:hover,
  .team-profile__contact:focus-visible {
    transform: none;
  }
  .team-grid-card:hover .team-grid-card__photo,
  .team-grid-card:focus-within .team-grid-card__photo {
    transform: none;
  }
  .team-grid-card__cta:hover,
  .team-grid-card__cta:focus-visible {
    gap: 0.45rem;
  }
  .team-grid-card__cta:hover .team-grid-card__cta-icon,
  .team-grid-card__cta:focus-visible .team-grid-card__cta-icon {
    transform: none;
  }
}
