:root {
  --kgbn-blue: #1393c5;
  --kgbn-blue-dark: #1395C5;
  --kgbn-sky: #71CEFA;
  --kgbn-soft: #dceff6;
  --kgbn-mint: #dff5ef;
  --kgbn-ink: #282726;
  --kgbn-muted: #282726;
  --kgbn-line: #cfedf5;
  --kgbn-white: #ffffff;
  --kgbn-green: #4faa1d;




  --kgbn-shape-bg: rgba(113, 206, 250, 0.3);
  --mask-blob: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='white' d='M66 0 C79 0 90 8 96 24 C100 37 100 52 96 66 C90 84 72 98 51 99 C32 98 13 88 4 70 C0 60 0 50 4 42 C9 31 22 20 38 10 C50 3 61 1 66 0 Z'/%3E%3C/svg%3E");
  --mask-tall-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='white' d='M0 0 H52 C82 0 100 22 100 47 V78 C100 92 82 100 54 100 C22 100 0 82 0 58 Z'/%3E%3C/svg%3E");
  --mask-tall-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='white' d='M48 0 C78 0 100 22 100 48 V100 H0 V48 C0 22 20 0 48 0 Z'/%3E%3C/svg%3E");
  --mask-news-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='white' d='M55 0 H100 V56 C100 82 78 100 54 100 C23 100 0 78 0 52 C0 25 22 3 55 0 Z'/%3E%3C/svg%3E");
  --mask-news-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='white' d='M45 0 H100 V56 C100 82 78 100 50 100 C22 100 0 78 0 52 C0 25 18 3 45 0 Z'/%3E%3C/svg%3E");
  --space-half: 17.5px;
  --space-1: 35px;
  --space-2: 70px;
  --space-3: 105px;
  --space-4: 140px;
  --shadow-soft: none;
  --wide-panel-bleed: max(0px, calc((100vw - 1460px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: var(--kgbn-ink);
  background: var(--kgbn-white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--kgbn-white);
  transition: opacity 420ms ease, visibility 420ms ease;
}

html.page-entering body::after {
  visibility: visible;
  animation: kgbnPageIn 520ms ease forwards;
}

body.page-transition-out::after {
  visibility: visible;
  opacity: 1;
}

@keyframes kgbnPageIn {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--kgbn-blue-dark);
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 35px;
  z-index: 9999;
  padding: 17.5px 35px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  border-radius: 999px;
}

.skip-link:focus {
  top: 17.5px;
}

.container-xxl {
  max-width: 1320px;
}

.row > * {
  min-width: 0;
}

.section-space {
  padding-top: 90px;
  padding-bottom: 90px;
}

.gx-kgbn {
  --bs-gutter-x: 70px;
}

.gy-kgbn {
  --bs-gutter-y: 70px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  padding-top: 35px;
  padding-bottom: 35px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 17.5px;
  padding-bottom: 17.5px;
  box-shadow: 0 8px 28px rgba(40, 39, 38, 0.06) !important;
}

.navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 17.5px;
  flex: 0 1 auto;
  min-width: 315px;
  margin-right: 35px;
  color: var(--kgbn-ink);
}

.brand img {
  width: 356px;
  max-width: 100%;
  height: auto;
}

.brand:hover,
.brand:focus {
  color: var(--kgbn-ink);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 105px;
  height: 87.5px;
  color: var(--kgbn-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 64% 36% 58% 42% / 42% 40% 60% 58%;
  background: rgba(99, 199, 232, 0.26);
  transform: rotate(-28deg);
}

.brand-mark::after {
  inset: 17.5px;
  background: rgba(22, 153, 197, 0.25);
  transform: rotate(22deg);
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.brand-mark span + span {
  margin-left: 8.75px;
  padding-left: 8.75px;
  border-left: 1px solid rgba(35, 51, 63, 0.55);
}

.brand-text {
  display: grid;
  gap: 8.75px;
}

.brand-text strong {
  font-size: 20px;
  line-height: 1;
  color: var(--kgbn-blue-dark);
}

.brand-text small {
  font-size: 10px;
  line-height: 1.35;
  color: var(--kgbn-muted);
}

.navbar-toggler {
  flex: 0 0 auto;
  border: 0;
  padding: 17.5px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  background: var(--kgbn-ink);
  background-image: none !important;
  border-radius: 999px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
  width: 100%;
  margin-bottom: 17.5px;
}

.header-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--kgbn-blue-dark);
  transition: color 220ms ease;
}

.header-link:hover,
.header-link:focus {
  color: var(--kgbn-sky);
}

.header-link.active {
  color: var(--kgbn-sky);
}

.header-actions--logged-in {
  gap: 17.5px;
}

.header-actions--logged-in .header-link {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
  text-transform: none;
}

.header-actions--logged-in .header-link i {
  font-size: 15px;
  color: var(--kgbn-sky);
  transition: color 220ms ease;
}

.header-actions--logged-in .header-link:hover i,
.header-actions--logged-in .header-link:focus i {
  color: currentColor;
}

.member-greeting {
  color: var(--kgbn-blue-dark);
}

.site-nav {
  gap: 25px;
  width: 100%;
  justify-content: flex-end;
}

.site-nav .nav-link {
  position: relative;
  padding: 0 0 17.5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: var(--kgbn-ink);
  white-space: nowrap;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--kgbn-sky);
  transition: width 220ms ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link:focus::after,
.site-nav .nav-link.active::after {
  width: 100%;
}

.site-nav .dropdown-toggle:hover::after,
.site-nav .dropdown-toggle:focus::after,
.site-nav .dropdown-toggle.active::after,
.site-nav .dropdown-toggle.show::after {
  width: auto;
}

.site-nav .nav-link.active {
  color: var(--kgbn-blue);
}

.site-nav .dropdown-toggle::before {
  content: none;
}

.site-nav .dropdown-toggle::after {
  position: static;
  width: auto;
  height: auto;
  margin-left: 8.75px;
  vertical-align: 2px;
  border-top-color: currentColor;
  background: transparent;
  transition: transform 220ms ease;
}

.site-nav .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.site-nav .dropdown-menu {
  min-width: 245px;
  margin-top: 17.5px;
  padding: 17.5px;
  border: 1px solid rgba(19, 147, 197, 0.16);
  border-radius: 0;
  background: var(--kgbn-white);
  box-shadow: none;
}

.site-nav .dropdown-item {
  padding: 8.75px 17.5px;
  color: var(--kgbn-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  border-radius: 999px;
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus{
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
}


.dropdown-item.active, .dropdown-item:active {
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
}



@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-end;
    justify-content: center;
    min-width: 0;
  }

  .header-actions {
    width: auto;
    margin-bottom: 35px;
  }

  .site-nav {
    width: auto;
  }

  .about-layout {
    grid-template-columns: minmax(0, 700px) minmax(360px, 500px);
    gap: clamp(70px, 7vw, 105px);
    justify-content: center;
  }

  .about-visual {
    align-self: center;
    justify-self: start;
  }

  .about-text {
    align-self: center;
    justify-self: start;
  }

  .about-text .section-copy {
    max-width: 500px;
  }
}

.btn-kgbn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 40px;
  border: 0;
  border-radius: 999px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}
.btn-kgbn > i {
  font-size: 12px;

}

.btn-kgbn:hover,
.btn-kgbn:focus,
.btn-kgbn:focus-visible,
.btn-kgbn:active,
.btn-kgbn:first-child:active,
:not(.btn-check) + .btn-kgbn:active {
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
  transform: translateY(-6px);
  box-shadow: none !important;
}

.btn-kgbn--small {
  min-height: 35px;
  padding: 8.75px 35px;
  font-size: 13px;
  line-height: 18px;
    border-radius: 999px;
}

.btn-kgbn--light {
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
}

.btn-kgbn--light:hover,
.btn-kgbn--light:focus,
.btn-kgbn--light:focus-visible,
.btn-kgbn--light:active,
.btn-kgbn--light:first-child:active,
:not(.btn-check) + .btn-kgbn--light:active {
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
}

