
/* =========================================
   Pool Tournament — 8-Ball Divider
   ========================================= */
/* Event schedule lightbox button */
.gdc-schedule-open {
	text-align: center;
	padding: clamp(1rem, 3vw, 1.8rem) 1rem 0;
}

.gdc-btn--schedule {
	position: relative;
	overflow: hidden;
	font-size: clamp(1.05rem, 2.4vw, 1.4rem);
	padding: 1.15rem 2.6rem;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
	animation: gdc-schedule-pulse 2.8s ease-in-out infinite;
}

.gdc-btn--schedule:hover {
	animation-play-state: paused;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
	filter: brightness(1.06);
}

/* Sheen sweep */
.gdc-btn--schedule::after {
	content: "";
	position: absolute;
	top: -10%;
	bottom: -10%;
	left: -75%;
	width: 50%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
	transform: skewX(-20deg);
	animation: gdc-schedule-sheen 3.6s ease-in-out infinite;
	pointer-events: none;
}

.gdc-btn__icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.gdc-schedule-hint {
	margin: 0.7rem auto 0;
	font-size: 0.92rem;
	color: rgba(22, 26, 23, 0.75);
}

@keyframes gdc-schedule-pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}

@keyframes gdc-schedule-sheen {
	0% {
		left: -75%;
	}

	60%,
	100% {
		left: 130%;
	}
}

/* Collapsible schedule panel (expanded in place by #gdcScheduleToggle) */
.gsd-collapse {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.45s ease;
}

.gsd-collapse__inner {
	padding-top: clamp(1rem, 3vw, 1.8rem);
}

/* ================================================
   GEM STATE DIAMOND CLASSIC
   Mobile-Friendly Schedule
   ================================================ */

.gsd-schedule {
	--green-dark: #073b18;
	--green: #4f9d18;
	--green-light: #75bd27;
	--lime: #9bdc32;
	--text: #fff;
	--muted: #d9e5d2;

	max-width: 1100px;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
}

.gsd-schedule-header {
	text-align: center;
	margin-bottom: 30px;
}

.gsd-schedule-header h2 {
	margin: 0 0 5px;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
}

.gsd-schedule-header h2 span {
	color: var(--lime);
}

.gsd-schedule-header p {
	margin: 10px 0 0;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* Day grid */

.gsd-days {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

/* Individual day */

.gsd-day {
	overflow: hidden;
	border-radius: 14px;
	background: #092d15;
	border: 1px solid rgba(155, 220, 50, .45);
}

.gsd-day-header {
	padding: 12px 8px;
	text-align: center;
	background: var(--green-dark);
	border-bottom: 2px solid var(--lime);
}

.gsd-day-name {
	display: block;
	font-size: 1.25rem;
	font-weight: 900;
	text-transform: uppercase;
}

.gsd-date {
	display: block;
	margin-top: 2px;
	font-size: .9rem;
	font-weight: 600;
	opacity: .9;
}

/* Events */

.gsd-events {
	padding: 10px;
}

.gsd-event {
	margin-bottom: 9px;
	padding: 13px 9px;
	text-align: center;
	border-radius: 10px;
	background: var(--green);
}

.gsd-event:last-child {
	margin-bottom: 0;
}

.gsd-event strong {
	display: block;
	font-size: 1rem;
	line-height: 1.15;
	text-transform: uppercase;
}

.gsd-event span {
	display: block;
	margin-top: 3px;
	font-size: .85rem;
	line-height: 1.2;
	font-weight: 600;
	text-transform: uppercase;
}

/* Carryover events */

.gsd-event.carryover {
	background: #155a27;
}

.gsd-event.carryover span::after {
	content: " • CARRYOVER";
	color: var(--lime);
	font-weight: 800;
}

/* Note */

.gsd-note {
	margin-top: 10px;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.6);
	border-radius: 10px;
	background: rgba(0,0,0,.25);
	text-align: center;
	font-size: .85rem;
	line-height: 1.3;
	text-transform: uppercase;
}

.gsd-note strong {
	color: var(--lime);
}

/* Bottom sections */

.gsd-bottom {
	margin-top: 18px;
	text-align: center;
}

.gsd-mini {
	padding: 10px 15px;
	border-radius: 10px;
	background: var(--green-dark);
	border: 1px solid rgba(155,220,50,.45);
	font-size: 1.15rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.gsd-open {
	margin-top: 8px;
	padding: 10px 15px;
	border-radius: 10px;
	background: var(--green);
	font-size: 1.05rem;
	font-weight: 900;
	text-transform: uppercase;
}

.gsd-start {
	margin: -16px auto 22px;
	text-align: center;
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
}

.gsd-start strong {
	color: var(--lime);
}

/* Print button */

.gsd-print {
	display: block;
	width: max-content;
	margin: 0 auto 24px;
	padding: 10px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--green-dark);
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: .95rem;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
}

.gsd-print:hover {
	background: #0c521f;
}

/* Tablet */

@media (max-width: 850px) {

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

/* Phone */

@media (max-width: 600px) {

	.gsd-schedule {
		padding: 0 4px;
	}

	.gsd-schedule-header {
		margin-bottom: 20px;
	}

	.gsd-schedule-header h2 {
		font-size: 2rem;
	}

	.gsd-schedule-header p {
		font-size: .95rem;
	}

	.gsd-days {
		display: block;
	}

	.gsd-day {
		margin-bottom: 14px;
	}

	.gsd-day-header {
		padding: 10px;
	}

	.gsd-day-name {
		font-size: 1.2rem;
	}

	.gsd-event {
		padding: 12px;
	}

	.gsd-bottom {
		margin-top: 10px;
	}
}

.pool-divider {
	position: relative;
	z-index: 5;
	height: 25px;
	margin-top: 100px;
	margin-bottom: -12px;
	width: 100%;
}

/* Main gold diamond/fold */
.pool-divider::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #c9a05d;
	clip-path: polygon(
		0 50%,
		50% 0,
		100% 50%,
		50% 100%
	);
}

/* Darker left facet */
.pool-divider::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #b88c4b;
	clip-path: polygon(
		0 50%,
		50% 0,
		50% 100%
	);
}

