:root {
  --gck-primary: var(--global-palette1, #a33c35);
  --gck-primary-dark: #7f2d28;
  --gck-ink: #18201d;
  --gck-forest: #25473a;
  --gck-sage: #456f5e;
  --gck-gold: #d3a34c;
  --gck-cream: #f7f2e9;
  --gck-paper: #fffdf8;
  --gck-white: #ffffff;
  --gck-muted: #686f6b;
  --gck-line: rgba(24, 32, 29, 0.16);
  --gck-shadow: 0 20px 60px rgba(24, 32, 29, 0.12);
  --gck-radius: 18px;
  --gck-radius-small: 10px;
  --gck-container: 1240px;
}

.gck-site {
  color: var(--gck-ink);
  background: var(--gck-paper);
}

.gck-site * {
  box-sizing: border-box;
}

.gck-front-page #inner-wrap,
.post-type-archive-gck_event #inner-wrap,
.single-gck_event #inner-wrap {
  display: block;
  max-width: none;
  padding: 0;
}

.gck-container {
  width: min(calc(100% - 40px), var(--gck-container));
  margin-inline: auto;
}

.gck-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.gck-topbar {
  position: relative;
  z-index: 20;
  color: var(--gck-white);
  background: var(--gck-ink);
  font-size: 0.84rem;
}

.gck-topbar__inner,
.gck-topbar__contact,
.gck-topbar__links {
  display: flex;
  align-items: center;
}

.gck-topbar__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 18px;
}

.gck-topbar__contact,
.gck-topbar__links {
  gap: 18px;
}

.gck-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.gck-topbar a:hover {
  color: var(--gck-gold);
}

.site-header-row-container-inner {
  border-bottom: 1px solid var(--gck-line);
}

.site-header .site-branding a,
.site-header .site-title a {
  color: var(--gck-ink);
}

.site-header .primary-menu-container > ul > li > a {
  font-weight: 600;
}

.site-header .primary-menu-container > ul > li.current-menu-item > a,
.site-header .primary-menu-container > ul > li > a:hover {
  color: var(--gck-primary);
}

.gck-home h1,
.gck-home h2,
.gck-home h3,
.gck-archive h1,
.gck-single-event h1 {
  color: var(--gck-ink);
  letter-spacing: -0.025em;
}

.gck-home h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.gck-home h2,
.gck-archive h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.gck-home h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.gck-eyebrow,
.gck-kicker {
  margin: 0 0 10px;
  color: var(--gck-primary);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gck-button,
.gck-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.gck-button {
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gck-button:hover {
  transform: translateY(-2px);
}

.gck-button--primary {
  color: var(--gck-white);
  background: var(--gck-primary);
}

.gck-button--primary:hover {
  color: var(--gck-white);
  background: var(--gck-primary-dark);
}

.gck-button--secondary {
  color: var(--gck-ink);
  border-color: var(--gck-line);
  background: transparent;
}

.gck-button--secondary:hover {
  color: var(--gck-white);
  border-color: var(--gck-forest);
  background: var(--gck-forest);
}

.gck-button--light {
  color: var(--gck-forest);
  background: var(--gck-white);
}

.gck-text-link {
  width: fit-content;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
}

.gck-text-link:hover {
  color: var(--gck-primary);
}

.gck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gck-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(211, 163, 76, 0.24), transparent 28%),
    var(--gck-cream);
}

.gck-hero::after {
  position: absolute;
  right: -70px;
  bottom: -125px;
  width: 330px;
  height: 330px;
  border: 36px solid rgba(163, 60, 53, 0.08);
  border-radius: 50%;
  content: "";
}

.gck-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.gck-hero__content {
  display: grid;
  gap: 24px;
}

.gck-hero__lead {
  max-width: 680px;
  margin: 0;
  color: var(--gck-muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.gck-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-block: 16px;
  border-block: 1px solid var(--gck-line);
}

.gck-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.gck-hero__media {
  position: relative;
  min-height: clamp(440px, 55vw, 660px);
}

.gck-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 46% 46% 16px 16px;
  box-shadow: var(--gck-shadow);
  object-fit: cover;
}

.gck-hero__ornament {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: -1;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--gck-gold) 2px, transparent 2px);
  background-size: 15px 15px;
}

.gck-hero__stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 15px;
  color: var(--gck-ink);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gck-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
}

.gck-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.gck-events {
  background: var(--gck-paper);
}

.gck-event-filters {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gck-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gck-filter {
  min-height: 42px;
  padding: 8px 16px;
  color: var(--gck-ink);
  border: 1px solid var(--gck-line);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.gck-filter:hover,
.gck-filter.is-active {
  color: var(--gck-white);
  border-color: var(--gck-forest);
  background: var(--gck-forest);
}

.gck-select-label {
  display: grid;
  gap: 6px;
  min-width: 230px;
  color: var(--gck-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.gck-select-label select {
  min-height: 44px;
  padding: 8px 38px 8px 12px;
  color: var(--gck-ink);
  border: 1px solid var(--gck-line);
  border-radius: var(--gck-radius-small);
  background-color: var(--gck-white);
}

.gck-date-rail-wrap {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: stretch;
  margin-bottom: 12px;
  border-block: 1px solid var(--gck-line);
}

.gck-date-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82px, 1fr);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.gck-date-rail::-webkit-scrollbar {
  display: none;
}

.gck-date-nav,
.gck-date {
  color: var(--gck-ink);
  border: 0;
  border-right: 1px solid var(--gck-line);
  background: transparent;
  cursor: pointer;
}

.gck-date-nav {
  padding: 0;
  font-size: 1.2rem;
}

.gck-date-nav--next {
  border-right: 0;
  border-left: 1px solid var(--gck-line);
}

.gck-date {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 12px 8px;
  scroll-snap-align: center;
}

.gck-date strong {
  font-size: 1.45rem;
}

.gck-date__weekday,
.gck-date__month {
  color: var(--gck-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.gck-date__dot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gck-primary);
}

.gck-date:hover,
.gck-date.is-active {
  color: var(--gck-white);
  background: var(--gck-primary);
}

.gck-date.is-active .gck-date__weekday,
.gck-date.is-active .gck-date__month,
.gck-date:hover .gck-date__weekday,
.gck-date:hover .gck-date__month {
  color: inherit;
}

.gck-date.is-active .gck-date__dot,
.gck-date:hover .gck-date__dot {
  background: var(--gck-white);
}

.gck-results-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0 24px;
}

.gck-results-status {
  margin: 0;
  color: var(--gck-muted);
  font-size: 0.86rem;
}

.gck-events-clear {
  flex: 0 0 auto;
  padding: 7px 12px;
  color: var(--gck-primary);
  border: 1px solid color-mix(in srgb, var(--gck-primary) 35%, transparent);
  border-radius: 999px;
  background: var(--gck-white);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.gck-events-clear:hover,
.gck-events-clear:focus-visible {
  color: var(--gck-white);
  background: var(--gck-primary);
}

.gck-events-clear[hidden] {
  display: none;
}

.gck-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px) 24px;
}

.gck-event-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.gck-event-card[hidden] {
  display: none !important;
}

.gck-event-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: var(--gck-radius);
  background: var(--gck-cream);
}