.btn-kgbn--outline {
  color: var(--kgbn-sky);
  background: var(--kgbn-white);
  border: 1px solid var(--kgbn-sky);
}

.btn-kgbn--outline:hover,
.btn-kgbn--outline:focus,
.btn-kgbn--outline:focus-visible,
.btn-kgbn--outline:active,
.btn-kgbn--outline:first-child:active,
:not(.btn-check) + .btn-kgbn--outline:active {
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  border-color: var(--kgbn-blue-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
  margin-top: 35px;
}

.login-modal .modal-dialog {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.login-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 147, 197, 0.15);
  border-radius: 0;
  background: var(--kgbn-white);
  box-shadow: none !important;
}



.login-panel {
  position: relative;
  z-index: 1;
  padding: 70px;
}

.login-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 87.5px;
  height: 70px;
  margin-bottom: 35px;
  color: var(--kgbn-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border-radius: 64% 36% 58% 42% / 42% 40% 60% 58%;
  background: rgba(113, 206, 250, 0.3);
  transform: rotate(-12deg);
}

.login-mark span {
  transform: rotate(12deg);
}

.login-mark span + span {
  margin-left: 8.75px;
  padding-left: 8.75px;
  border-left: 1px solid rgba(35, 51, 63, 0.55);
}

.login-modal h2 {
  margin-bottom: 35px;
}

.login-close {
  position: absolute;
  top: 17.5px;
  right: 17.5px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--kgbn-blue);
  background: rgba(220, 239, 246, 0.75);
}

.login-close:hover,
.login-close:focus {
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
}

.login-form {
  display: grid;
  gap: 17.5px;
}

.login-field {
  display: grid;
  gap: 8.75px;
}