/* 8 Ball */
.pool-divider__ball {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

	width: 38px;
	height: 38px;
	font-size: 17px;
	border-width: 2px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #111827;
	color: #fff;

	font-family: Georgia, serif;
	font-size: 20px;
	font-weight: 700;

	box-shadow:
		0 3px 8px rgba(0, 0, 0, .35),
		inset 4px 4px 8px rgba(255, 255, 255, .08);

	border: 2px solid #d2ad6b;
}

/* White circle behind the 8 */
.pool-divider__ball::before {
	content: "";
	position: absolute;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: #fff;
	z-index: -1;
}

/* The number itself */
.pool-divider__ball {
	text-shadow: none;
}
/* Gold folded section divider */
.gold-divider {
	position: relative;
	z-index: 5;
	height: 50px;
	margin-top: -24px;
	margin-bottom: -48px;
	background: #c9a05d;
	clip-path: polygon(
		0 50%,
		50% 0,
		100% 50%,
		50% 100%
	);
}

/* Darker left half = folded effect */
.gold-divider::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #b98d4c;
	clip-path: polygon(
		0 50%,
		50% 0,
		50% 100%
	);
}

/* Center fold */
.gold-divider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
}
.gdc-wrap {
	--gdc-green: #0d4f32;
	--gdc-green-deep: #07301f;
	--gdc-green-mid: #0a3d2a;
	--gdc-gold: #f2b138;
	--gdc-gold-soft: #ffd97d;
	--gdc-gold-deep: #c98a15;
	--gdc-cream: #dddbd2;
	--gdc-ink: #161a17;
	--gdc-card: #ffffff;
/* background-image: url('../images/Pool-Tourny/diamonds-bg.jpg');*/

	background: var(--gdc-cream);
	color: var(--gdc-ink);
	
}

.gdc-wrap a {
	color: inherit;
}

.wp-block-group .gdc-wrap{margin-top:-20px;}


