/* Oudayas Surf Elementor — v1.1 */

/* ═══════════════════════════════════════
   PACKS TABS
   ═══════════════════════════════════════ */
.ose-packs {
	--ose-accent: #003087;
	--ose-btn: #003087;
	--ose-border: #dde1ea;
	--ose-text: #0f1f44;
	--ose-muted: #8a94a8;
	--ose-tab-bg: #ffffff;
	--ose-tab-hover-bg: #f4f6fb;
	--ose-tab-active-text: #ffffff;
	--ose-tab-active-sub: rgba(255, 255, 255, 0.72);
	--ose-pack-image-col: 42%;
	width: 100%;
}

.ose-packs__tabs {
	display: flex;
	width: 100%;
	border-bottom: 1px solid var(--ose-border);
	margin-bottom: 28px;
}

.ose-pack-tab {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
	min-height: 120px;
	padding: 36px 48px;
	background: var(--ose-tab-bg);
	color: var(--ose-text);
	border: none;
	border-right: 1px solid var(--ose-border);
	border-bottom: 1px solid var(--ose-border);
	cursor: pointer;
	position: relative;
	font-family: inherit;
	transition: background 0.25s ease, color 0.25s ease;
}

.ose-pack-tab:last-child {
	border-right: none;
}

.ose-pack-tab__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.ose-pack-tab__subtitle {
	display: block;
	margin-top: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ose-muted);
}

.ose-pack-tab.is-active {
	background: var(--ose-accent);
	color: var(--ose-tab-active-text);
	border-bottom-color: var(--ose-accent);
	z-index: 2;
}

.ose-pack-tab.is-active .ose-pack-tab__subtitle {
	color: var(--ose-tab-active-sub);
}

.ose-pack-tab.is-active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -14px;
	transform: translateX(-50%);
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 14px solid var(--ose-accent);
	z-index: 10;
}

.ose-pack-tab:not(.is-active):hover {
	background: var(--ose-tab-hover-bg);
}

.ose-pack-panel {
	display: none;
	padding-top: 12px;
}

.ose-pack-panel.is-active {
	display: block;
}

/* Desktop: text left · image right. Mobile: stacked (image → text → pricing → button). */
.ose-pack-panel__grid {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.ose-pack-panel__main,
.ose-pack-panel__media {
	width: 100%;
	min-width: 0;
}

@media (min-width: 992px) {
	.ose-pack-panel__grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, var(--ose-pack-image-col, 42%));
		gap: 48px;
		align-items: start;
	}

	.ose-pack-panel__main {
		grid-column: 1;
		grid-row: 1;
	}

	.ose-pack-panel__media {
		grid-column: 2;
		grid-row: 1;
	}
}

.ose-pack-panel__heading {
	margin: 0 0 20px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--ose-accent);
}

.ose-pack-panel__desc {
	margin-bottom: 32px;
}

.ose-pack-panel__desc p:last-child {
	margin-bottom: 0;
}

/* Pricing full width, button below — aligned right */
.ose-pack-panel__bottom {
	display: block;
	width: 100%;
	margin-top: 8px;
}

.ose-pack-pricing {
	list-style: none;
	margin: 0 0 0;
	padding: 0;
	width: 100%;
	overflow: hidden;
}

.ose-pack-panel__actions {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-top: 20px;
	text-align: right;
}

.ose-pack-pricing__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid #dde4ef;
	transition: background 0.2s ease;
}

.ose-pack-pricing__row:last-child {
	border-bottom: none;
}

.ose-pack-pricing__label {
	flex: 1;
}

.ose-pack-pricing__price {
	white-space: nowrap;
	text-align: right;
}

.ose-pack-panel__media {
	overflow: hidden;
}

.ose-pack-panel__media img {
	width: 100%;
	height: 380px;
	min-height: 280px;
	object-fit: cover;
	display: block;
	box-shadow: 0 20px 50px rgba(15, 31, 68, 0.12);
}