.login-field label,
.login-options {
  color: var(--kgbn-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.login-input {
  position: relative;
}

.login-input i {
  position: absolute;
  top: 50%;
  left: 17.5px;
  color: var(--kgbn-blue);
  font-size: 18px;
  transform: translateY(-50%);
}

.login-input .form-control {
  min-height: 52.5px;
  padding: 17.5px 17.5px 17.5px 52.5px;
  border: 1px solid rgba(19, 147, 197, 0.22);
  border-radius: 8px;
  color: var(--kgbn-ink);
  background: rgba(220, 239, 246, 0.22);
  font-size: 15px;
  line-height: 22px;
}

.login-input .form-control:focus {
  border-color: var(--kgbn-sky);
  background: var(--kgbn-white);
  box-shadow: none;
}

.login-input .form-control::placeholder {
  color: rgba(40, 39, 38, 0.48);
}

.login-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 17.5px;
  margin-top: 8.75px;
}

.login-options a {
  color: var(--kgbn-blue);
  font-weight: 700;
}

.login-options a:hover,
.login-options a:focus {
  color: var(--kgbn-blue-dark);
}

.login-options .form-check {
  min-height: 22px;
  margin-bottom: 0;
  padding-left: 35px;
}

.login-options .form-check-input {
  width: 17.5px;
  height: 17.5px;
  margin-top: 2px;
  margin-left: -35px;
  border-color: rgba(19, 147, 197, 0.35);
  box-shadow: none;
}

.login-options .form-check-input:checked {
  border-color: var(--kgbn-blue);
  background-color: var(--kgbn-blue);
}

.login-submit {
  width: 100%;
  margin-top: 17.5px;
}

.modal-backdrop.show {
  background-color: #000;
  opacity: 0.72;
}

.eyebrow {
  margin: 0 0 17.5px;
  color: var(--kgbn-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy,
.section-copy {
  min-width: 0;
  max-width: 100%;
}

h1 {
  max-width: 560px;
  margin-bottom: 35px;
  color: var(--kgbn-sky);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

h1,
h2,
h3,
.lead-copy,
.intro-note,
.section-copy p {
  max-width: 100%;
}

h2 {
  margin-bottom: 35px;
  color: var(--kgbn-blue);
  font-size: 30px;
  font-weight: 800;
  line-height: 34px;
}

h3 {
  margin-bottom: 17.5px;
  color: var(--kgbn-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.lead-copy {
  max-width: 490px;
  margin-bottom: 35px;
  color: var(--kgbn-muted);
}

.intro-note {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--kgbn-sky);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.section-copy p {
  max-width: 560px;
  margin-bottom: 35px;
  color: var(--kgbn-muted);
}
.section-copy .eyebrow {
  color: var(--kgbn-sky);
}

.content-hero {
  padding-bottom: 70px;
}

.breadcrumb-wrap {
  margin-bottom: 70px;
}

.breadcrumb {
  gap: 8.75px;
  margin: 0;
  color: var(--kgbn-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 8.75px;
  color: var(--kgbn-sky);
  content: "/";
}

.breadcrumb a {
  color: var(--kgbn-blue);
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--kgbn-sky);
}

.content-intro {
  max-width: none;
}

.content-intro h1 {
  margin-bottom: 35px;
}

.content-intro p:not(.eyebrow) {
  max-width: none;
  margin-bottom: 0;
  color: var(--kgbn-muted);
  font-size: 17px;
  line-height: 27px;
}

.form-panel {
  position: relative;
  padding: 70px;
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.48) 100%);
}



.form-panel__footer {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: 35px;
  font-size:13px;
  font-style:italic;

}

.form-panel__heading h2 {
  margin-bottom: 17.5px;
}

.panel-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 17.5px;
  margin-bottom: 17.5px;
  color: var(--kgbn-blue);
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
}

.panel-title::before {
  content: "";
  width: 35px;
  height: 3px;
  flex: 0 0 35px;
  border-radius: 999px;
  background: var(--kgbn-sky);
}

.form-panel__heading p:not(.eyebrow) {

  margin-bottom: 0;
  color: var(--kgbn-muted);
}

.membership-form {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.gy-form {
  --bs-gutter-y: 35px;
}



.membership-form .form-label {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8.75px;
  color: var(--kgbn-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.membership-form .form-label span {
  color: var(--kgbn-blue);
}

.membership-form .form-label small {
  color: rgba(40, 39, 38, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.membership-form .form-control,
.membership-form .form-select {
  min-height: 52.5px;
  padding: 14px 17.5px;
  border: 1px solid rgba(19, 147, 197, 0.22);
  border-radius: 8px;
  color: var(--kgbn-ink);
  background-color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 22px;
  box-shadow: none;
}

.membership-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.membership-form .form-select {
  padding-right: 52.5px;
}

.membership-form .form-control:focus,
.membership-form .form-select:focus {
  border-color: var(--kgbn-sky);
  background-color: var(--kgbn-white);
  box-shadow: none;
}

.membership-form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 35px;
  padding-left: 0;
}

.membership-form-check .form-check-input {
  flex: 0 0 auto;
  float: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid rgba(19, 147, 197, 0.45);
  border-radius: 6px;
  background-color: var(--kgbn-white);
  box-shadow: none;
}

.membership-form-check .form-check-input:checked {
  border-color: var(--kgbn-blue);
  background-color: var(--kgbn-blue);
}

.membership-form-check .form-check-input:focus {
  border-color: var(--kgbn-sky);
  box-shadow: none;
}

.membership-form-check .form-check-label {
  color: var(--kgbn-blue-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.form-actions {
  display: flex;
  justify-content: stretch;
  margin-top: 70px;
}

.form-actions .btn-kgbn {
  width: 100%;
}

.editorial-layout {
  display: grid;
  gap: 105px;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 70px;
  align-items: center;
}

.editorial-feature--reverse {
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
}

.editorial-copy {
  max-width: 720px;
}

.editorial-copy h2 {
  margin-bottom: 35px;
}

.editorial-copy p {
  margin-bottom: 26.25px;
  color: var(--kgbn-muted);
  font-size: 16px;
  line-height: 28px;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 17.5px;
  margin-bottom: 17.5px;
  color: var(--kgbn-blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.editorial-kicker::before {
  content: "";
  width: 35px;
  height: 3px;
  border-radius: 999px;
  background: var(--kgbn-sky);
}

.editorial-photo {
  position: relative;
  margin: 0;
}

.editorial-photo .cms-image {
  aspect-ratio: 520 / 430;
  border-radius: 0;
  -webkit-mask-image: var(--mask-blob);
  mask-image: var(--mask-blob);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.editorial-photo::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -35px;
  z-index: -1;
  width: 175px;
  height: 175px;
  border-radius: 56% 44% 65% 35% / 45% 52% 48% 55%;
  background: var(--kgbn-shape-bg);
  transform: rotate(-14deg);
}

.editorial-photo--right::before {
  right: -35px;
  left: auto;
}

.media-shape--editorial {
  position: relative;
  max-width: 560px;
  margin: 0;
}


.media-shape--editorial-left::before {
  left: -35px;
}

.media-shape--editorial-right::before {
  right: -35px;
}

.editorial-panel {
  padding: 70px;
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.48) 100%);
}

.editorial-columns {
  columns: 2 340px;
  column-gap: 70px;
}

.editorial-columns p {
  break-inside: avoid;
  margin-bottom: 26.25px;
  color: var(--kgbn-muted);
  font-size: 16px;
  line-height: 28px;
}

.pull-quote {
  max-width: 880px;
  margin: 0;
  color: var(--kgbn-blue);
  font-size: 28px;
  font-weight: 800;
  line-height: 38px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
  margin-top: 70px;
}

.stat-item {
  padding-top: 26.25px;
  border-top: 2px solid var(--kgbn-sky);
}

.stat-item strong {
  display: block;
  color: var(--kgbn-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
}

.stat-item span {
  display: block;
  margin-top: 8.75px;
  color: var(--kgbn-muted);
  font-weight: 600;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 52.5px 70px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
}

.cta-panel h2 {
  margin-bottom: 17.5px;
  color: var(--kgbn-white);
}

.cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}
.cta-panel .btn-kgbn--light:hover {
  background-color:#fff;
  color:var(--kgbn-blue);

}





.board-section {
  margin-bottom: 105px;
}

.board-section:last-child {
  margin-bottom: 0;
}

.board-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 52.5px;
}

.board-section__heading p {
  max-width: 520px;
  margin: 0;
  color: var(--kgbn-muted);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 35px;
}

.board-card {
  min-width: 0;
}

.board-photo {
  position: relative;
  width: min(100%, 245px);
  margin: 0 0 26.25px;
}

.board-photo .cms-image {
  aspect-ratio: 1;
  -webkit-mask-image: var(--mask-news-left);
  mask-image: var(--mask-news-left);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.board-photo::after {
  content: "";
  position: absolute;
  right: -17.5px;
  bottom: -17.5px;
  z-index: -1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--kgbn-shape-bg);
}

.board-card h3 {
  margin-bottom: 10px;
}

.board-role {
  margin-bottom:15px;
  color: var(--kgbn-muted);
  font-weight: 700;
}

.board-mail {
  color: var(--kgbn-sky);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.board-mail:hover,
.board-mail:focus {
  color: var(--kgbn-sky);
}

.cms-image {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: var(--kgbn-soft);
}

.cms-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 200ms ease;
}

.cms-image:hover img {
  transform: scale(1.045);
}



.media-shape--hero {
  width: min(100%, 630px);
  max-width: 100%;
  aspect-ratio: 630 / 530;
  margin: 0 0 0 auto;
  transform: translateY(-35px);
  box-shadow: none !important;
}

.media-shape--hero > img,
.media-shape--event > img {
  -webkit-mask-image: var(--mask-blob);
  mask-image: var(--mask-blob);
}
.media-shape-wrapper {
  width: 100%;
  aspect-ratio: 630 / 530;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.media-shape-wrapper > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.media-shape--hero::before {
  top: 0;
  left: 10%;
  width: 39%;
  height: 30%;
  -webkit-mask-image: var(--mask-blob);
  mask-image: var(--mask-blob);
  background: var(--kgbn-shape-bg);
  transform: rotate(-8deg);
}

.about.section-space {
  padding-top: 105px;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: 70px;
  max-width: 1305px;
  margin-right: auto;
  margin-left: auto;
}

.about-visual,
.about-text {
  min-width: 0;
}

.about-photo-pair {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 35px;
  width: min(100%, 700px);
  aspect-ratio: 604 / 627;
}

.about-photo {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--kgbn-soft);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.about-photo--left {
  border-radius: 0 48% 48% 48% / 0 23% 17% 17%;
}

.about-photo--right {
  border-radius: 48% 48% 48% 0 / 23% 23% 17% 0;
}

.dot-accent {
  position: absolute;
  right: -35px;
  bottom: 35px;
  z-index: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-image: repeating-linear-gradient(0deg, var(--kgbn-line) 0 3px, transparent 3px 9px);
  opacity: 0.9;
}

.plus-accent {
  position: absolute;
  top: -35px;
  left: 50%;
  z-index: 2;
  width: 35px;
  height: 35px;
  color: var(--kgbn-sky);
  transform: translateX(-50%);
}

.plus-accent::before,
.plus-accent::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 35px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.plus-accent::after {
  transform: rotate(90deg);
}

.soft-panel {
  position: relative;
  width: calc(100% + (var(--wide-panel-bleed) * 2));
  margin-right: calc(var(--wide-panel-bleed) * -1);
  margin-left: calc(var(--wide-panel-bleed) * -1);
  padding: 70px calc(70px + var(--wide-panel-bleed)) 70px calc(50px + var(--wide-panel-bleed));
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.2) 0%, rgba(220, 239, 246, 0.45) 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 70px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading--center {
  display: block;
  margin-bottom: 35px;
  text-align: center;
}

.news-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 35px;
  height: 100%;
  min-height: 385px;
}

.news-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-thumb {
  position: relative;
  display: block;
  width: 140px;
  height: 140px;
}

.news-thumb-media {
  width: 100%;
  height: 100%;
  -webkit-mask-image: var(--mask-news-left);
  mask-image: var(--mask-news-left);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.news-thumb-media img {
  transform: scale(1.08);
}

.news-thumb:hover .news-thumb-media img {
  transform: scale(1.12);
}

.private-badge {
  position: absolute;
  top: 0px;
  left: 5px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  animation: kgbnPrivateBadgePulse 2200ms ease-in-out infinite;
  transform-origin: center;
}

.news .row > .col-lg-6:nth-child(2) .news-thumb-media {
  -webkit-mask-image: var(--mask-news-right);
  mask-image: var(--mask-news-right);
}

.news .row > .col-lg-6:nth-child(2) .news-thumb-media img {
  transform: scale(1.08);
}

.news .row > .col-lg-6:nth-child(2) .news-thumb:hover .news-thumb-media img {
  transform: scale(1.12);
}

.news-body .meta {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
  margin-bottom: 17.5px;
  color: var(--kgbn-sky);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.news-body h3 a {
  color: var(--kgbn-blue);
}

.news-body p:not(.eyebrow):not(.meta) {
  margin-bottom: 0;
  color: var(--kgbn-muted);
  font-size: 15px;
  line-height: 22px;
}

.news-body .news-footer--private p:not(.eyebrow):not(.meta) {
  color: var(--kgbn-white);
}


.news-footer {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 35px;
}

.news-footer--private {
  position: relative;
  z-index: 6;
  width: fit-content;
  max-width: 100%;
}

.private-access-popover {
  position: absolute;
  bottom: calc(100% + 8.75px);
  left: 50%;
  z-index: 10;
  width: 350px;
  max-width: calc(100vw - 140px);
  padding: 26.25px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8.75px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.private-access-popover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 17.5px;
  background: transparent;
}


.private-access-popover::after {
  content: "";
  position: absolute;
  bottom: -8.75px;
  left: 50%;
  width: 17.5px;
  height: 17.5px;
  background: var(--kgbn-blue-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
}

.news-footer--private:hover .private-access-popover,
.news-footer--private:focus-within .private-access-popover,
.news-footer--private.is-open .private-access-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.private-access-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 17.5px;
  margin-bottom: 17.5px;
  color: var(--kgbn-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
}

.private-access-icon {
  display: grid;
  flex: 0 0 35px;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
  border-radius: 999px;
  font-size: 14px;
}

.private-access-popover p {
  position: relative;
  z-index: 1;
  margin-bottom: 17.5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 22px;
}

.private-access-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17.5px;
  margin-top: 17.5px;
}

.private-access-link {
  color: var(--kgbn-sky);
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.private-access-link:hover,
.private-access-link:focus {
  color: var(--kgbn-white);
}

.private-access-popover .btn-kgbn {
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
}

.private-access-popover .btn-kgbn:hover,
.private-access-popover .btn-kgbn:focus {
  color: var(--kgbn-blue-dark);
  background: var(--kgbn-white);
}

.section-link,
.link-more {
  display: inline-flex;
  align-items: center;
  color: var(--kgbn-sky);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.section-link {
  margin-top: 35px;
}

.section-link--floating {
  position: absolute;
  left: 50%;
  bottom: -26.25px;
  z-index: 3;
  justify-content: center;
  min-width: 210px;
  min-height: 52.5px;
  margin-top: 0;
  padding: 14px 35px;
  gap: 17.5px;
  color: var(--kgbn-sky);
  background: var(--kgbn-white);
  border: 1px solid var(--kgbn-sky);
  border-radius: 999px;
  line-height: 22px;
  transform: translateX(-50%);
}

.section-link--floating:hover,
.section-link--floating:focus {
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  border-color: var(--kgbn-blue-dark);
}

.media-shape--event {
  width: min(100%, 630px);
  max-width: 100%;
  aspect-ratio: 630 / 530;
  margin: 0 0 0 auto;
  box-shadow: none !important;
}

.media-shape--event::before {
  top: 0;
  left: 10%;
  width: 39%;
  height: 30%;
  -webkit-mask-image: var(--mask-blob);
  mask-image: var(--mask-blob);
  background: var(--kgbn-shape-bg);
  transform: rotate(-8deg);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
  color: var(--kgbn-blue);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.event-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
}

.event-overview {
  display: grid;
  gap: 26.25px;
}

.event-list-panel {
  padding: 70px;
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.48) 100%);
}

.event-list-panel--white {
  padding-left: 70px;
  padding-right: 70px;
  background: transparent;
}

.event-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 52.5px;
}

.event-list-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--kgbn-muted);
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  padding: 35px 0;
  border-top: 1px solid rgba(19, 147, 197, 0.16);

}

.event-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.event-card:last-child {
  padding-bottom: 0;
}

.event-date {
  position: relative;
  display: grid;
  align-self: start;
  align-content: center;
  justify-items: center;
  gap: 0;
  min-height: 105px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
  border-radius: 8px;
  text-align: center;
}

.event-private-badge {
  top: -14px;
  left: -14px;
  width: 42px;
  height: 42px;
  font-size: 16px;
  color: var(--kgbn-blue-dark);
  background: var(--kgbn-sky);
  border: 3px solid var(--kgbn-white);
}

.event-date span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-date strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 38px;
}

.event-date .event-private-badge {
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.event-content {
  min-width: 0;
}

.event-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8.75px;
  margin-bottom: 17.5px;
}

.event-label {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--kgbn-blue);
  background: rgba(113, 206, 250, 0.18);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.event-label--dark {
  color: var(--kgbn-blue-dark);
  background: rgba(19, 147, 197, 0.13);
}

.event-label--past {
  color: var(--kgbn-blue);
  background: var(--kgbn-white);
  border: 1px solid rgba(19, 147, 197, 0.35);
}

.event-label--success {
  color: var(--kgbn-green);
  background: var(--kgbn-white);
  border: 1px solid var(--kgbn-green);
}

.event-content h2,
.event-content h3 {
  margin-bottom: 8.75px;
  color: var(--kgbn-blue);
}

.event-content h3 a {
  color: inherit;
}

.event-content h3 a:hover,
.event-content h3 a:focus {
  color: var(--kgbn-blue-dark);
}

.event-content p {
  max-width: 760px;
  margin-bottom: 17.5px;
  color: var(--kgbn-muted);
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 17.5px 35px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--kgbn-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.event-info li {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
}

.event-actions {
  display: flex;
  align-self: start;
  justify-content: flex-end;
  min-width: 210px;
}

.event-actions.news-footer--private {
  align-self: start;
  margin-top: 0;
  padding-top: 0;
}

.event-card--past .event-date {
  background: var(--kgbn-sky);
}

.event-card--past .event-content {
  opacity: 0.78;
}

.event-detail-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

.event-detail-copy {
  max-width: 760px;
}
.event-detail-copy .eyebrow {
font-size: 15px;
color: rgba(113, 206, 250, 0.75);


}



.event-detail-copy h1 {
  max-width: 760px;
}

.event-detail-copy p {
  margin-bottom: 26.25px;
  color: var(--kgbn-muted);
  font-size: 16px;
  line-height: 29px;
}

.event-detail-copy p:last-child {
  margin-bottom: 0;
}

.event-detail-photo {
  width: 100%;
  margin: 0 0 0 auto;
  transform: none;
}

.event-detail-photo .media-shape-wrapper {
  aspect-ratio: 630 / 530;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.event-facts-panel,
.event-register-panel,
.event-registration-panel {
  position: relative;
  padding: 52.5px;
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.5) 100%);
}

.event-facts-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--kgbn-blue);
  color: var(--kgbn-white);
}

.event-facts-panel h2,
.event-facts-panel h3 {
  margin-bottom: 35px;
  color: var(--kgbn-white);
}

.event-facts-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-facts-list li {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 17.5px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 17.5px;
}
.event-facts-list li:last-child {
  border-bottom: none;

}

.event-facts-list i {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
  border-radius: 999px;
}

.event-facts-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--kgbn-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
}

.event-map {
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  background: rgba(220, 239, 246, 0.42);
}

.map-wrap {
  width: 100%;
  margin-top: 105px;
  background: var(--ppc-stone);
}
#map_canvas {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%
}
#map {
  margin-top: 0;
  height: 100%
}




.event-register-panel h2,
.event-registration-panel h2 {
  margin-bottom: 17.5px;
}

.event-register-panel > p,
.event-registration-panel > p {
  margin-bottom: 35px;
  color: var(--kgbn-muted);
}

.registration-summary {
  display: grid;
  gap: 17.5px;
  margin-bottom: 35px;
}

.registration-summary-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8.75px 17.5px;
  padding-bottom: 17.5px;
  border-bottom: 1px solid rgba(19, 147, 197, 0.18);
  color: var(--kgbn-muted);
  font-size: 15px;
  line-height: 24px;
}