.gck-event-card__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  content: "";
}

.gck-event-card__image img,
.gck-news-card__image img,
.gck-activity-card__image img,
.gck-gallery-item img,
.gck-single-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gck-event-card:hover .gck-event-card__image img,
.gck-news-card:hover .gck-news-card__image img,
.gck-activity-card:hover .gck-activity-card__image img,
.gck-gallery-item:hover img {
  transform: scale(1.035);
}

.gck-event-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  padding: 18px 4px 0;
}

.gck-event-card__body > .gck-text-link {
  align-self: flex-end;
  margin-top: auto;
}

.gck-event-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gck-event-card__topline .gck-kicker {
  margin: 0;
}

.gck-event-card__date,
.gck-event-card__place {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--gck-muted);
  font-size: 0.88rem;
}

.gck-event-card__title a {
  color: var(--gck-ink);
  text-decoration: none;
}

.gck-event-card__title a:hover {
  color: var(--gck-primary);
}

.gck-status {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.gck-status--cancelled {
  color: #7b1717;
  background: #fee2e2;
}

.gck-status--past {
  color: #52606d;
  background: #edf1f5;
}

.gck-events__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.gck-events__more button[hidden] {
  display: none;
}

.gck-empty-state {
  padding: 48px;
  text-align: center;
  border: 1px solid var(--gck-line);
  border-radius: var(--gck-radius);
  background: var(--gck-cream);
}

.gck-quick-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(48px, 7vw, 80px);
}

.gck-quick-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  color: var(--gck-ink);
  border: 1px solid var(--gck-line);
  border-radius: var(--gck-radius-small);
  background: var(--gck-white);
  font-weight: 700;
  text-decoration: none;
}

.gck-quick-links a > .gck-icon:first-child {
  width: 1.6em;
  height: 1.6em;
  color: var(--gck-primary);
}

.gck-quick-links a:hover {
  color: var(--gck-white);
  border-color: var(--gck-forest);
  background: var(--gck-forest);
  transform: translateY(-3px);
}

.gck-quick-links a:hover > .gck-icon:first-child {
  color: var(--gck-gold);
}

.gck-news {
  background: var(--gck-cream);
}

.gck-news-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
}

.gck-news-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--gck-line);
}

.gck-news-card--lead {
  grid-row: span 2;
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
}

.gck-news-card__image {
  display: block;
  overflow: hidden;
  min-height: 150px;
  border-radius: var(--gck-radius-small);
}

.gck-news-card--lead .gck-news-card__image {
  min-height: 390px;
  border-radius: var(--gck-radius);
}

.gck-news-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.gck-news-card__body time {
  color: var(--gck-muted);
  font-size: 0.82rem;
}

.gck-news-card__body h3 a {
  color: var(--gck-ink);
  text-decoration: none;
}

.gck-news-card__body p {
  margin: 0;
  color: var(--gck-muted);
}

.gck-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gck-activity-card {
  display: grid;
  gap: 12px;
}

.gck-activity-card__image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 45% 45% var(--gck-radius) var(--gck-radius);
  background: var(--gck-primary);
}

.gck-activity-card__image--2 {
  background: var(--gck-forest);
}

.gck-activity-card__image--3 {
  background: var(--gck-gold);
}

.gck-activity-card__symbol {
  color: var(--gck-white);
}

.gck-activity-card__symbol .gck-icon {
  width: 74px;
  height: 74px;
}

.gck-activity-card p {
  margin: 0;
  color: var(--gck-muted);
}

.gck-places {
  overflow: hidden;
  color: var(--gck-white);
  background:
    radial-gradient(circle at 10% 110%, rgba(211, 163, 76, 0.28), transparent 36%),
    var(--gck-forest);
}

.gck-places::after {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 320px;
  height: 320px;
  opacity: 0.18;
  background-image: radial-gradient(var(--gck-gold) 2px, transparent 2px);
  background-size: 18px 18px;
  content: "";
}

.gck-places h2,
.gck-places .gck-eyebrow {
  color: var(--gck-white);
}

.gck-places__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 100px);
}

.gck-places__intro {
  display: grid;
  align-content: start;
  gap: 20px;
}

.gck-places__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.gck-place-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
}

.gck-place-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  color: var(--gck-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
  text-decoration: none;
}

.gck-place-list a:hover {
  color: var(--gck-gold);
}

.gck-gallery {
  background: var(--gck-paper);
}

.gck-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}

.gck-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--gck-radius-small);
}

.gck-gallery-item--1 {
  grid-row: 1 / 3;
  border-radius: var(--gck-radius);
}

.gck-gallery-item::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.gck-gallery-item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: var(--gck-white);
  font-weight: 700;
}