.ose-packs .ose-pack-panel__btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	flex-shrink: 0;
	background: var(--ose-btn);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	box-shadow: 0 8px 24px rgba(0, 48, 135, 0.25);
}

.ose-pack-panel__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 48, 135, 0.32);
	color: #fff !important;
	opacity: 1;
}

@media (max-width: 991px) {
	.ose-pack-panel__grid {
		display: flex !important;
		flex-direction: column !important;
		grid-template-columns: none !important;
		gap: 24px;
	}

	.ose-pack-panel__media {
		order: 1;
	}

	.ose-pack-panel__main {
		order: 2;
	}

	.ose-pack-panel__media img {
		width: 100%;
		height: auto;
		min-height: 220px;
		max-height: 320px;
	}

	.ose-pack-panel__heading {
		margin-bottom: 14px;
	}

	.ose-pack-panel__desc {
		margin-bottom: 20px;
	}

	.ose-pack-panel__bottom {
		margin-top: 0;
	}

	.ose-pack-panel__actions {
		justify-content: stretch;
		margin-top: 16px;
	}

	.ose-packs .ose-pack-panel__btn {
		width: 100% !important;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.ose-packs__tabs {
		flex-direction: column;
	}

	.ose-pack-tab {
		border-right: none;
		width: 100%;
		min-height: 90px;
		padding: 24px 28px;
	}

	.ose-pack-tab.is-active::after {
		display: none;
	}

	.ose-pack-panel__media img {
		min-height: 200px;
		max-height: 260px;
	}
}

/* ═══════════════════════════════════════
   COACHES — modern surf club cards
   ═══════════════════════════════════════ */
.ose-coaches {
	--ose-accent: #003087;
	display: grid;
	width: 100%;
}

.ose-coaches--cols-1 { grid-template-columns: 1fr; }
.ose-coaches--cols-2 { grid-template-columns: repeat(2, 1fr); }
.ose-coaches--cols-3 { grid-template-columns: repeat(3, 1fr); }
.ose-coaches--cols-4 { grid-template-columns: repeat(4, 1fr); }

.ose-coaches .ose-coach-card {
	align-self: stretch;
}

.ose-coach-card {
	position: relative;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(15, 31, 68, 0.08);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.ose-coach-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(15, 31, 68, 0.14);
}

.ose-coach-card__visual {
	position: relative;
	height: 380px;
	min-height: 380px;
	overflow: hidden;
	background: linear-gradient(145deg, #0a2a6e 0%, #1e5bb8 100%);
}

.ose-coach-card__img,
.ose-coach-card__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ose-coach-card__placeholder {
	background: linear-gradient(160deg, #003087 0%, #1a6fd4 100%);
}

.ose-coach-card:hover .ose-coach-card__img {
	transform: scale(1.06);
}

.ose-coach-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 30, 100, 0.88) 0%, rgba(0, 30, 100, 0.2) 45%, transparent 70%);
	pointer-events: none;
}

.ose-coach-card__wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 48px;
	color: #fff;
	line-height: 0;
	pointer-events: none;
}

.ose-coach-card__wave svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Experience pill — top right */
.ose-coach-card__exp {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(6px);
}

.ose-coach-card__exp-num {
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	color: var(--ose-accent);
}

.ose-coach-card__exp-label {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6b7280;
	margin-top: 2px;
	text-align: center;
}

/* Name + role on photo */
.ose-coach-card__identity {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 52px;
	z-index: 3;
	padding: 0 20px 8px;
}