.registration-summary-item strong {
  color: var(--kgbn-ink);
}

.registration-status {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
  margin-bottom: 26.25px;
  padding: 8.75px 17.5px;
  color: var(--kgbn-green);
  background: var(--kgbn-white);
  border: 1px solid var(--kgbn-green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.registration-attendees {
  margin: 35px 0;
  padding: 26.25px;
  background: rgba(255, 255, 255, 0.52);
}

.registration-attendees--standalone {
  margin: 70px 0 0;
  padding: 52.5px;
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.5) 100%);
}

.registration-attendees__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 17.5px;
  margin-bottom: 22px;
}

.registration-attendees__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
  margin-bottom: 8.75px;
  color: var(--kgbn-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 18px;
  text-transform: uppercase;
}

.registration-attendees h3 {
  margin: 0;
  color: var(--kgbn-blue-dark);
  font-size: 24px;
  line-height: 30px;
}

.registration-attendees__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 7px 17.5px;
  border-radius: 999px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}

.registration-attendees__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 17.5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-attendees__list li {
  display: grid;
  gap: 3px;
  padding: 13px 17.5px;
  border-radius: 8px;
  background: rgba(220, 239, 246, 0.45);
}

.registration-attendees__list span {
  color: var(--kgbn-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
}

.registration-attendees__list strong {
  color: var(--kgbn-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.event-side-note {
  margin-top: 90px;
  padding: 35px;
  color: var(--kgbn-muted);
  background: rgba(220, 239, 246, 0.35);
}

.event-side-note h3 {
  margin-bottom: 17.5px;
  color: var(--kgbn-blue);
  font-size: 22px;
  line-height: 28px;
}

.event-report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 17.5px 35px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  color: var(--kgbn-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}

.event-report-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
}

.report-article {
  color: var(--kgbn-muted);
  font-size: 17px;
  line-height: 31px;
}

.report-article p {
  margin-bottom: 26.25px;
}

.report-article p:last-child {
  margin-bottom: 0;
}

.report-article strong {
  color: var(--kgbn-ink);
  font-weight: 800;
}

.downloads-panel {
  padding: 52.5px;
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.5) 100%);
}