.gck-home-cta {
  padding: clamp(52px, 7vw, 84px) 0;
  color: var(--gck-ink);
  background: var(--gck-gold);
}

.gck-home-cta__inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 30px;
  align-items: center;
}

.gck-home-cta h2,
.gck-home-cta p {
  margin: 0;
}

.gck-home-cta .gck-eyebrow {
  color: var(--gck-ink);
}

.gck-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--gck-ink);
}

.gck-footer a {
  color: inherit;
  text-decoration: none;
}

.gck-footer a:hover {
  color: var(--gck-gold);
}

.gck-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(36px, 7vw, 90px);
}

.gck-footer__grid section {
  display: grid;
  align-content: start;
  gap: 9px;
}

.gck-footer__grid h2 {
  margin: 0 0 14px;
  color: var(--gck-white);
  font-size: 1.05rem;
}

.gck-footer__grid p {
  margin: 0;
}

.gck-footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  color: var(--gck-white) !important;
}

.gck-footer__brand > a,
.gck-footer__brand .custom-logo-link {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gck-white);
}

.gck-footer__brand strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--gck-ink);
  border-radius: 50%;
  background: var(--gck-gold);
}

.gck-footer__brand img {
  max-height: 70px;
  width: auto;
}

.gck-footer__menu {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gck-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.gck-footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.gck-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
}

.gck-page-hero,
.gck-single-event__hero {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--gck-cream);
}

.gck-page-hero p {
  max-width: 680px;
  color: var(--gck-muted);
}