.ose-coach__role {
	display: inline-block;
	margin: 8px 0 0;
	padding: 5px 12px;
	background: var(--ose-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 4px;
	line-height: 1.2;
}

.ose-coach__name {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* Body below wave */
.ose-coach-card__body {
	padding: 20px 20px 24px;
	margin-top: -8px;
	position: relative;
	z-index: 2;
	background: #fff;
}

.ose-coach__bio {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.65;
	color: #5a6478;
}

.ose-coach__certs-wrap {
	margin-top: 4px;
}

.ose-coach__certs-title {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ose-accent);
}

.ose-coach__certs {
	--ose-cert-marker: var(--ose-accent);
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ose-coach__certs li {
	font-size: 14px;
	line-height: 1.5;
	color: #374151;
	border-radius: 4px;
}

.ose-coach__certs--bullet {
	list-style: disc;
	padding-left: 1.25em;
}

.ose-coach__certs--bullet li {
	display: list-item;
}

.ose-coach__certs--bullet li::marker {
	color: var(--ose-cert-marker);
}

.ose-coach__certs--dash li,
.ose-coach__certs--check li,
.ose-coach__certs--none li {
	position: relative;
	padding-left: 0;
}

.ose-coach__certs--dash li::before {
	content: "—";
	margin-right: 8px;
	color: var(--ose-cert-marker);
	font-weight: 700;
}

.ose-coach__certs--check li::before {
	content: "✓";
	margin-right: 8px;
	color: var(--ose-cert-marker);
	font-weight: 700;
}

.ose-coach__certs--none li::before {
	content: none;
}

@media (max-width: 1024px) {
	.ose-coaches--cols-4,
	.ose-coaches--cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.ose-coaches--cols-4,
	.ose-coaches--cols-3,
	.ose-coaches--cols-2 {
		grid-template-columns: 1fr;
	}

	.ose-coach-card__visual {
		height: 320px;
		min-height: 320px;
	}
}

/* ═══════════════════════════════════════
   COMPÉTITIONS
   ═══════════════════════════════════════ */
.ose-comp-events,
.ose-comp-divisions,
.ose-comp-steps,
.ose-comp-info {
	--ose-accent: #003087;
	width: 100%;
}

.ose-comp-events__sub,
.ose-comp-divisions__sub {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a94a8;
	margin: 0 0 8px;
}

.ose-comp-events__title,
.ose-comp-divisions__title,
.ose-comp-steps__title,
.ose-comp-info__rules-title {
	margin: 0 0 28px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--ose-accent);
	line-height: 1.15;
}

.ose-comp-events__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.ose-comp-event {
	position: relative;
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(15, 31, 68, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ose-comp-event:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(15, 31, 68, 0.1);
}

.ose-comp-event.is-featured {
	border-color: var(--ose-accent);
	box-shadow: 0 8px 28px rgba(0, 48, 135, 0.12);
}

.ose-comp-event__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 5px 10px;
	background: var(--ose-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 4px;
}

.ose-comp-event__date {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
}

.ose-comp-event__title {
	margin: 0 0 8px;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--ose-accent);
	line-height: 1.2;
}

.ose-comp-event__location {
	margin: 0 0 12px;
	font-size: 14px;
	color: #5a6478;
}

.ose-comp-event__status {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 100px;
}

.ose-comp-event__status--open { background: #e6f4ea; color: #1e7e34; }
.ose-comp-event__status--soon { background: #fff3cd; color: #856404; }
.ose-comp-event__status--closed { background: #f8d7da; color: #721c24; }
.ose-comp-event__status--confirm { background: #eef3fb; color: var(--ose-accent); }

.ose-comp-event__price {
	margin: 0 0 16px;
	font-size: 15px;
	font-weight: 700;
	color: #0f1f44;
}

.ose-comp-event__btn {
	display: inline-flex;
	padding: 12px 24px;
	background: var(--ose-accent);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 100px;
	transition: opacity 0.2s ease;
}

.ose-comp-event__btn:hover {
	opacity: 0.9;
	color: #fff !important;
}

/* Divisions table */
.ose-comp-divisions__table {
	border: 1px solid #e8ecf2;
	border-radius: 12px;
	overflow: hidden;
}

.ose-comp-divisions__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	border-bottom: 1px solid #e8ecf2;
	background: #fff;
}

.ose-comp-divisions__row:nth-child(even) {
	background: #f7f9fc;
}

.ose-comp-divisions__row:last-child {
	border-bottom: none;
}

.ose-comp-divisions__name {
	font-weight: 700;
	color: var(--ose-accent);
}

.ose-comp-divisions__criteria {
	color: #5a6478;
	text-align: right;
}

.ose-comp-divisions__note {
	margin: 16px 0 0;
	font-size: 13px;
	color: #8a94a8;
	font-style: italic;
}

/* Steps */
.ose-comp-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.ose-comp-step {
	padding: 24px;
	background: #f7f9fc;
	border-radius: 16px;
	border: 1px solid #e8ecf2;
}

.ose-comp-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 16px;
	background: var(--ose-accent);
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	border-radius: 50%;
}

.ose-comp-step__title {
	margin: 0 0 8px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ose-accent);
}

.ose-comp-step__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6478;
}

/* Info & rules */
.ose-comp-info__box {
	background: var(--ose-accent);
	color: #fff;
	border-radius: 16px;
	padding: 28px 32px;
	margin-bottom: 40px;
}

.ose-comp-info__box-title {
	margin: 0 0 16px;
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
}

.ose-comp-info__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ose-comp-info__list li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 15px;
	font-weight: 500;
}