.downloads-panel h2 {
  margin-bottom: 35px;
}

.download-list {
  display: grid;
  gap: 17.5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-item {
  display: grid;
  grid-template-columns: 52.5px minmax(0, 1fr) auto;
  gap: 17.5px;
  align-items: center;
  padding: 17.5px;
  color: var(--kgbn-ink);
  background: var(--kgbn-white);
  border: 1px solid rgba(19, 147, 197, 0.16);
  transition: border-color 220ms ease, transform 220ms ease;
}

.download-item:hover,
.download-item:focus {
  border-color: var(--kgbn-sky);
  transform: translateY(-3px);
}

.download-icon {
  display: grid;
  place-items: center;
  width: 52.5px;
  height: 52.5px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
  border-radius: 999px;
  font-size: 18px;
}

.download-title {
  display: block;
  color: var(--kgbn-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 24px;
}

.download-meta {
  color: var(--kgbn-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.download-action {
  color: var(--kgbn-sky);
  font-size: 18px;
}

.report-gallery {
  columns: 3 260px;
  column-gap: 17.5px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 17.5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item--tall img {
  aspect-ratio: 4 / 5;
}

.gallery-item--wide img {
  aspect-ratio: 16 / 10;
}

.gallery-item--square img {
  aspect-ratio: 1 / 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  place-items: center;
  padding: 35px;
  background: rgba(0, 0, 0, 0.82);
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: 35px;
  right: 35px;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 999px;
  color: var(--kgbn-blue-dark);
  background: var(--kgbn-white);
}

.actua-masonry {
  columns: 3 300px;
  column-gap: 35px;
}

.actua-load-sentinel {
  min-height: 1px;
}

.actua-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 35px;
  color: var(--kgbn-ink);
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.48) 100%);
  border: 1px solid rgba(19, 147, 197, 0.12);
  break-inside: avoid;
}

.actua-card.is-hidden {
  display: none;
}

.actua-card.is-loading-in {
  animation: kgbnActuaCardIn 520ms ease both;
}

.actua-card--soft {
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.22) 0%, rgba(220, 239, 246, 0.48) 100%);
}

.actua-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.actua-card__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.actua-card--tall .actua-card__media img {
  height: 420px;
}

.actua-card--compact .actua-card__media img {
  height: 220px;
}

.actua-card:hover .actua-card__media img {
  transform: scale(1.04);
}

.actua-card__body {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 35px;
}

.actua-card__meta,
.article-meta,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26.25px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--kgbn-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.actua-card__meta li,
.article-meta li,
.article-byline li {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
}

.actua-card h2,
.actua-card h3 {
  margin: 17.5px 0;
  color: var(--kgbn-blue);
  font-size: 22px;
  line-height: 28px;
}

.actua-card p {
  margin-bottom: 0;
  color: var(--kgbn-muted);
  font-size: 15px;
  line-height: 24px;
}

.actua-card .news-footer {
  padding-top: 35px;
  width: 100%;
}

.actua-card .news-footer .btn-kgbn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.actua-card .btn-kgbn--outline {
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
  border-color: var(--kgbn-sky);
}

.actua-card .btn-kgbn--outline:hover,
.actua-card .btn-kgbn--outline:focus,
.actua-card .btn-kgbn--outline:focus-visible,
.actua-card .btn-kgbn--outline:active {
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  border-color: var(--kgbn-blue-dark);
}

.actua-card .private-access-popover,
.actua-card .private-access-heading,
.actua-card .private-access-popover p {
  color: var(--kgbn-white);
}

.actua-card .private-access-popover {
  background: var(--kgbn-blue-dark);
}

.actua-card .private-access-popover::after {
  background: var(--kgbn-blue-dark);
}

.actua-card .private-badge {
  top: 17.5px;
  left: 17.5px;
}

@keyframes kgbnPrivateBadgePulse {
  0%,
  68%,
  100% {
    transform: translateY(0) scale(1);
  }

  76% {
    transform: translateY(-6px) scale(1.06);
  }

  84% {
    transform: translateY(0) scale(0.98);
  }

  92% {
    transform: translateY(-3px) scale(1.03);
  }
}

@keyframes kgbnActuaCardIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-meta {
  margin-top: 35px;
    margin-bottom: 35px;
}

.article-byline {
  margin-top: 5px;
  margin-bottom: 35px;
  color: var(--kgbn-blue-dark);
  font-weight: 700;
}

.article-source {
  margin-top: 35px;
  padding-top: 26.25px;
  border-top: 1px solid rgba(19, 147, 197, 0.18);
  color: var(--kgbn-muted);
  font-size: 14px;
  line-height: 22px;
}

.article-source a {
  color: var(--kgbn-blue);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 35px;
  align-items: start;
}

.contact-info-panel {
  padding: 52.5px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
}

.contact-info-panel h2 {
  color: var(--kgbn-white);
}

.contact-info-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-info-list {
  display: grid;
  gap: 26.25px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 17.5px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 17.5px;
}
.contact-info-list li:last-child {
  border-bottom: none;
}


.contact-info-list i {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--kgbn-white);
  background: var(--kgbn-sky);
  border-radius: 999px;
}

.contact-info-list strong,
.contact-info-list span,
.contact-info-list a {
  display: block;
}

.contact-info-list strong {
  margin-bottom: 5px;
  color: var(--kgbn-white);
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
}

.contact-info-list span,
.contact-info-list a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 24px;
}

.contact-info-list a:hover,
.contact-info-list a:focus {
  color: var(--kgbn-white);
}

.soft-panel--faq {
  padding-top: 70px;
  padding-bottom: 70px;
}

.kgbn-accordion {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.kgbn-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(22, 153, 197, 0.2);
  background: transparent;
}

.kgbn-accordion .accordion-item:last-child {
  border-bottom: 0;
}

.kgbn-accordion .accordion-button {
  padding: 10px 0;
  color: var(--kgbn-ink);
  background: transparent;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.kgbn-accordion .accordion-button::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--kgbn-ink);
  background-image: none;
  font-size: 18px;
  font-weight: 500;
  transform: none;
}

.kgbn-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
}

.kgbn-accordion .accordion-body {
  padding: 15px 0 45px 0px;
  color: var(--kgbn-muted);
  font-size: 15px;
  line-height: 22px;
}

.site-footer {
  padding-top: 70px;
  padding-bottom: 35px;
}

.footer-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding-right: 70px;
  margin-bottom: -26.25px;
}

.footer-panel {
  width: calc(100% + (var(--wide-panel-bleed) * 2));
  margin-right: calc(var(--wide-panel-bleed) * -1);
  margin-left: calc(var(--wide-panel-bleed) * -1);
  padding: 70px calc(105px + var(--wide-panel-bleed));
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
}

.footer-brand {
  display: inline-flex;
}

.brand-mark--footer {
  color: var(--kgbn-white);
}

.brand-mark--footer::before,
.brand-mark--footer::after {
  background: rgba(255, 255, 255, 0.15);
}

.brand-mark--footer span + span {
  border-left-color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 25px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--kgbn-white);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17.5px;
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 22px;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.86);
}