.gck-single-event__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.gck-single-event__meta {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.gck-single-event__meta p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.gck-single-event__meta span {
  display: grid;
}

.gck-single-event__meta strong {
  font-size: 0.77rem;
  text-transform: uppercase;
}

.gck-single-event__meta small {
  color: var(--gck-muted);
}

.gck-single-event__image {
  overflow: hidden;
  min-height: 520px;
  border-radius: 46% 46% var(--gck-radius) var(--gck-radius);
}

.gck-single-event__content {
  max-width: 860px;
  padding-top: clamp(55px, 7vw, 90px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.gck-site :focus-visible {
  outline: 3px solid var(--gck-gold);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .gck-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .gck-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gck-news-grid {
    grid-template-columns: 1fr;
  }

  .gck-news-card--lead {
    grid-row: auto;
  }

  .gck-gallery-grid {
    grid-template-rows: repeat(2, 210px);
  }
}

@media (max-width: 780px) {
  .gck-topbar__contact a span,
  .gck-topbar__contact a:nth-child(2) {
    display: none;
  }

  .gck-hero__grid,
  .gck-places__grid,
  .gck-home-cta__inner,
  .gck-single-event__grid {
    grid-template-columns: 1fr;
  }

  .gck-hero__media {
    min-height: 480px;
  }

  .gck-event-filters,
  .gck-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gck-select-label {
    width: 100%;
  }

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

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

  .gck-place-list,
  .gck-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gck-footer__grid section:first-child {
    grid-column: 1 / -1;
  }

  .gck-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 170px;
  }

  .gck-gallery-item--1 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gck-gallery-item:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 560px) {
  .gck-container {
    width: min(calc(100% - 28px), var(--gck-container));
  }

  .gck-topbar__contact {
    gap: 8px;
  }

  .gck-topbar__links {
    gap: 12px;
  }

  .gck-hero__media {
    min-height: 380px;
  }

  .gck-hero__media > img {
    border-radius: 42% 42% 12px 12px;
  }

  .gck-events-grid,
  .gck-activity-grid,
  .gck-quick-links,
  .gck-place-list,
  .gck-footer__grid {
    grid-template-columns: 1fr;
  }

  .gck-footer__grid section:first-child {
    grid-column: auto;
  }

  .gck-news-card,
  .gck-news-card--lead {
    grid-template-columns: 1fr;
  }

  .gck-news-card__image,
  .gck-news-card--lead .gck-news-card__image {
    min-height: 240px;
  }

  .gck-date-rail-wrap {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .gck-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .gck-single-event__image {
    min-height: 360px;
  }
}

/* Header balance, accessible homepage slider and final calendar refinements. */
.site-header .site-branding,
.site-header .site-branding .brand,
.site-header .site-branding .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-header .site-branding .custom-logo.gck-header-logo {
  display: block;
}

.site-header .site-main-header-inner-wrap,
.gck-front-page #masthead .site-main-header-inner-wrap {
  min-height: 110px;
}

.gck-home-slider {
  position: relative;
  min-height: clamp(680px, 72vh, 820px);
  overflow: hidden;
  background: #081010;
  isolation: isolate;
}

.gck-home-slider__slides {
  position: absolute;
  inset: 0;
}

.gck-front-page .gck-home-banner__slide.gck-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.gck-front-page .gck-home-banner__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gck-front-page .gck-home-banner::after {
  display: none;
}

.gck-home-slider::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: clamp(42px, 6vw, 86px);
  background: var(--gck-paper);
  clip-path: polygon(0 66%, 52% 100%, 100% 48%, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.gck-home-slider__controls {
  position: absolute;
  right: 0;
  bottom: clamp(62px, 7vw, 96px);
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  pointer-events: none;
}

.gck-home-slider__controls button {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  color: var(--gck-white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(8, 15, 16, 0.52);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
  pointer-events: auto;
}

.gck-home-slider__controls button:hover,
.gck-home-slider__controls button:focus-visible {
  color: var(--gck-ink);
  background: var(--gck-white);
}

.gck-home-slider__dots {
  display: flex;
  gap: 7px;
}

.gck-home-slider__dots button {
  min-width: 12px;
  min-height: 12px;
  padding: 0;
  border: 2px solid var(--gck-white);
  background: transparent;
}

.gck-home-slider__dots button[aria-current="true"] {
  background: var(--gck-white);
}

.gck-home-slider__toggle {
  margin-left: 2px;
  font-size: 0.78rem;
  font-weight: 800;
}

.gck-events {
  padding-top: clamp(20px, 2.3vw, 32px);
}

.gck-date-rail {
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  touch-action: pan-x;
}

.gck-date-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.gck-event-card__image {
  aspect-ratio: auto;
  line-height: 0;
}

.gck-event-card__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.gck-single-event__intro {
  display: grid;
  gap: 14px;
}

.gck-single-event__intro h1 {
  max-width: 980px;
  margin: 0;
}

.gck-single-event__meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 18px 0 4px;
}

.gck-single-event__content {
  padding-top: clamp(30px, 4vw, 52px);
}

.gck-single-event__content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.gck-social-rail {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9999;
  display: grid;
  gap: 2px;
  transform: translateY(-50%);
}

.gck-social-rail a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

.gck-social-rail a:hover,
.gck-social-rail a:focus-visible {
  width: 54px;
  color: #fff;
}

.gck-social-rail .gck-icon {
  width: 23px;
  height: 23px;
}

.gck-social-rail__facebook {
  background: #1877f2;
}

.gck-social-rail__youtube {
  background: #e62117;
}

@media (max-width: 1024px) {
  .site-header .site-main-header-inner-wrap,
  .gck-front-page #masthead .site-main-header-inner-wrap {
    min-height: 96px;
  }

  .gck-home-slider,
  .gck-front-page .gck-home-banner__slide.gck-hero {
    min-height: 700px;
  }
}

@media (max-width: 780px) {
  .gck-single-event__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header .site-main-header-inner-wrap,
  .gck-front-page #masthead .site-main-header-inner-wrap {
    min-height: 82px;
  }

  .gck-front-page .gck-home-banner.gck-hero,
  .gck-home-slider,
  .gck-front-page .gck-home-banner__slide.gck-hero {
    min-height: 680px;
  }

  .gck-home-slider__controls {
    bottom: 58px;
    gap: 6px;
    justify-content: flex-start;
  }

  .gck-home-slider__controls button {
    min-width: 36px;
    min-height: 36px;
  }

  .gck-home-slider__dots button {
    min-width: 14px;
    min-height: 14px;
  }

  .gck-home-slider__toggle {
    padding-inline: 10px !important;
  }

  .gck-events {
    padding-top: 18px;
  }

  .gck-date-rail {
    grid-auto-columns: 82px;
  }

  .gck-social-rail a {
    width: 42px;
    height: 42px;
  }

  .gck-social-rail a:hover,
  .gck-social-rail a:focus-visible {
    width: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gck-front-page .gck-home-banner__slide.gck-hero {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gck-site *,
  .gck-site *::before,
  .gck-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Kadence-aligned refinement: clean surfaces, compact branding and card grid. */
.site-header .site-branding .brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.site-header .site-branding .custom-logo {
  width: 58px;
  max-width: 58px;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
}

.site-header .site-branding .site-title {
  max-width: 210px;
  font-size: 0.92rem;
  line-height: 1.15;
}

.gck-hero {
  background: #f3f7fa;
}

.gck-hero::after,
.gck-hero__ornament,
.gck-hero__stamp {
  display: none;
}

.gck-hero__media > img {
  border: 1px solid rgba(24, 32, 29, 0.1);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(24, 32, 29, 0.13);
}

.gck-events {
  background: #f5f8fa;
}

.gck-date-rail-wrap {
  overflow: hidden;
  border: 1px solid var(--gck-line);
  border-radius: 10px;
  background: var(--gck-white);
}

.gck-event-card {
  overflow: hidden;
  border: 1px solid rgba(24, 32, 29, 0.1);
  border-radius: 10px;
  background: var(--gck-white);
  box-shadow: 0 8px 24px rgba(24, 32, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gck-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(24, 32, 29, 0.1);
}

.gck-event-card__image,
.gck-event-card__image::after {
  border-radius: 0;
}

.gck-event-card__body {
  padding: 20px 22px 24px;
}

.gck-news {
  background: var(--gck-white);
}

.gck-activity-card__image {
  border-radius: 12px;
}

@media (max-width: 719px) {
  .site-header .site-branding .custom-logo {
    width: 48px;
    max-width: 48px;
    height: 48px;
    max-height: 48px;
  }

  .site-header .site-branding .site-title {
    max-width: 170px;
    font-size: 0.78rem;
  }

  .gck-hero__media > img {
    border-radius: 10px;
  }

  .gck-hero__meta span {
    min-width: 0;
  }

  .gck-hero__meta span:last-child {
    width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .gck-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gck-actions .gck-button {
    width: 100%;
  }
}

/* Homepage overlay header and Kadence-style photographic banner. */
.site-header .site-title-wrap {
  display: none;
}

.site-header .site-branding .custom-logo.gck-header-logo {
  width: 240px;
  max-width: 240px;
  height: auto;
  max-height: 102px;
  object-fit: contain;
}

.site-header .primary-menu-container > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
}

.site-header .primary-menu-container > ul > li > a {
  padding-inline: 0.48em;
  font-size: 0.88rem;
}

.gck-bip-menu-image {
  display: block;
  width: 36px;
  height: 42px;
  object-fit: contain;
}

.site-header .primary-menu-container > ul > li.menu-item-6802 > a {
  justify-content: center;
  min-width: 46px;
  padding-block: 4px;
}

.gck-front-page .gck-topbar,
.gck-front-page #masthead {
  position: absolute;
  right: 0;
  left: 0;
}

.gck-front-page .gck-topbar {
  top: 0;
  z-index: 120;
  background: rgba(11, 17, 17, 0.74);
  backdrop-filter: blur(8px);
}

.gck-front-page #masthead {
  top: 42px;
  z-index: 110;
  background: transparent;
}

.gck-front-page #masthead,
.gck-front-page #masthead .site-main-header-wrap,
.gck-front-page #masthead .site-main-header-wrap .site-header-row-container-inner {
  background: transparent !important;
  border: 0;
}

.gck-front-page #masthead .site-main-header-inner-wrap {
  min-height: 118px;
  margin-top: 14px;
  padding-inline: clamp(16px, 2.2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 45px rgba(7, 13, 16, 0.18);
  backdrop-filter: blur(14px);
}

.gck-front-page .gck-home-banner.gck-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(680px, 72vh, 820px);
  padding: 210px 0 118px;
  color: var(--gck-white);
  background-image: var(--gck-banner-image);
  background-position: center 42%;
  background-size: cover;
}

.gck-front-page .gck-home-banner::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 16, 0.9) 0%, rgba(8, 15, 16, 0.68) 37%, rgba(8, 15, 16, 0.18) 72%, rgba(8, 15, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 15, 16, 0.5) 0%, transparent 48%);
  content: "";
}