.ose-comp-info__list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ose-comp-info__rules-intro {
	margin: -12px 0 24px;
	font-size: 16px;
	line-height: 1.7;
	color: #5a6478;
}

.ose-comp-accordion__item {
	border: 1px solid #e8ecf2;
	border-radius: 8px;
	margin-bottom: 8px;
	overflow: hidden;
	background: #fff;
}

.ose-comp-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 20px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--ose-accent);
	text-align: left;
}

.ose-comp-accordion__icon {
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--ose-accent);
	border-bottom: 2px solid var(--ose-accent);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.ose-comp-accordion__trigger[aria-expanded="true"] .ose-comp-accordion__icon {
	transform: rotate(-135deg);
}

.ose-comp-accordion__panel {
	padding: 0 20px 16px;
}

.ose-comp-accordion__panel p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #5a6478;
}

@media (max-width: 600px) {
	.ose-comp-divisions__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.ose-comp-divisions__criteria {
		text-align: left;
	}
}

/* Past competitions & winners */
.ose-comp-past {
	--ose-accent: #003087;
	--ose-gold: #c9a227;
	width: 100%;
}

.ose-comp-past__sub {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a94a8;
	margin: 0 0 8px;
}

.ose-comp-past__title {
	margin: 0 0 12px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--ose-accent);
	line-height: 1.15;
}

.ose-comp-past__intro {
	margin: 0 0 32px;
	max-width: 720px;
	font-size: 16px;
	line-height: 1.7;
	color: #5a6478;
}

.ose-comp-past__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
}

.ose-comp-past-event {
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(15, 31, 68, 0.06);
}

.ose-comp-past-event__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #eef1f6;
}

.ose-comp-past-event__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ose-comp-past-event__body {
	padding: 24px;
}

.ose-comp-past-event__date {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #8a94a8;
}

.ose-comp-past-event__title {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--ose-accent);
	line-height: 1.2;
}

.ose-comp-past-event__summary {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6478;
}

.ose-comp-past-event__winners {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 20px;
}

.ose-comp-past-winner {
	padding: 14px 16px;
	background: #f7f9fc;
	border-radius: 10px;
	border: 1px solid #e8ecf2;
}

.ose-comp-past-winner__division {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ose-accent);
}

.ose-comp-past-winner__podium {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ose-comp-past-winner__place {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.ose-comp-past-winner__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 800;
	border-radius: 4px;
	flex-shrink: 0;
}

.ose-comp-past-winner__place.is-gold .ose-comp-past-winner__rank {
	background: var(--ose-gold);
	color: #fff;
}

.ose-comp-past-winner__place.is-silver .ose-comp-past-winner__rank {
	background: #c0c0c0;
	color: #fff;
}

.ose-comp-past-winner__place.is-bronze .ose-comp-past-winner__rank {
	background: #cd7f32;
	color: #fff;
}

.ose-comp-past-winner__name {
	font-weight: 600;
	color: #0f1f44;
}

.ose-comp-past-event__link {
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ose-accent) !important;
	text-decoration: none !important;
	border-bottom: 2px solid var(--ose-accent);
	padding-bottom: 2px;
	transition: opacity 0.2s ease;
}