.credit {
  margin: 35px 0 0;
  color: #71CEFA;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.credit i {
  margin: 0 4px;
  color: var(--kgbn-blue);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1199px) {
  .site-header {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }

  .brand {
    min-width: 245px;
  }

  .brand-text small {
    display: none;
  }

  .header-actions,
  .site-nav {
    gap: 17.5px;
  }

  h1 {
    font-size: 30px;
    line-height: 34px;
  }
}

@media (max-width: 991px) {
  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .navbar-collapse {
    margin-top: 17.5px;
    padding: 35px;
    background: linear-gradient(111deg, rgba(220, 239, 246, 0.2) 0%, rgba(220, 239, 246, 0.45) 100%);
  }

  .header-actions {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 15px;
    width: 100%;
    margin-bottom: 35px;
    text-align: center;
  }

.header-actions .header-link:nth-of-type(1),   .header-actions .header-link:nth-of-type(2) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 8.75px 26.25px;
    border-radius: 999px;
    color: var(--kgbn-white);
    background: var(--kgbn-sky);
  }

  .header-actions .header-link:nth-of-type(1):hover,
  .header-actions .header-link:nth-of-type(1):focus,   .header-actions .header-link:nth-of-type(2):hover,
  .header-actions .header-link:nth-of-type(2):focus {
    color: var(--kgbn-white);
    background: var(--kgbn-blue-dark);
  }

  .header-actions .btn-kgbn {
    flex: 0 0 auto;
    width: auto;
    min-width: 140px;
  }

  .site-nav {
    align-items: left;
    gap: 17.5px;
    text-align: left;
  }

  .site-nav .nav-link {
    display: inline-flex;
    padding-bottom: 8.75px;
  }

  .media-shape--hero,
  .media-shape--event {
    margin-right: auto;
    margin-left: auto;
    transform: none;
  }

  .about-photo-pair {
    margin-right: auto;
    margin-left: auto;
  }

  .soft-panel {
    padding: 70px 35px;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .footer-panel {
    padding: 70px 35px;
  }

  .form-panel {
    padding: 70px 35px;
  }

  .form-panel::before {
    top: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
  }

  .editorial-feature,
  .editorial-feature--reverse {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .editorial-feature--reverse .editorial-photo,
  .editorial-feature--reverse .media-shape--editorial {
    order: -1;
  }

  .editorial-panel {
    padding: 70px 35px;
  }

  .event-list-panel {
    padding: 70px 35px;
  }

  .event-detail-hero,
  .event-detail-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .event-detail-photo {
    margin-right: auto;
    margin-left: auto;
  }

  .event-facts-panel,
  .event-register-panel,
  .event-registration-panel {
    padding: 52.5px 35px;
  }

  .event-card {
    grid-template-columns: 87.5px minmax(0, 1fr);
  }

  .event-actions {
    grid-column: 2;
    justify-content: flex-start;
    min-width: 0;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 52.5px 35px;
  }

  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cta {
    justify-content: center;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .navbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 17.5px;
  }

  .brand {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-right: 0;
  }

  .brand img {
    width: min(100%, 280px);
  }

  .navbar-collapse {
    grid-column: 1 / -1;
  }

  .brand-mark {
    width: 87.5px;
    height: 70px;
    font-size: 18px;
  }

  h1 {
    font-size: 27px;
    line-height: 31px;
  }

  h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .about-photo-pair {
    width: min(100%, 430px);
  }

  .plus-accent {
    top: -17.5px;
    left: 50%;
    right: auto;
  }

  .news-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-thumb {
    width: 140px;
    height: 140px;
  }

  .private-access-popover {
    width: min(350px, calc(100vw - 70px));
    max-width: calc(100vw - 70px);
    left: 50%;
  }

  .editorial-layout {
    gap: 70px;
  }

  .pull-quote {
    font-size: 23px;
    line-height: 32px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .board-section__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-list-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 35px;
  }

  .event-detail-copy p {
    font-size: 16px;
    line-height: 27px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    width: 105px;
  }

  .event-actions {
    grid-column: auto;
  }

  .event-map,
  .event-map iframe {
    min-height: 315px;
  }

  .download-item {
    grid-template-columns: 52.5px minmax(0, 1fr);
  }

  .download-action {
    grid-column: 2;
  }

  .actua-masonry {
    columns: 2 260px;
    column-gap: 17.5px;
  }

  .actua-card {
    margin-bottom: 17.5px;
  }

  .actua-card__body,
  .contact-info-panel {
    padding: 35px;
  }

  .actua-card--tall .actua-card__media img,
  .actua-card__media img {
    height: 280px;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .board-photo {
    width: min(100%, 210px);
  }

  .footer-meta {
    justify-content: flex-start;
    margin-top: 35px;
  }
}

@media (max-width: 575px) {
  .section-space {
    padding-top: 35px;
    padding-bottom: 70px;
  }

  .container-xxl {
    padding-right: 35px;
    padding-left: 35px;
  }

  .site-header .container-xxl {
    padding-right: 17.5px;
    padding-left: 17.5px;
  }

  .brand {
    max-width: 100%;
  }

  .brand img {
    width: min(100%, 245px);
  }

  .navbar-toggler {
    padding: 8.75px;
  }

  .soft-panel {
    width: calc(100% + 70px);
    margin-right: -35px;
    margin-left: -35px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .breadcrumb-wrap,
  .form-panel__heading {
    margin-bottom: 35px;
  }

  .content-intro p:not(.eyebrow) {
    font-size: 15px;
    line-height: 24px;
  }

  .form-panel {
    width: calc(100% + 70px);
    margin-right: -35px;
    margin-left: -35px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .form-panel::before {
    opacity: 0.55;
  }

  .editorial-panel,
  .event-list-panel,
  .event-register-panel,
  .event-registration-panel,
  .cta-panel {
    width: calc(100% + 70px);
    margin-right: -35px;
    margin-left: -35px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .editorial-photo::before {
    width: 105px;
    height: 105px;
  }

  .media-shape--editorial::before {
    width: 105px;
    height: 105px;
  }

  .event-facts-panel,
  .event-side-note {
    padding: 35px 17.5px;
  }

  .downloads-panel {
    width: calc(100% + 70px);
    margin-right: -35px;
    margin-left: -35px;
    padding: 35px;
  }

  .report-article {
    font-size: 16px;
    line-height: 28px;
  }

  .report-gallery {
    columns: 1;
  }

  .actua-masonry {
    columns: 1;
  }

  .actua-card__media img,
  .actua-card--tall .actua-card__media img,
  .actua-card--compact .actua-card__media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .actua-card__body,
  .contact-info-panel {
    padding: 26.25px;
  }

  .contact-info-panel {
    width: calc(100% + 70px);
    margin-right: -35px;
    margin-left: -35px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-link--floating {
    width: calc(100% - 70px);
    min-width: 0;
  }

  .btn-kgbn,
  .link-more {
    width: 100%;
  }

  .header-actions .btn-kgbn {
    width: auto;
  }

  .login-modal .modal-dialog {
    margin-right: 17.5px;
    margin-left: 17.5px;
  }

  .login-panel {
    padding: 52.5px 35px 35px;
  }

  .footer-panel {
    width: calc(100% + 70px);
    margin-right: -35px;
    margin-left: -35px;
    padding-right: 35px;
    padding-left: 35px;
    text-align: center;
  }

  .footer-cta {
    justify-content: center;
    padding-right: 0;
  }

  .footer-panel .row > [class*="col-"] {
    width: 100%;
  }

  .footer-brand {
    justify-content: center;
    width: 100%;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-meta {
    justify-content: center;
  }

  .news-footer--private {
    width: 100%;
  }

  .form-actions {
    margin-top: 35px;
  }

  .form-actions .btn-kgbn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: min(100%, 217px);
  }
}

@media (max-width: 991px) {
  .header-actions--logged-in {
    gap: 10px;
  }

  .header-actions--logged-in .header-link,
  .header-actions--logged-in .header-link:nth-of-type(1),
  .header-actions--logged-in .header-link:nth-of-type(2) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 8.75px 17.5px;
    border-radius: 999px;
    color: var(--kgbn-white);
    background: var(--kgbn-sky);
    text-transform: none;
  }

  .header-actions--logged-in .header-link i,
  .header-actions--logged-in .header-link:nth-of-type(1) i,
  .header-actions--logged-in .header-link:nth-of-type(2) i {
    color: var(--kgbn-white);
  }

  .header-actions--logged-in .header-link:hover,
  .header-actions--logged-in .header-link:focus,
  .header-actions--logged-in .header-link:nth-of-type(1):hover,
  .header-actions--logged-in .header-link:nth-of-type(1):focus,
  .header-actions--logged-in .header-link:nth-of-type(2):hover,
  .header-actions--logged-in .header-link:nth-of-type(2):focus {
    color: var(--kgbn-white);
    background: var(--kgbn-blue-dark);
  }
}

@media (max-width: 575px) {
  .header-actions--logged-in .header-link,
  .header-actions--logged-in .header-link:nth-of-type(1),
  .header-actions--logged-in .header-link:nth-of-type(2) {
    width: 100%;
  }
}

/* Members portal */
.portal-body {
  min-height: 100vh;
  background: #f6fbfd;
}

.portal-shell {
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  min-height: 100vh;
}

.portal-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 35px;
  color: var(--kgbn-white);
  background: linear-gradient(165deg, var(--kgbn-blue-dark) 0%, var(--kgbn-blue) 100%);
}

.portal-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17.5px;
  width: 100%;
  padding-bottom: 26.25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--kgbn-white);
  text-align: center;
}

.portal-brand:hover,
.portal-brand:focus {
  color: var(--kgbn-white);
}

.portal-brand img {
  width: 100%;
  max-width: 175px;
  height: auto;
  opacity: 1;
}

.portal-brand span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 22px;
  text-transform: uppercase;
}

.portal-user {
  margin-top: 35px;
  padding: 26.25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.portal-user strong {
  display: block;
  font-size: 18px;
  line-height: 24px;
}

.portal-user span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 20px;
}

.portal-menu-toggle {
  display: none;
}

.portal-nav {
  display: grid;
  gap: 8.75px;
  margin-top: 35px;
}

.portal-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 45px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.portal-nav a:hover,
.portal-nav a:focus,
.portal-nav a.active {
  color: var(--kgbn-white);
  background: rgba(255, 255, 255, 0.14);
}

.portal-nav i {
  width: 18px;
  color: var(--kgbn-sky);
  text-align: center;
}

.portal-sidebar-footer {
  margin-top: auto;
  padding-top: 35px;
}

.portal-sidebar-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.portal-sidebar-footer a:hover,
.portal-sidebar-footer a:focus {
  color: var(--kgbn-white);
}

.portal-main {
  min-width: 0;
  padding: 35px 70px 70px;
}

.portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 70px;
}