.gck-front-page .gck-home-banner::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  display: block;
  height: clamp(42px, 6vw, 86px);
  border: 0;
  border-radius: 0;
  background: var(--gck-paper);
  clip-path: polygon(0 66%, 52% 100%, 100% 48%, 100% 100%, 0 100%);
  content: "";
}

.gck-home-banner__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: 22px;
  align-content: center;
}

.gck-home-banner__content > * {
  min-width: 0;
  width: 100%;
  max-width: 660px;
}

.gck-home-banner .gck-eyebrow,
.gck-home-banner h1 {
  color: var(--gck-white);
}

.gck-home-banner .gck-eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
}

.gck-home-banner h1 {
  max-width: 720px;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

.gck-home-banner__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.gck-home-banner .gck-actions {
  margin-top: 8px;
}

.gck-home-banner .gck-button--primary {
  color: var(--gck-white);
  background: var(--gck-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gck-home-banner .gck-button--secondary {
  color: var(--gck-white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(10, 18, 18, 0.22);
  backdrop-filter: blur(8px);
}

.gck-home-banner .gck-button--secondary:hover {
  color: var(--gck-ink);
  border-color: var(--gck-white);
  background: var(--gck-white);
}

.admin-bar.gck-front-page .gck-topbar {
  top: 32px;
}

.admin-bar.gck-front-page #masthead {
  top: 74px;
}

@media (max-width: 1024px) {
  .gck-front-page #masthead .site-main-header-inner-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(calc(100% - 40px), var(--gck-container));
    max-width: min(calc(100% - 40px), var(--gck-container));
    min-height: 104px;
    margin-inline: auto;
  }

  .gck-front-page #mobile-header .site-header-main-section-left {
    min-width: 0;
  }

  .gck-front-page #mobile-header .site-header-main-section-right {
    min-width: max-content;
  }

  .site-header .site-branding .custom-logo.gck-header-logo {
    width: 205px;
    max-width: 205px;
    max-height: 88px;
  }

  .gck-front-page .gck-home-banner.gck-hero {
    min-height: 700px;
    padding-top: 192px;
    background-position: 55% center;
  }
}

@media (max-width: 782px) {
  .admin-bar.gck-front-page .gck-topbar {
    top: 46px;
  }

  .admin-bar.gck-front-page #masthead {
    top: 88px;
  }
}

@media (max-width: 560px) {
  .gck-front-page {
    overflow-x: hidden;
  }

  .gck-topbar__inner {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    gap: 12px;
  }

  .gck-topbar__contact,
  .gck-topbar__links {
    gap: 10px;
  }

  .gck-topbar {
    font-size: 0.78rem;
  }

  .gck-topbar__contact {
    min-width: 0;
  }

  .gck-topbar__links {
    display: flex;
    flex: 0 0 auto;
  }

  .gck-front-page #masthead .site-main-header-inner-wrap {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    min-height: 94px;
    margin-top: 10px;
    margin-inline: auto;
    padding-inline: 12px;
  }

  .site-header .site-branding .custom-logo.gck-header-logo {
    width: 168px;
    max-width: 168px;
    max-height: 72px;
  }

  .gck-front-page .gck-home-banner.gck-hero {
    min-height: 680px;
    padding: 180px 0 92px;
    background-position: 56% center;
  }

  .gck-front-page .gck-home-banner::before {
    background:
      linear-gradient(90deg, rgba(8, 15, 16, 0.86) 0%, rgba(8, 15, 16, 0.58) 100%),
      linear-gradient(0deg, rgba(8, 15, 16, 0.68) 0%, rgba(8, 15, 16, 0.08) 72%);
  }

  .gck-home-banner__content {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    gap: 18px;
    align-content: end;
  }

  .gck-home-banner__lead {
    overflow-wrap: anywhere;
  }

  .gck-home-banner .gck-actions,
  .gck-home-banner .gck-button {
    max-width: 100%;
  }

  .gck-home-banner h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .mobile-navigation .gck-bip-menu-image {
    width: 30px;
    height: 36px;
  }
}

/* Complete event calendar: uncropped posters and year/month archive. */
.gck-events {
  padding-top: clamp(34px, 4.5vw, 60px);
}

.gck-event-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 7;
  background: #eef1f3;
}

.gck-event-card__image img {
  width: 100%;
  height: 100%;
  background: #eef1f3;
  object-fit: contain;
}

.gck-event-card:hover .gck-event-card__image img {
  transform: none;
}

.gck-event-card__topline {
  align-items: flex-start;
}

.gck-event-card__topline .gck-event-card__date {
  flex: 1 1 auto;
}

.gck-single-event__image {
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 5 / 7;
  justify-self: end;
  border: 1px solid var(--gck-line);
  border-radius: 12px;
  background: #eef1f3;
}

.gck-single-event__image img {
  width: 100%;
  height: 100%;
  background: #eef1f3;
  object-fit: contain;
}

.gck-page-hero,
.gck-single-event__hero {
  padding: clamp(44px, 6vw, 76px) 0;
}