.event-heading {
  margin: 0 0 50px 0;
  text-align: center;
  font-family: 'Arial Black', sans-serif;
  font-size: clamp(1.2rem, 5.2vw, 3.4rem);
  line-height: 1.4;
  font-weight: 900;

  
  background: linear-gradient(
    to bottom,
    #6b4500 0%,
    #d4a72c 15%,
    #fff2a6 25%,
    #c58b16 40%,
    #ffe680 62%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow: 0 2px 2px rgba(60, 35, 0, 0.45);
}

.event-heading span {
  display: block;
  margin-bottom: 0.8em;
  font-family: 'Caveat', cursive;
  font-size: .65em;
  font-weight: 200;
  letter-spacing: 0.25em;
  line-height: 1;
  color: #6b4500;
  -webkit-text-fill-color: olive;
  font-family: 'Caveat', cursive;
}




.gdc-kicker {
	margin: 0 0 0.6rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #7a6a2a;
}

.gdc-kicker--gold {
	color: var(--gdc-gold-soft);
}

.gdc-section-head {
	max-width: 950px;
	margin: 0 auto 2.4rem;
	text-align: center;
}

.gdc-section-title {
	margin: 0;
	font-family: var(--gdc-display);
	font-size: clamp(2.4rem, 8vw, 4.2rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.15;
}

.gdc-section-sub {
	width:100%;
	max-width: 1100px;
	margin: 0.9rem auto 0;
	font-size: 1.3rem;
	font-weight:600;
	line-height: 1.6;
	opacity: 0.85;
	position: relative;
}

.gdc-section-sub--flanked {
	display: flex;
	align-items: center;
	gap: 3em;
	max-width: 1100px;
}

.gdc-dollar {
	flex: 0 0 auto;
	font-family: 'Arial Black', sans-serif;
	font-size: 220px;
	font-weight: 900;
	line-height: 1;
	color: var(--gdc-gold);
	-webkit-text-stroke: 1px var(--gdc-gold-deep);
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

/* ------------------------------------------------ Buttons */
.gdc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	padding: 0.85rem 1.6rem;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		filter 0.18s ease;
}

.gdc-btn:hover {

	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	filter: brightness(1.05);
}

.gdc-btn:active {
	transform: translateY(0);
}

.gdc-btn--gold {
	background: linear-gradient(180deg, #f4af2e 0%, var(--gdc-gold) 45%, var(--gdc-gold-deep) 100%);
	color: #3a2600;
}

.gdc-btn--outline {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.gdc-btn--outline:hover {
	box-shadow: inset 0 0 0 2px var(--gdc-gold), 0 6px 14px rgba(0, 0, 0, 0.18);
	color: var(--gdc-gold-soft);
	filter: none;
}

.gdc-btn--disabled {
	background: #b9b6ac;
	color: #5a574f;
	box-shadow: none;
	cursor: not-allowed;
}

.gdc-btn:disabled {
	opacity: 0.75;
	cursor: wait;
}

/* ------------------------------------------------ Status notices */
.gdc-notice-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	background: rgba(9, 18, 13, 0.55);
	backdrop-filter: blur(2px);
	animation: gdcFadeIn 0.2s ease;
}

.gdc-notice-overlay.is-closing {
	opacity: 0;
	transition: opacity 0.2s ease;
}

.gdc-notice {
	position: relative;
	max-width: 560px;
	width: 100%;
	padding: 1.7rem 1.9rem 1.6rem;
	border-radius: 12px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	animation: gdcPopIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gdc-notice__title {
	margin: 0 0 0.4rem;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.2;
	padding-right: 1.4rem;
}

.gdc-notice__body {
	margin: 0;
	line-height: 1.55;
	opacity: 0.9;
}

.gdc-notice__entry {
	margin: 0.9rem 0 0;
	padding-top: 0.85rem;
	border-top: 1px dashed rgba(0, 0, 0, 0.18);
	opacity: 1;
}

.gdc-notice__entry strong {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 1.25rem;
	letter-spacing: 2px;
}

.gdc-notice__close {
	position: absolute;
	top: 0.5rem;
	right: 0.6rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
	color: inherit;
	opacity: 0.55;
	padding: 0.3rem 0.55rem;
	border-radius: 6px;
}

.gdc-notice__close:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.08);
}

.gdc-notice--success {
	background: #e8f6ec;
	border: 1px solid #2f9e57;
	color: #14532d;
}

.gdc-notice--info {
	background: #e6f0fa;
	border: 1px solid var(--gdc-green);
	color: #0b3a26;
}

@keyframes gdcFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes gdcPopIn {
	from { opacity: 0; transform: scale(0.94) translateY(10px); }
	to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	.gdc-notice-overlay,
	.gdc-notice {
		animation: none;
	}
}

/* ------------------------------------------------ Hero */

.gdc-hero__logo {
	display: block;
	margin: 0 auto 1.2rem;
	width: 100%;
	max-width: 900px;
	height: auto;
}
.gdc-hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #fff;
	padding:
		clamp(2.2rem, 6vw, 4rem)
		clamp(1.2rem, 4vw, 3rem)
		clamp(3rem, 7vw, 5rem);
	background:
		radial-gradient(900px 420px at 50% -12%, rgba(84, 190, 136, 0.18), transparent 62%),
		linear-gradient(180deg, #07301f 0%, var(--gdc-green) 100%);
}

/* subtle top sheen */
.gdc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(1200px 400px at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%);
}

.gdc-hero__eyebrow {
	margin: 0 0 1.2rem;
	position: relative;
	font-size: clamp(0.8rem, 1.6vw, 1rem);
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gdc-gold-soft);
}

.gdc-hero__title {
	margin: 0;
	position: relative;
	font-family: var(--gdc-display);
	font-weight: 900;
	line-height: 1.02;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gdc-hero__title-top {
	display: block;
	font-size: clamp(1.3rem, 3.4vw, 2.3rem);
	font-weight: 700;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: #f3f7f2;
}

.gdc-hero__title-main {
	display: block;
	font-size: clamp(2.6rem, 9vw, 6.6rem);
	letter-spacing: 0.015em;
	background: linear-gradient(180deg, #fff6d8 0%, var(--gdc-gold-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.gdc-hero__sub {
	margin: 2.5rem auto;
	position: relative;
	max-width: 60ch;
	font-family: 'Archivo Black', sans-serif;
	font-size: clamp(1.2rem, 2.4vw, 1.35rem);
	font-weight: 100;
	letter-spacing: 0.06em;
	color: #e9f3ec;
}


.gdc-hero__announce {
	margin: 1rem auto 0;
	position: relative;
	font-family: 'Dancing Script', cursive;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--gdc-gold);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.gdc-hero__desc {
	position: relative;
	padding: 15px 15px 0 15px;
	font-weight: 400;
	line-height: 1.65;
	color: #dceade;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
}
.gdc-hero__desc a { text-decoration: none; color: var(--gdc-gold-soft); font-weight: 700; transition: all 0.2s ease; }

.gdc-hero__row {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	max-width: 960px;
	margin: 1.2rem auto 0;
}

.gdc-hero__desc-wrap {
	flex: 1 1 0;
	min-width: 0;
}

.gdc-hero__desc-wrap .gdc-hero__desc {
	margin: 0;
	max-width: none;
	font-size: 1rem;
}

.gdc-hero__desc-wrap .gdc-hero__sig {
	max-width: none;
}

.gdc-hero__sig {
	margin: 1rem auto 0 auto;
	position: relative;
	display:block;
	font-family: 'Dancing Script', cursive;
	font-size: clamp(1.3rem, 3.0vw, 2.0rem);
	font-weight: 700;
	color: var(--gdc-gold);
	text-align: right;
	max-width: 550px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.gdc-hero__facts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.7rem;
	margin: 2rem auto 0;
	padding: 0;
	position: relative;
	list-style: none;
	max-width: 1040px;
}

.gdc-fact {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	font-size: 0.92rem;
	font-weight: 600;
	backdrop-filter: blur(4px);
}

.gdc-fact__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gdc-gold);
	box-shadow: 0 0 10px rgba(242, 177, 56, 0.8);
	flex: 0 0 auto;
}