.portal-topbar__eyebrow {
  margin: 0 0 6px;
  color: var(--kgbn-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 18px;
  text-transform: uppercase;
}

.portal-topbar h1 {
  margin: 0;
  color: var(--kgbn-blue-dark);
  font-size: 38px;
  line-height: 44px;
}

.portal-actions {
  display: flex;
  align-items: center;
  gap: 17.5px;
}

.portal-card,
.portal-panel,
.portal-list-block {
  border: 1px solid rgba(93, 198, 239, 0.22);
  border-radius: 10px;
  background: var(--kgbn-white);
}

.portal-card {
  padding: 35px;
}

.portal-card--link {
  color: inherit;
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.portal-card--link:hover,
.portal-card--link:focus {
  color: inherit;
  border-color: var(--kgbn-sky);
  box-shadow: 0 17.5px 35px rgba(6, 65, 95, 0.08);
  transform: translateY(-3px);
}

.portal-card--link:focus-visible {
  outline: 2px solid var(--kgbn-sky);
  outline-offset: 4px;
}

.portal-card--sky,
.portal-panel--sky {
  background: linear-gradient(111deg, rgba(220, 239, 246, 0.55) 0%, rgba(220, 239, 246, 0.82) 100%);
}

.portal-card--blue {
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
  border-color: var(--kgbn-blue);
}

.portal-card h2,
.portal-card h3,
.portal-panel h2,
.portal-panel h3 {
  margin: 0 0 17.5px;
  color: var(--kgbn-blue);
}

.portal-card--blue h2,
.portal-card--blue h3,
.portal-card--blue p {
  color: var(--kgbn-white);
}

.portal-card p:last-child,
.portal-panel p:last-child {
  margin-bottom: 0;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 35px;
}

.portal-grid > .span-4 {
  grid-column: span 4;
}

.portal-grid > .span-5 {
  grid-column: span 5;
}

.portal-grid > .span-6 {
  grid-column: span 6;
}

.portal-grid > .span-7 {
  grid-column: span 7;
}

.portal-grid > .span-8 {
  grid-column: span 8;
}

.portal-grid > .span-12 {
  grid-column: span 12;
}

.portal-alert {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17.5px;
  padding: 22px 26.25px;
  border: 0;
  border-radius: 10px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue-dark);
  animation: kgbnPortalNotice 1.8s ease-in-out infinite;
}

.portal-alert.is-dismissed {
  display: none;
}

.portal-alert > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  color: var(--kgbn-blue-dark);
  background: var(--kgbn-sky);
}

.portal-alert strong {
  display: block;
  margin-bottom: 4px;
}

.portal-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.portal-alert button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35px;
  margin-left: auto;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 999px;
  color: var(--kgbn-white);
  background: rgba(255, 255, 255, 0.12);
}

.portal-alert button i {
  font-size: 14px;
}

@keyframes kgbnPortalNotice {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.portal-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17.5px;
}

.portal-stat strong {
  display: block;
  color: var(--kgbn-blue);
  font-size: 34px;
  line-height: 40px;
}

.portal-stat span {
  display: block;
  color: var(--kgbn-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-stat i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52.5px;
  width: 52.5px;
  height: 52.5px;
  border-radius: 999px;
  color: var(--kgbn-blue);
  background: rgba(93, 198, 239, 0.18);
}

.portal-event-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26.25px;
}

.portal-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
}

.portal-countdown strong {
  font-size: 36px;
  line-height: 36px;
}

.portal-countdown span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 17.5px 0 0;
  padding: 0;
  list-style: none;
  color: var(--kgbn-blue);
  font-size: 14px;
  font-weight: 700;
}

.portal-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8.75px;
}

.portal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
}

.portal-search {
  position: relative;
  flex: 1 1 380px;
}

.portal-search i {
  position: absolute;
  top: 50%;
  left: 17.5px;
  color: var(--kgbn-blue);
  transform: translateY(-50%);
}

.portal-search .form-control {
  padding-left: 52.5px;
}

.portal-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.portal-alphabet a,
.portal-alphabet span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.portal-alphabet a {
  color: var(--kgbn-blue);
  background: rgba(93, 198, 239, 0.16);
  font-weight: 800;
}

.portal-alphabet span {
  color: rgba(46, 62, 72, 0.38);
  background: rgba(46, 62, 72, 0.06);
}

.portal-list-block {
  overflow: hidden;
}

.portal-list-heading {
  display: flex;
  align-items: center;
  gap: 17.5px;
  padding: 22px 26.25px;
  background: rgba(220, 239, 246, 0.6);
}

.portal-list-heading h2 {
  margin: 0;
  color: var(--kgbn-blue);
  font-size: 26px;
  line-height: 32px;
}

.portal-member-list,
.portal-document-list,
.portal-activity-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.35fr 0.9fr auto;
  gap: 17.5px;
  align-items: center;
  padding: 22px 26.25px;
  border-top: 1px solid rgba(93, 198, 239, 0.18);
}

.portal-row.is-filtered {
  display: none;
}

.portal-row strong {
  color: var(--kgbn-ink);
}