.gck-calendar-archive__content {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.gck-calendar-years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(54px, 7vw, 88px);
  padding: 16px;
  border: 1px solid var(--gck-line);
  border-radius: 12px;
  background: var(--gck-white);
}

.gck-calendar-years > span {
  margin-right: 6px;
  color: var(--gck-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.gck-calendar-years a {
  display: inline-flex;
  min-width: 76px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: var(--gck-ink);
  border: 1px solid var(--gck-line);
  border-radius: 999px;
  background: var(--gck-paper);
  font-weight: 800;
  text-decoration: none;
}

.gck-calendar-years a:hover,
.gck-calendar-years a:focus-visible {
  color: var(--gck-white);
  border-color: var(--gck-primary);
  background: var(--gck-primary);
}

.gck-calendar-year {
  scroll-margin-top: 24px;
}

.gck-calendar-year + .gck-calendar-year {
  margin-top: clamp(80px, 10vw, 140px);
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--gck-line);
}

.gck-calendar-year__heading {
  margin-bottom: 34px;
}

.gck-calendar-year__heading h2 {
  margin: 0;
  color: var(--gck-ink);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9;
}

.gck-calendar-month {
  scroll-margin-top: 24px;
}

.gck-calendar-month + .gck-calendar-month {
  margin-top: clamp(62px, 8vw, 100px);
}

.gck-calendar-month__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gck-line);
}

.gck-calendar-month__heading h3 {
  margin: 0;
  color: var(--gck-ink);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  text-transform: capitalize;
}