.gdc-hero__cta {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.9rem;
	margin-top: 0;
	padding-top: 0.5rem;
	position: relative;
	flex: 0 0 auto;
}

/* Billiard ball decorations */
.gdc-balls {
	display: flex;
	justify-content: center;
	gap: clamp(0.6rem, 2vw, 1.4rem);
	margin: 0 0 clamp(1.6rem, 4vw, 2.8rem);
	position: relative;
}

.gdc-ball {
	position: relative;
	width: clamp(30px, 5vw, 52px);
	height: clamp(30px, 5vw, 52px);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.75rem, 1.4vw, 1.05rem);
	font-weight: 800;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
	background:
		radial-gradient(circle at 31% 28%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.18) 16%, transparent 40%),
		radial-gradient(circle at 40% 40%, var(--gdc-ball, #c22) 0%, color-mix(in srgb, var(--gdc-ball, #c22) 55%, #000) 72%, #000 100%);
	box-shadow:
		inset -4px -7px 12px rgba(0, 0, 0, 0.55),
		inset 3px 4px 8px rgba(255, 255, 255, 0.25),
		0 4px 10px rgba(0, 0, 0, 0.4);
}

.gdc-ball[data-n="1"] { --gdc-ball: #f2b522; }
.gdc-ball[data-n="2"] { --gdc-ball: #1f4fc4; }
.gdc-ball[data-n="3"] { --gdc-ball: #d3322f; }
.gdc-ball[data-n="4"] { --gdc-ball: #6a2d9e; }
.gdc-ball[data-n="5"] { --gdc-ball: #e87f1a; }
.gdc-ball[data-n="6"] { --gdc-ball: #1e8f3f; }
.gdc-ball[data-n="7"] { --gdc-ball: #8f1d3b; }
.gdc-ball--eight {
	--gdc-ball: #222222;
	background:
		radial-gradient(circle at 31% 28%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.1) 20%, transparent 40%),
		radial-gradient(circle at 40% 40%, #2b2b2b 0%, #000 78%);
}

.gdc-ball::after {
	content: attr(data-n);
}

/* ------------------------------------------------ Purse counter */
.gdc-counter {
	position: relative;
	text-align: center;
	color: #fff;
	padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 3rem);
	background: linear-gradient(180deg, var(--gdc-green) 0%, var(--gdc-green-deep) 100%);
}

.gdc-counter::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	height: 12px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 12'%3E%3Cpath d='M0 12 Q20 0 40 12 Q60 0 80 12' stroke='%2307301f' stroke-width='3' fill='none'/%3E%3C/svg%3E") repeat-x bottom / 80px 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.gdc-counter__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 3rem);
	max-width: 900px;
	margin: 0 auto;
}

.gdc-counter__text {
	flex: 1;
	min-width: 0;
}

.gdc-counter__sponsor {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gdc-counter__sponsor-img {
	max-height: 140px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	background:rgba(255,255,255,.35);
	padding:5px;
	border:1px solid #fff;
	border-radius:7px
}

.gdc-counter__number {
	position: relative;
	font-family: var(--gdc-display);
	font-size: clamp(3.2rem, 11vw, 7.4rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.01em;
	color: var(--gdc-gold);
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
	transition: transform 0.22s ease;
	font-variant-numeric: tabular-nums;
}

.gdc-counter__number.is-rolling {
	transform: scale(1.03);
}

.gdc-counter__caption {
	margin: 0.9rem auto 0;
	max-width: 60ch;
	position: relative;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #f0f7f2;
	opacity: 1;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.gdc-counter__caption.is-swapping {
	opacity: 0;
	transform: translateY(6px);
}

.gdc-counter__steps {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.8rem;
	position: relative;
}

.gdc-counter__step {
	width: 10px;
	height: 10px;
	border: 0;
	padding: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
	transition: width 0.3s ease, background 0.3s ease;
}

.gdc-counter__step:hover,
.gdc-counter__step:focus-visible {
	background: rgba(255, 255, 255, 0.6);
}

.gdc-counter__step--active,
.gdc-counter__step--active:hover,
.gdc-counter__step--active:focus-visible {
	width: 34px;
	background: var(--gdc-gold);
}

/* ------------------------------------------------ Divisions */
.gdc-divisions {
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem);
	padding-top:100px;
	padding-bottom:140px
	background: linear-gradient(0deg,rgb(211, 209, 187) 0%,rgb(222,220,211) 100%);
}

.gdc-table-wrap {
	max-width: 1080px;
	margin: 0 auto;
	border-radius: 4px;
	overflow: hidden;
	background: var(--gdc-card);
}

.gdc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1rem;
}

.gdc-table thead th {
	text-align: left;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #e9f3ec;
	background: var(--gdc-green-mid);
	padding: 1rem 1.4rem;
}

.gdc-table tbody td {
	padding: 1.05rem 1.4rem;
	border-top: 1px solid rgba(13, 79, 50, 0.12);
	vertical-align: middle;
}

.gdc-row {
	transition: background 0.18s ease;
}

.gdc-row:nth-child(even) {
	background: rgba(13, 79, 50, 0.035);
}

.gdc-row:hover {
	background: rgba(242, 177, 56, 0.08);
}

.gdc-row--soldout {
	opacity: 0.55;
}

.gdc-row__name {
	font-weight: 700;
	font-size: 1.05rem;
}

.gdc-row__cap {
	font-size: 0.9rem;
	color: #55645c;
	white-space: nowrap;
}

.gdc-row__cap-num {
	font-weight: 800;
	color: var(--gdc-green);
}

.gdc-row__fee {
	font-weight: 800;
	font-size: 1.15rem;
	white-space: nowrap;
}

.gdc-row__action {
	text-align: right;
}

.gdc-row__action .gdc-btn {
	padding: 0.7rem 1.3rem;
	font-size: 0.92rem;
}

/* ------------------------------------------------ Quantity picker */
.gdc-qty {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.gdc-qty__label {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gdc-green);
	opacity: 0.85;
}

.gdc-qty__input {
	width: 4rem;
	padding: 0.5rem 0.4rem;
	border: 1px solid rgba(0, 0, 0, 0.28);
	border-radius: 4px;
	font: inherit;
	font-weight: 700;
	text-align: center;
	background: #fff;
	color: #1a1e1b;
}

.gdc-lesson .gdc-qty {
	margin-top: 0.25rem;
}

@media (max-width: 782px) {
	.gdc-qty {
		flex-wrap: wrap;
	}
	.gdc-dollar {display:none}
}

.gdc-form-note {
	max-width: 1080px;
	margin: 1rem auto 0;
	text-align: center;
	font-weight: 600;
	color: #0b3a26;
}

/* ------------------------------------------------ Booked & Confirmed grid */
.gdc-booked {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 clamp(1.2rem, 4vw, 3rem) clamp(3.5rem, 8vw, 6rem);
}

.gdc-booked__list {
	display: grid;
	gap: 0.75rem;
}

.gdc-booked__item {
	background: var(--gdc-card);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.gdc-booked__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 0.85rem 1.1rem;
	border: 0;
	background: transparent;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s ease;
}

.gdc-booked__toggle:hover,
.gdc-booked__toggle:focus-visible {
	background: rgba(13, 79, 50, 0.06);
	outline: none;
}

.gdc-booked__name {
	min-width: 0;
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--gdc-ink);
}

.gdc-booked__meta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.gdc-booked__count {
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--gdc-green);
	white-space: nowrap;
}

.gdc-booked__chevron {
	width: 14px;
	height: 14px;
	color: #55645c;
	transition: transform 0.25s ease;
}

.gdc-booked__item.is-open .gdc-booked__chevron {
	transform: rotate(180deg);
}

/* Collapse animation without measuring heights (grid 0fr → 1fr). */
.gdc-booked__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.gdc-booked__item.is-open .gdc-booked__panel {
	grid-template-rows: 1fr;
}

.gdc-booked__panel-inner {
	overflow: hidden;
	min-height: 0;
}

.gdc-booked__cells {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 0.35rem 1.1rem 1.05rem;
}

.gdc-booked__cell {
	width: 21px;
	height: 21px;
	border: 1px solid rgba(13, 79, 50, 0.18);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.65);
}

.gdc-booked__cell.is-filled {
	background: var(--gdc-green);
	border-color: var(--gdc-green);
}

.gdc-booked__pill {
	display: inline-flex;
	align-items: center;
	max-width: 170px;
	padding: 0.24rem 0.7rem;
	border-radius: 999px;
	background: var(--gdc-green);
	color: var(--gdc-gold-soft);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gdc-booked__noscript {
	margin-top: 1rem;
	text-align: center;
	font-size: 0.9rem;
	color: #55645c;
}

@media (max-width: 720px) {
	.gdc-booked__toggle {
		padding: 0.75rem 0.9rem;
	}

	.gdc-booked__cells {
		padding: 0.3rem 0.9rem 0.95rem;
	}
}

/* ------------------------------------------------ Dr. Cue / guest */
.gdc-guest {
	position: relative;
	overflow: hidden;
	color: #fff;
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem);
	background: linear-gradient(180deg, var(--gdc-green-mid) 0%, var(--gdc-green-deep) 100%);
}

.gdc-guest__grid {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: minmax(260px, 400px) 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.gdc-guest__art {
	border-radius: 20px;
	padding: clamp(2rem, 4vw, 3.5rem) 1.6rem 1.6rem;
	text-align: center;
	background:
		radial-gradient(460px 300px at 50% 18%, rgba(255, 217, 125, 0.25), transparent 65%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.14),
		0 24px 60px rgba(0, 0, 0, 0.35);
}

.gdc-guest__photo {
	display: block;
	width: min(300px, 100%);
	margin: 0 auto;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.gdc-guest__sponsor {
	margin-top: 2rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.gdc-guest__sponsor-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gdc-gold-soft);
}

.gdc-guest__sponsor-name {
	display: block;
	margin-top: 0.3rem;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
}

.gdc-guest__sponsor-logos {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 0.6rem;
}

.gdc-guest__sponsor-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	flex: 1 1 0;
	min-width: 0;
}

.gdc-guest__sponsor-img {
	width: 150px;
	height: 80px;
	object-fit: contain;
	border-radius: 8px;
	background: #fff;
	padding: 4px;
}

.gdc-guest__sponsor-brand-name {
	font-size: 0.7rem;
	font-weight: 700;
	text-align: center;
	color: #e7f1ea;
	letter-spacing: 0.02em;
}

@media (max-width: 560px) {
	.gdc-guest__sponsor-logos {
		flex-direction: column;
		align-items: center;
	}
}

.gdc-guest__title {
	margin: 0;
	font-family: var(--gdc-display);
	font-size: clamp(1.8rem, 4.4vw, 3rem);
	font-weight: 800;
}

.gdc-guest__bio {
	margin: 1rem 0 0;
	max-width: 62ch;
	font-size: 1.06rem;
	line-height: 1.65;
	color: #e7f1ea;
}

.gdc-guest__facts {
	margin: 1.2rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.gdc-guest__facts li {
	position: relative;
	padding-left: 1.4rem;
	line-height: 1.55;
	color: #dceade;
}

.gdc-guest__facts li::before {
	content: "◆";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--gdc-gold);
	font-size: 0.8em;
}

.gdc-lessons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1rem;
	margin-top: 1.8rem;
}

.gdc-lesson {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.4rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.gdc-lesson__name {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
}

.gdc-lesson__detail {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #d5e4d9;
	flex: 1 1 auto;
}

.gdc-lesson__price {
	margin: 0;
	font-family: var(--gdc-display);
	font-size: 2rem;
	font-weight: 900;
	color: var(--gdc-gold);
}

.gdc-lesson .gdc-btn {
	align-self: flex-start;
}

/* ------------------------------------------------ Sponsors */
.gdc-sponsors {
	
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem);
}

.gdc-featured-row {
	max-width: 980px;
	margin: 0 auto 2.6rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.4rem;
}

.gdc-featured {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	padding: 2.6rem 1.8rem 2rem;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
	background: var(--gdc-card);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gdc-featured:hover {

}

.gdc-featured__badge {
	position: absolute;
	top: -0.9rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.35rem 1rem;
	border-radius: 6px;
	background: linear-gradient(180deg, var(--gdc-gold-soft), var(--gdc-gold));
	color: #3a2600;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(201, 138, 21, 0.4);
	z-index: 2;
}

.gdc-featured__bg {
	position: absolute;
	top: 1rem;
	left: -1rem;
	
	height: auto;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.gdc-featured__bg--chalk {
	top:-1.5em;
	width:60px
}

.gdc-featured__bg--rack {
	transform: rotate(-20deg);
	top:-1.3em;
	left:-2em
}

.gdc-featured__name {
	position: relative;
	z-index: 1;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

/* Color stripe heading */
.gdc-stripe {
	position: relative;
	max-width: 1080px;
	margin: 0 auto 2rem;
	text-align: center;
	padding: 1.1rem 1.5rem;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--gdc-gold) 0%, var(--gdc-gold-soft) 50%, var(--gdc-gold) 100%);
	box-shadow: 0 3px 6px rgba(201, 138, 21, 0.25);
}

.gdc-stripe__label {
	font-family: var(--gdc-display);
	font-size: clamp(1.2rem, 3.4vw, 2rem);
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2c1c00;
}

.gdc-stripe::before,
.gdc-stripe::after {
	content: "◆";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #3a2600;
	opacity: 0.55;
	font-size: 1rem;
}

.gdc-stripe::before { left: 1.1rem; }
.gdc-stripe::after  { right: 1.1rem; }

/* Carousel */
.gdc-carousel {
	max-width: 1200px;
	margin: 0 auto;
	--gdc-per-view: 4;
}

.gdc-carousel__viewport {
	overflow: hidden;
	border-radius: 14px;
}

.gdc-carousel__track {
	display: flex;
	will-change: transform;
}

.gdc-carousel__item {
	flex: 0 0 calc(100% / var(--gdc-per-view, 4));
	min-width: 0;
	padding: 0.25rem;
	
}

.gdc-carousel__nav {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.4rem;
}

.gdc-carousel__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gdc-green-mid);
	border-radius: 8px;
	background: var(--gdc-card);
	color: var(--gdc-green);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.gdc-carousel__btn:hover,
.gdc-carousel__btn:focus-visible {
	background: var(--gdc-green);
	color: #ffffff;
	outline: none;
}

.gdc-carousel__btn:disabled {
	opacity: 0.4;
	cursor: default;
}

.gdc-logo-card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 100%;
	min-height: 220px;
	padding: 0.2rem;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	background: var(--gdc-card);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gdc-logo-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.gdc-logo-card__img {
	max-width: 90%;
	max-height: 160px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gdc-featured .gdc-logo-card__img {
	max-height: 130px;
}

.gdc-logo-card__name {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--gdc-ink);
}

.gdc-monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	font-family: var(--gdc-display);
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: var(--gdc-green);
	background: radial-gradient(circle at 30% 28%, #ffffff 0%, var(--gdc-gold-soft) 45%, var(--gdc-gold) 100%);
	box-shadow: 0 4px 12px rgba(201, 138, 21, 0.35);
}

/* ------------------------------------------------ Lodging */
.gdc-lodging {
	padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 3rem);
}

.gdc-lodging__inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
	border-radius: 18px;
	color: #fff;
	background: linear-gradient(180deg, var(--gdc-green-mid) 0%, var(--gdc-green-deep) 100%);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.gdc-lodging__title {
	margin: 0;
	font-family: var(--gdc-display);
	font-size: clamp(1.5rem, 4vw, 2.4rem);
	font-weight: 800;
}

.gdc-lodging__text {
	margin: 0.9rem auto 1.6rem;
	max-width: 54ch;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #e7f1ea;
}

/* ------------------------------------------------ Final CTA */

.gdc-cta .vpoc-post-picker-grid a .vpoc-pp-card-title {
	font-size: clamp( 1rem, 3vw, 1.25rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #fff;
}
.gdc-cta {
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #fff;
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem);
	background: linear-gradient(180deg, var(--gdc-green-deep) 0%, #04231a 100%);
}

.gdc-cta__title {
	margin: 0;
	font-family: var(--gdc-display);
	font-size: clamp(1.9rem, 5vw, 3.4rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	background: linear-gradient(180deg, #fff6d8 0%, var(--gdc-gold-soft) 40%, var(--gdc-gold) 75%, var(--gdc-gold-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.gdc-cta__text {
	margin: 1rem auto 0;
	max-width: 56ch;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #e7f1ea;
}

.gdc-cta .gdc-btn {
	margin-top: 1.8rem;
}

.gdc-cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.gdc-cta__media {
	min-width: 0;
}

.gdc-cta__media .vpoc-post-picker-grid {
	grid-template-columns: minmax(0, 1fr);
}

.gdc-cta__media .vpoc-post-picker-grid .vpoc-pp-card {
	min-width: 0;
}

.gdc-cta__media .vpoc-post-picker-grid .vpoc-pp-card-image img {
	max-height: 260px;
}

.gdc-cta__content .gdc-cta__text {
	margin-left: 0;
	margin-right: 0;
}

.gdc-cta__content .gdc-btn {
	margin-left: 0;
}

@media (max-width: 720px) {
	.gdc-hero__row {
		flex-direction: column;
		gap: 1.4rem;
	}

	.gdc-hero__cta {
		flex-direction: row;
		justify-content: center;
		padding-top: 0;
	}

	.gdc-cta__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.gdc-cta__content .gdc-cta__text {
		margin-left: auto;
		margin-right: auto;
	}

	.gdc-cta__content .gdc-btn {
		margin-left: auto;
		margin-right: auto;
	}
}

/* ------------------------------------------------ Toast */
.gdc-toast {
	position: fixed;
	left: 50%;
	bottom: 2rem;
	transform: translate(-50%, 20px);
	z-index: 9999;
	max-width: min(92vw, 480px);
	padding: 0.9rem 1.3rem;
	border-radius: 12px;
	background: #1b211d;
	color: #f3f7f2;
	font-weight: 600;
	line-height: 1.5;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.gdc-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.gdc-toast--error {
	background: #7f1d1d;
}

/* ------------------------------------------------ Responsive */
@media (max-width: 860px) {
	.gdc-guest__grid {
		grid-template-columns: 1fr;
	}

	.gdc-guest__art {
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}

	.gdc-carousel {
		--gdc-per-view: 3;
	}
}

@media (max-width: 720px) {
	.gdc-table thead {
		display: none;
	}

	.gdc-table,
	.gdc-table tbody,
	.gdc-table tr,
	.gdc-table td {
		display: block;
		width: 100%;
	}

	.gdc-table tr {
		padding: 1rem 1.2rem;
		box-sizing: border-box;
	}

	.gdc-table tbody tr {
		border-bottom: 2px solid rgba(13, 79, 50, 0.18);
	}

	.gdc-row:nth-child(even) {
		background: transparent;
	}

	.gdc-table tbody td {
		padding: 0.28rem 0;
		border-top: 0;
	}

	.gdc-row__name {
		font-size: 1.1rem;
		margin-bottom: 0.3rem;
	}

	.gdc-row__cap {
		font-size: 0.9rem;
	}

	.gdc-row__fee {
		margin-top: 0.3rem;
	}

	.gdc-row__action {
		text-align: left;
		margin-top: 0.6rem;
	}
}

@media (max-width: 560px) {
	.gdc-carousel {
		--gdc-per-view: 2;
	}
}

/* ------------------------------------------------ Motion preferences */
@media (prefers-reduced-motion: reduce) {
	.gdc-ball {
		animation: none;
	}

	.gdc-btn--schedule,
	.gdc-btn--schedule::after {
		animation: none;
	}

	.gdc-counter__number,
	.gdc-counter__caption,
	.gdc-btn,
	.gdc-featured,
	.gdc-logo-card {
		transition: none;
	}

	.gsd-collapse {
		transition: none;
	}

	.gdc-booked__panel,
	.gdc-booked__chevron {
		transition: none;
	}
}

/* ------------------------------------------------ Player-name modal */
.gdc-names-modal {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	background: rgba(9, 18, 13, 0.55);
	backdrop-filter: blur(2px);
}

.gdc-names-modal[hidden] {
	display: none;
}

.gdc-names-modal__card {
	position: relative;
	max-width: 440px;
	width: 100%;
	background: #fff;
	color: #1a1e1b;
	border-radius: 12px;
	padding: 1.6rem 1.7rem 1.5rem;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	animation: gdcPopIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gdc-names-modal__title {
	margin: 0 0 0.3rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--gdc-green);
	padding-right: 1.4rem;
}

.gdc-names-modal__sub {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.85;
}

.gdc-names-modal__note {
	margin: 0 0 1rem;
	font-size: 0.82rem;
	line-height: 1.5;
	opacity: 0.65;
	font-style: italic;
}

.gdc-names-modal__fields {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	max-height: 44vh;
	overflow-y: auto;
	padding-right: 0.2rem;
}

.gdc-names-modal__field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.gdc-names-modal__field span {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gdc-green);
	opacity: 0.85;
}

.gdc-names-modal__input {
	padding: 0.6rem 0.7rem;
	border: 1px solid rgba(0, 0, 0, 0.28);
	border-radius: 6px;
	font: inherit;
	font-size: 0.95rem;
	background: #fff;
	color: #1a1e1b;
}

.gdc-names-modal__input:focus {
	outline: none;
	border-color: var(--gdc-gold);
	box-shadow: 0 0 0 3px rgba(242, 177, 56, 0.28);
}

.gdc-names-modal__error {
	margin: 0.8rem 0 0;
	font-size: 0.85rem;
	font-weight: 700;
	color: #b32d2e;
}

.gdc-names-modal__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.8rem;
	margin-top: 1.2rem;
}

.gdc-names-modal__cancel {
	border: 0;
	background: transparent;
	font: inherit;
	font-weight: 700;
	color: #5a574f;
	cursor: pointer;
	padding: 0.6rem 0.8rem;
	border-radius: 6px;
}

.gdc-names-modal__cancel:hover {
	background: rgba(0, 0, 0, 0.06);
}

.gdc-names-modal__close {
	position: absolute;
	top: 0.5rem;
	right: 0.6rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
	color: inherit;
	opacity: 0.55;
	padding: 0.3rem 0.55rem;
	border-radius: 6px;
}

.gdc-names-modal__close:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.08);
}

.gdc-names-modal__field--phone {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
	.gdc-counter__row {
		flex-direction: column;
	}
	.gdc-counter__sponsor-img {
		max-height: 100px;
		max-width: 160px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gdc-names-modal__card {
		animation: none;
	}
}

/* ------------------------------------------------ Print: clean schedule sheet */
@media print {

	/* Interactive chrome never prints. */
	.gdc-schedule-open,
	.gdc-notice-overlay,
	.gsd-print {
		display: none !important;
	}

	/* Site chrome: header/footer template parts, sticky sidebar, admin bar. */
	#site-header,
	footer.wp-block-group,
	.sidebar-sticky,
	#wpadminbar {
		display: none !important;
	}

	body.vpoc-header-is-sticky {
		padding-top: 0 !important;
	}

	/* Print the full schedule even if the panel is collapsed. */
	.gsd-collapse {
		max-height: none !important;
		overflow: visible !important;
	}

	.gsd-collapse[hidden] {
		display: block !important;
	}

	.gsd-collapse__inner {
		padding-top: 0;
	}

	.gsd-schedule {
		max-width: none;
		margin: 0;
		color: #000;
		font-size: 12px;
	}

	.gsd-schedule-header h2,
	.gsd-day-name {
		color: #000 !important;
	}

	.gsd-schedule-header h2 span,
	.gsd-note strong,
	.gsd-start strong {
		color: #333 !important;
	}

	/* Strip fills, shadows and lime accents; keep hairline borders. */
	.gsd-day,
	.gsd-day-header,
	.gsd-event,
	.gsd-event.carryover,
	.gsd-note,
	.gsd-mini,
	.gsd-open,
	.gsd-start {
		background: #fff !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
		border-radius: 4px;
	}

	.gsd-day {
		border: 1px solid #bbb !important;
		break-inside: avoid;
	}

	.gsd-days {
		gap: 8px;
	}

	.gsd-day-header {
		background: #eee !important;
		border-bottom: 1px solid #999 !important;
	}

	.gsd-event,
	.gsd-event.carryover,
	.gsd-note {
		border: 1px solid #ccc !important;
	}

	.gsd-event.carryover span::after {
		color: #333 !important;
	}
}