.ose-comp-past-event__link:hover {
	opacity: 0.75;
}

/* ═══════════════════════════════════════
   COMPETITIONS — ELITE SURFERS
   ═══════════════════════════════════════ */
.ose-comp-elite {
	--ose-accent: #003087;
	--ose-elite-marker: var(--ose-accent);
	width: 100%;
}

.ose-comp-elite__sub {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a94a8;
}

.ose-comp-elite__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	color: var(--ose-accent);
}

.ose-comp-elite__intro {
	margin: 0 0 32px;
	max-width: 720px;
	font-size: 16px;
	line-height: 1.65;
	color: #5a6478;
}

.ose-comp-elite__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.ose-comp-elite--cols-2 .ose-comp-elite__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ose-comp-elite--cols-3 .ose-comp-elite__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ose-comp-elite--cols-4 .ose-comp-elite__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ose-elite-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(15, 31, 68, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ose-elite-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(15, 31, 68, 0.1);
}

.ose-elite-card.is-featured {
	border-color: rgba(0, 48, 135, 0.35);
	box-shadow: 0 12px 36px rgba(0, 48, 135, 0.12);
}

.ose-elite-card__media {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.ose-elite-card__img,
.ose-elite-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ose-elite-card__placeholder {
	background: linear-gradient(135deg, #dbe4f3 0%, #eef3fb 100%);
}

.ose-elite-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 20, 70, 0.55) 0%, transparent 55%);
	pointer-events: none;
}

.ose-elite-card__featured {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 6px 12px;
	background: #c9a227;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 100px;
}

.ose-elite-card__category {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 2;
	padding: 6px 12px;
	background: var(--ose-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 100px;
}

.ose-elite-card__body {
	padding: 22px 22px 24px;
}

.ose-elite-card__name {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--ose-accent);
}

.ose-elite-card__country {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	color: #8a94a8;
}

.ose-elite-card__bio {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6478;
}

.ose-elite-card__achievements-title {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ose-accent);
}

.ose-elite-card__achievements-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ose-elite-card__achievements-list li {
	position: relative;
	padding: 0 0 0 22px;
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.5;
	color: #5a6478;
}

.ose-elite-card__achievements-list li:last-child {
	margin-bottom: 0;
}

.ose-elite-card__achievements-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ose-elite-marker);
	box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.12);
}

.ose-elite-card__gallery {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #e8ecf2;
}

.ose-elite-card__gallery-title {
	margin: 0 0 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ose-accent);
}

.ose-elite-card__gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.ose-comp-elite--gallery-cols-2 .ose-elite-card__gallery-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ose-comp-elite--gallery-cols-3 .ose-elite-card__gallery-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ose-comp-elite--gallery-cols-4 .ose-elite-card__gallery-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ose-elite-card__gallery-item {
	margin: 0;
	overflow: hidden;
}

.ose-elite-card__gallery-item img {
	width: 100%;
	height: 92px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	transition: transform 0.25s ease;
}

.ose-elite-card__gallery-item:hover img {
	transform: scale(1.05);
}

@media (max-width: 1024px) {
	.ose-comp-elite--cols-4 .ose-comp-elite__grid,
	.ose-comp-elite--cols-3 .ose-comp-elite__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ose-comp-elite--cols-4 .ose-comp-elite__grid,
	.ose-comp-elite--cols-3 .ose-comp-elite__grid,
	.ose-comp-elite--cols-2 .ose-comp-elite__grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.ose-faq {
	--ose-accent: #003087;
	width: 100%;
}

.ose-faq__sub {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a94a8;
}

.ose-faq__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	color: var(--ose-accent);
}

.ose-faq__intro {
	margin: 0 0 28px;
	max-width: 720px;
	font-size: 16px;
	line-height: 1.65;
	color: #5a6478;
}

.ose-faq__accordion {
	max-width: 900px;
}