.gck-calendar-month__heading span {
  color: var(--gck-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.gck-calendar-back {
  display: inline-flex;
  margin-top: 38px;
  color: var(--gck-ink);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 780px) {
  .gck-single-event__image {
    width: min(100%, 520px);
    justify-self: center;
  }

  .gck-calendar-years > span {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .gck-events {
    padding-top: 30px;
  }

  .gck-calendar-years a {
    flex: 1 1 90px;
  }

  .gck-calendar-month__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

/* Final cascade overrides for the header, slider and natural poster ratios. */
.site-header .site-main-header-inner-wrap,
.gck-front-page #masthead .site-main-header-inner-wrap {
  min-height: 110px;
}

.gck-front-page .gck-home-banner__slide.gck-hero {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.gck-front-page .gck-home-banner::after {
  display: none;
}

.gck-events {
  padding-top: clamp(20px, 2.3vw, 32px);
}

.gck-event-card__image {
  aspect-ratio: auto;
  line-height: 0;
}

.gck-event-card__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .site-header .site-main-header-inner-wrap,
  .gck-front-page #masthead .site-main-header-inner-wrap {
    min-height: 96px;
  }
}

@media (max-width: 560px) {
  .site-header .site-main-header-inner-wrap,
  .gck-front-page #masthead .site-main-header-inner-wrap {
    min-height: 82px;
  }

  .gck-events {
    padding-top: 18px;
  }
}

/* News, media archives and final content refinements — v1.3.0. */
body.gck-site {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.gck-site h1,
.gck-site h2,
.gck-site h5,
.gck-site h6 {
  font-family: "Playfair Display", serif;
}

.gck-site h3,
.gck-site h4,
.gck-site button,
.gck-site input,
.gck-site select,
.gck-site textarea,
.gck-site .main-navigation {
  font-family: "Poppins", sans-serif;
}

.gck-events {
  padding-top: clamp(8px, 1vw, 14px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.gck-events .gck-section-heading {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.gck-news {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background: var(--gck-white);
}

.gck-news-grid,
.gck-news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gck-news-tile {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(24, 32, 29, 0.1);
  border-radius: 12px;
  background: var(--gck-white);
  box-shadow: 0 9px 28px rgba(24, 32, 29, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gck-news-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(24, 32, 29, 0.12);
}

.gck-news-tile__image {
  display: block;
  overflow: hidden;
  aspect-ratio: auto;
  line-height: 0;
  color: var(--gck-white);
  background: linear-gradient(145deg, var(--gck-forest), var(--gck-primary));
  text-decoration: none;
}

.gck-news-tile__image:has(.gck-news-tile__placeholder) {
  aspect-ratio: 4 / 3;
}

.gck-news-tile__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transition: transform 420ms ease;
}

.gck-news-tile:hover .gck-news-tile__image img {
  transform: none;
}

.gck-news-tile__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.gck-news-tile__placeholder .gck-icon {
  width: 48px;
  height: 48px;
  justify-self: center;
  color: var(--gck-gold);
}

.gck-news-tile__placeholder span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gck-news-tile__body {
  display: flex;
  min-height: 260px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
}

.gck-news-tile__body time,
.gck-gallery-card__body time,
.gck-gallery-entry time {
  color: var(--gck-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.gck-news-tile__body h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.32;
}

.gck-news-tile__body h3 a,
.gck-gallery-card__body h2 a {
  color: var(--gck-ink);
  text-decoration: none;
}

.gck-news-tile__body p {
  margin: 0;
  color: var(--gck-muted);
  font-size: 0.9rem;
}

.gck-news-tile__body .gck-text-link {
  margin-top: auto;
}

.gck-news-archive__content,
.gck-gallery-archive__content,
.gck-video-archive__content {
  padding-top: clamp(38px, 5vw, 68px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.gck-archive-filters {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--gck-line);
  border-radius: 12px;
  background: var(--gck-paper);
}

.gck-archive-filters label {
  display: grid;
  min-width: 210px;
  gap: 6px;
}

.gck-archive-filters label > span {
  color: var(--gck-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gck-archive-filters select {
  min-height: 46px;
  padding: 8px 38px 8px 12px;
  border: 1px solid var(--gck-line);
  border-radius: 8px;
  background: var(--gck-white);
}

.gck-archive-count {
  margin: 0 0 26px;
  color: var(--gck-muted);
}

.gck-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 16px;
}

.gck-gallery-item,
.gck-gallery-item--1 {
  display: block !important;
  grid-row: auto;
  grid-column: auto;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.gck-gallery-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 22px;
}

.gck-gallery-card {
  overflow: hidden;
  border: 1px solid var(--gck-line);
  border-radius: 12px;
  background: var(--gck-white);
  box-shadow: 0 8px 24px rgba(24, 32, 29, 0.06);
}

.gck-gallery-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gck-gallery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gck-gallery-card:hover .gck-gallery-card__image img {
  transform: scale(1.04);
}

.gck-gallery-card__count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--gck-white);
  border-radius: 999px;
  background: rgba(8, 15, 16, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.gck-gallery-card__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.gck-gallery-card__body h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.gck-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}

.gck-video-card {
  overflow: hidden;
  border: 1px solid var(--gck-line);
  border-radius: 12px;
  background: var(--gck-white);
  box-shadow: 0 8px 24px rgba(24, 32, 29, 0.06);
}

.gck-video-card__frame {
  aspect-ratio: 16 / 9;
  background: #101313;
}

.gck-video-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gck-video-card h2 {
  margin: 0;
  padding: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.gck-gallery-entry__content {
  max-width: 1120px;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(76px, 10vw, 130px);
}

.gck-gallery-photo-grid {
  display: grid;
  width: 100%;
  margin-top: clamp(34px, 5vw, 62px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gck-gallery-photo-grid figure.wp-block-image,
.gck-gallery-photo-grid .blocks-gallery-item,
.gck-gallery-photo-grid .ngg-gallery-thumbnail-box {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 !important;
  border-radius: 10px;
  background: #e8edeb;
}

.gck-gallery-photo-grid figure.wp-block-image img,
.gck-gallery-photo-grid .blocks-gallery-item img,
.gck-gallery-photo-grid .ngg-gallery-thumbnail img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100% !important;
  height: 100% !important;
  float: none !important;
  aspect-ratio: 4 / 3 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  transition: transform 350ms ease;
}

.gck-gallery-photo-grid figure.wp-block-image:hover img,
.gck-gallery-photo-grid .blocks-gallery-item:hover img,
.gck-gallery-photo-grid .ngg-gallery-thumbnail-box:hover img {
  transform: scale(1.025);
}

.gck-gallery-photo-grid .ngg-gallery-thumbnail,
.gck-gallery-photo-grid .ngg-gallery-thumbnail a {
  position: absolute !important;
  inset: 0;
  display: block !important;
  box-sizing: border-box;
  width: 100%;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 0;
}

.gck-gallery-photo-grid .ngg-gallery-thumbnail img {
  position: absolute;
  inset: 0;
}

.gck-news-entry__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px) 0;
  color: var(--gck-white);
  background:
    radial-gradient(circle at 8% 18%, rgba(211, 163, 76, 0.2), transparent 28%),
    linear-gradient(135deg, #173d35 0%, #0d2824 62%, #071c1a 100%);
}

.gck-news-entry__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.gck-news-entry__hero-grid--without-image {
  grid-template-columns: minmax(0, 920px);
}

.gck-news-entry__intro {
  position: relative;
  z-index: 1;
}

.gck-news-entry__intro .gck-back-link {
  margin-bottom: clamp(28px, 4vw, 48px);
  color: var(--gck-gold);
}

.gck-news-entry__intro .gck-eyebrow {
  color: var(--gck-gold);
}

.gck-news-entry__intro h1 {
  max-width: 900px;
  margin: 8px 0 22px;
  color: var(--gck-white);
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.gck-news-entry__intro time {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
}

.gck-news-entry__featured {
  position: relative;
  display: grid;
  min-height: 320px;
  max-height: 610px;
  place-items: center;
  overflow: hidden;
  margin: 0;
  padding: clamp(10px, 1.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.gck-news-entry__featured img {
  display: block;
  width: 100%;
  max-height: 574px;
  object-fit: contain;
}

.gck-news-entry__content {
  max-width: 920px;
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(78px, 10vw, 132px);
}

.gck-news-entry__content > :first-child {
  margin-top: 0;
}

.gck-gallery-entry .wp-block-gallery,
.gck-gallery-entry .blocks-gallery-grid {
  gap: 14px !important;
}

.gck-gallery-entry .wp-block-gallery figure.wp-block-image,
.gck-gallery-entry .blocks-gallery-item {
  overflow: hidden;
  border-radius: 10px;
  background: #edf1f2;
}

.gck-gallery-entry .wp-block-gallery figure.wp-block-image img,
.gck-gallery-entry .blocks-gallery-item img,
.gck-gallery-entry__content > figure.wp-block-image img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.gck-gallery-lightbox-image {
  cursor: zoom-in;
}

.gck-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gck-primary);
  font-weight: 700;
  text-decoration: none;
}

body.gck-lightbox-open {
  overflow: hidden;
}

.gck-lightbox[hidden] {
  display: none;
}

.gck-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 36px;
  color: var(--gck-white);
  background: rgba(4, 8, 8, 0.96);
  backdrop-filter: blur(12px);
}

.gck-lightbox__figure {
  display: grid;
  max-width: min(1320px, 100%);
  max-height: calc(100vh - 72px);
  justify-self: center;
  gap: 12px;
  margin: 0;
}

.gck-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  margin: auto;
  object-fit: contain;
}

.gck-lightbox__figure figcaption {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.gck-lightbox button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--gck-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.4rem;
  cursor: pointer;
}

.gck-lightbox button:hover,
.gck-lightbox button:focus-visible {
  color: var(--gck-ink);
  background: var(--gck-white);
}

.gck-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.gck-lightbox__nav--next {
  justify-self: end;
}

.gck-lightbox__counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.gck-single-event__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px) 0;
  color: var(--gck-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(211, 163, 76, 0.25), transparent 28%),
    linear-gradient(135deg, #173d35 0%, #0d2824 62%, #071c1a 100%);
}

.gck-single-event__hero::before {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.018);
  content: "";
}

.gck-single-event__intro {
  position: relative;
  z-index: 1;
  gap: clamp(24px, 3vw, 36px);
}

.gck-single-event__intro h1 {
  max-width: 1040px;
  color: var(--gck-white);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.gck-single-event__meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  gap: 12px;
  margin: 0;
}

.gck-single-event__meta p {
  min-height: 92px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.gck-single-event__meta .gck-icon {
  flex: 0 0 auto;
  color: var(--gck-gold);
}

.gck-single-event__meta strong {
  margin-bottom: 4px;
  color: var(--gck-gold);
  letter-spacing: 0.09em;
}

.gck-single-event__meta span,
.gck-single-event__meta small {
  color: var(--gck-white);
}

.gck-single-event__content {
  max-width: 920px;
  padding-top: clamp(42px, 5vw, 66px);
}

.gck-single-event__content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  max-width: 1200px;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.gck-single-event__content--editor-layout {
  max-width: 1200px;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.gck-event-layout {
  align-items: flex-start !important;
  gap: clamp(34px, 5vw, 72px);
}

.gck-event-layout > .wp-block-column:first-child {
  min-width: 0;
}

.gck-event-layout > .wp-block-column:last-child {
  min-width: 300px;
}

.gck-event-layout > .wp-block-column:first-child > :first-child:not(.gck-event-editor-only) {
  margin-top: 0;
}

.gck-event-editor-only {
  display: none;
}

.gck-event-layout__poster {
  display: grid;
  width: 100%;
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  place-items: center;
  border: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: 14px;
  background: var(--gck-white);
  box-shadow: 0 20px 52px rgba(24, 32, 29, 0.12);
}

.gck-event-layout__poster img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.gck-single-event__description > :first-child {
  margin-top: 0;
}

.gck-single-event__poster {
  display: grid;
  width: 100%;
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  place-items: center;
  border: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: 14px;
  background: var(--gck-white);
  box-shadow: 0 20px 52px rgba(24, 32, 29, 0.12);
}

.gck-single-event__poster img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.gck-imprezalia-menu-image {
  display: block;
  width: 92px;
  max-width: 92px;
  height: 28px;
  object-fit: contain;
}

.gck-bip-menu-image {
  width: 32px;
  height: 38px;
}

.site-header .primary-menu-container > ul > li > a:has(.gck-imprezalia-menu-image),
.site-header .primary-menu-container > ul > li > a:has(.gck-bip-menu-image) {
  justify-content: center;
  padding-inline: 0.34em;
}

.gck-menu-parent-label {
  cursor: default;
}

/* Instructor profiles migrated from the previous site. */
.gck-instructor-page .entry-content.single-content {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  column-gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

.gck-instructor-page .entry-content.single-content > * {
  grid-column: 2;
}

.gck-instructor-page .entry-content.single-content > .wp-block-image,
.gck-instructor-page .entry-content.single-content > p:has(> .wp-block-image) {
  grid-column: 1;
  grid-row: 1 / span 30;
  width: 100%;
  max-width: 330px;
  margin: 0;
  justify-self: start;
}

.gck-instructor-page .entry-content.single-content > .wp-block-image img,
.gck-instructor-page .entry-content.single-content > p:has(> .wp-block-image) img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.gck-instructor-page .entry-content.single-content > h3 {
  margin-top: 0;
}

.gck-instructor-page .entry-content.single-content > p:empty {
  display: none;
}

@media (max-width: 1024px) {
  .gck-news-grid,
  .gck-news-archive-grid,
  .gck-gallery-archive-grid,
  .gck-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gck-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

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

  .gck-news-entry__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 30px;
  }
}

@media (max-width: 780px) {
  .gck-events {
    padding-top: 8px;
  }

  .gck-archive-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .gck-archive-filters label {
    width: 100%;
    min-width: 0;
  }

  .gck-single-event__meta {
    grid-template-columns: 1fr;
  }

  .gck-single-event__meta p {
    min-height: 0;
  }

  .gck-single-event__content--split {
    grid-template-columns: 1fr;
  }

  .gck-event-layout {
    flex-direction: column;
  }

  .gck-event-layout > .wp-block-column {
    width: 100% !important;
    min-width: 0;
  }

  .gck-single-event__poster {
    width: min(100%, 560px);
    justify-self: center;
  }

  .gck-lightbox {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    padding: 22px 8px;
  }

  .gck-news-entry__hero-grid {
    grid-template-columns: 1fr;
  }

  .gck-news-entry__featured {
    min-height: 0;
    max-width: 560px;
  }

  .gck-lightbox button {
    width: 42px;
    height: 42px;
  }

  .mobile-navigation .gck-imprezalia-menu-image {
    width: 108px;
    max-width: 108px;
    height: 30px;
  }

  .gck-instructor-page .entry-content.single-content {
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    column-gap: 26px;
  }

  .gck-instructor-page .entry-content.single-content > .wp-block-image,
  .gck-instructor-page .entry-content.single-content > p:has(> .wp-block-image) {
    max-width: 260px;
  }
}

@media (max-width: 560px) {
  .gck-news-grid,
  .gck-news-archive-grid,
  .gck-gallery-grid,
  .gck-gallery-archive-grid,
  .gck-video-grid {
    grid-template-columns: 1fr;
  }

  .gck-news-tile__body {
    min-height: 0;
  }

  .gck-gallery-item,
  .gck-gallery-item--1 {
    grid-column: auto;
  }

  .gck-gallery-photo-grid {
    grid-template-columns: 1fr;
  }

  .gck-single-event__intro h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .gck-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .gck-lightbox__close {
    top: 10px;
    right: 10px;
  }

  .gck-instructor-page .entry-content.single-content {
    display: block;
  }

  .gck-instructor-page .entry-content.single-content > .wp-block-image,
  .gck-instructor-page .entry-content.single-content > p:has(> .wp-block-image) {
    width: min(100%, 300px);
    max-width: 300px;
    margin: 0 auto 26px;
  }
}