.portal-row span,
.portal-row a:not(.btn) {
  color: var(--kgbn-muted);
  font-size: 14px;
}

.portal-row a:not(.btn):hover,
.portal-row a:not(.btn):focus {
  color: var(--kgbn-blue);
}

.portal-detail-header {
  display: flex;
  align-items: center;
  gap: 26.25px;
}

.portal-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
  font-size: 34px;
  font-weight: 800;
}

.portal-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17.5px 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-info-list li {
  display: grid;
  gap: 4px;
}

.portal-info-list span {
  color: var(--kgbn-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-info-list strong {
  color: var(--kgbn-ink);
  font-size: 15px;
  line-height: 24px;
}

.portal-share-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17.5px;
  padding: 17.5px 0;
  border-top: 1px solid rgba(93, 198, 239, 0.18);
}

.portal-share-option:first-child {
  border-top: 0;
  padding-top: 0;
}

.portal-share-option strong {
  display: block;
}

.portal-share-option span {
  display: block;
  color: var(--kgbn-muted);
  font-size: 13px;
}

.portal-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 56px;
  width: 56px;
  height: 28px;
  padding-left: 0;
  margin: 0;
}

.portal-switch.form-switch {
  padding-left: 0;
}

.portal-switch .form-check-input {
  width: 52px;
  height: 28px;
  margin: 0;
  border: 1px solid rgba(93, 198, 239, 0.55);
  background-color: rgba(220, 239, 246, 0.86);
  cursor: pointer;
}

.portal-switch .form-check-input:checked {
  border-color: var(--kgbn-blue);
  background-color: var(--kgbn-blue);
}

.portal-switch .form-check-input:focus {
  border-color: var(--kgbn-sky);
  box-shadow: 0 0 0 4px rgba(93, 198, 239, 0.25);
}

.portal-tabs {
  gap: 10px;
  margin-bottom: 35px;
  border: 0;
}

.portal-tabs .nav-link {
  border: 1px solid rgba(93, 198, 239, 0.55);
  border-radius: 999px;
  color: var(--kgbn-blue);
  font-weight: 800;
}

.portal-tabs .nav-link.active {
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
  border-color: var(--kgbn-blue);
}

.portal-activity-card,
.portal-document-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26.25px;
  align-items: center;
  padding: 26.25px;
  border-top: 1px solid rgba(93, 198, 239, 0.18);
}

.portal-activity-card:first-child,
.portal-document-card:first-child {
  border-top: 0;
}

.portal-datebox {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  color: var(--kgbn-white);
  background: var(--kgbn-blue);
}

.portal-datebox--past {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(93, 198, 239, 0.56);
}

.portal-datebox span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-datebox strong {
  font-size: 28px;
  line-height: 30px;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--kgbn-blue);
  background: rgba(93, 198, 239, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.portal-badge--success {
  color: #2b7b2f;
  background: rgba(78, 176, 83, 0.15);
}

.portal-badge--muted {
  color: var(--kgbn-muted);
  background: rgba(46, 62, 72, 0.08);
}

.portal-share-option .portal-badge {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--kgbn-blue);
}

.portal-share-option .portal-badge--success {
  color: #2b7b2f;
}

.portal-share-option .portal-badge--muted {
  color: var(--kgbn-muted);
}

.portal-doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--kgbn-blue);
  background: rgba(93, 198, 239, 0.16);
  font-size: 24px;
}

.portal-profile-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 35px;
  padding: 35px 0;
  border-top: 1px solid rgba(93, 198, 239, 0.18);
}

.portal-profile-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.portal-profile-form .portal-share-option,
.portal-profile-read .portal-share-option {
  align-self: start;
  padding: 17.5px 26.25px 17.5px 17.5px;
  border: 1px solid rgba(93, 198, 239, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.portal-profile-form .portal-share-option + .portal-share-option,
.portal-profile-read .portal-share-option + .portal-share-option {
  margin-top: 17.5px;
}

.portal-profile-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17.5px;
}

.portal-profile-field {
  display: grid;
  gap: 8.75px;
}

.portal-profile-field label,
.portal-profile-field span {
  color: var(--kgbn-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-profile-form .form-control,
.portal-profile-form .form-select {
  min-height: 45px;
  padding: 10px 14px;
  border: 1px solid rgba(93, 198, 239, 0.45);
  border-radius: 8px;
  color: var(--kgbn-ink);
  background-color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 600;
}

.portal-profile-form .form-control:focus,
.portal-profile-form .form-select:focus {
  border-color: var(--kgbn-sky);
  box-shadow: 0 0 0 4px rgba(93, 198, 239, 0.18);
}

.portal-profile-field strong {
  color: var(--kgbn-blue-dark);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 1199px) {
  .portal-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .portal-main {
    padding-right: 35px;
    padding-left: 35px;
  }

  .portal-grid > .span-4,
  .portal-grid > .span-5,
  .portal-grid > .span-6,
  .portal-grid > .span-7,
  .portal-grid > .span-8 {
    grid-column: span 12;
  }
}

@media (max-width: 991px) {
  .portal-shell {
    display: block;
  }

  .portal-sidebar {
    position: sticky;
    top: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: auto minmax(160px, 1fr) auto;
    align-items: center;
    gap: 17.5px;
    min-height: 0;
    padding: 17.5px 35px;
  }

  .portal-brand {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    width: auto;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: left;
  }

  .portal-brand img {
    max-width: 105px;
  }

  .portal-brand span {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 16px;
  }

  .portal-user {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    padding: 12px 17.5px;
  }

  .portal-user strong {
    font-size: 15px;
    line-height: 20px;
  }

  .portal-user span {
    margin-top: 0;
    font-size: 12px;
    line-height: 18px;
  }

  .portal-menu-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 45px;
    padding: 10px 17.5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--kgbn-white);
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 18px;
    text-transform: uppercase;
  }

  .portal-menu-toggle:hover,
  .portal-menu-toggle:focus {
    color: var(--kgbn-blue-dark);
    background: var(--kgbn-sky);
  }

  .portal-nav,
  .portal-sidebar-footer {
    grid-column: 1 / -1;
    grid-row: auto;
    display: none;
  }

  .portal-sidebar.is-menu-open .portal-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 17.5px;
  }

  .portal-sidebar.is-menu-open .portal-sidebar-footer {
    display: block;
    margin-top: 0;
    padding-top: 17.5px;
  }

  .portal-main {
    padding: 35px 35px 70px;
  }

  .portal-topbar,
  .portal-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-row,
  .portal-activity-card,
  .portal-document-card,
  .portal-profile-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .portal-sidebar,
  .portal-main,
  .portal-card,
  .portal-list-heading,
  .portal-row,
  .portal-activity-card,
  .portal-document-card {
    padding: 35px 17.5px;
  }

  .portal-sidebar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 17.5px;
  }

  .portal-brand img {
    max-width: 92px;
  }

  .portal-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .portal-menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .portal-brand span {
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 15px;
  }

  .portal-user {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .portal-sidebar.is-menu-open .portal-user {
    display: block;
  }

  .portal-sidebar.is-menu-open .portal-nav {
    grid-row: 3;
  }

  .portal-sidebar.is-menu-open .portal-sidebar-footer {
    grid-row: 4;
  }

  .portal-nav,
  .portal-info-list,
  .portal-profile-fields,
  .registration-attendees__list {
    grid-template-columns: 1fr;
  }

  .portal-sidebar.is-menu-open .portal-nav {
    grid-template-columns: 1fr;
  }

  .registration-attendees {
    padding: 35px 17.5px;
  }

  .registration-attendees__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-event-highlight {
    grid-template-columns: 1fr;
  }

  .portal-actions,
  .portal-actions .btn-kgbn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .portal-sidebar {
    gap: 10px;
  }

  .portal-brand {
    gap: 8px;
  }

  .portal-brand img {
    max-width: 76px;
  }

  .portal-brand span {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 14px;
  }

  .portal-menu-toggle {
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }
}
