.gs-videos-highlight {
	position: relative;
	padding: 80px 20px 70px;
	background: linear-gradient(180deg, #1c160e 0%, #3d362c 100%);
	color: #fff;
	overflow: hidden;
}

.gs-videos-highlight__badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 130px;
	height: 130px;
	background: radial-gradient(ellipse at center, rgba(214, 178, 88, 0.65) 0%, rgba(214, 178, 88, 0) 70%);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	pointer-events: none;
}

.gs-videos-highlight__badge-icon {
	margin-top: 28px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #cfac4c, #b48512);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath fill='white' d='M26 2a24 24 0 1024 24A24 24 0 0026 2zm0 44.18A20.18 20.18 0 1146.18 26 20.2 20.2 0 0126 46.18zM21 16h10a2 2 0 012 2v16a2 2 0 01-2 2H21a2 2 0 01-2-2V18a2 2 0 012-2zm3.5 6v8l6-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gs-videos-highlight__container {
	position: relative;
	z-index: 1;
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.gs-videos-highlight__header {
	text-align: start;
}
.gs-videos-highlight__subtitle {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d6b258;
	margin-bottom: 12px;
    font-family: "STIX Two Text", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: normal;
    max-width: 270px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.gs-videos-highlight__subtitle span {
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
}

.gs-videos-highlight__subtitle span::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transform: translateX(-50%);
}

.gs-videos-highlight__title {
    font-family: "STIX Two Text", sans-serif, serif;
    font-weight: 500;
    font-size: 44px;
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 50px;
    font-weight: 400;
    clear: left;
    display: block;
}

.gs-videos-highlight__description {
	max-width: 640px;
	margin: 0 auto 32px;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.gs-videos-highlight__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
	margin-bottom: 36px;
}

.gs-videos-highlight__card {
	position: relative;
}

.gs-videos-highlight__card-link {
	display: block;
	position: relative;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.gs-videos-highlight__card-frame {
	display: block;
	padding-top: 56.25%;
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.4);
	background-size: cover;
	background-position: center;
	border: 4px solid #b48b24;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gs-videos-highlight__card-overlay {
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(17, 22, 31, 0.15) 0%, rgba(9, 12, 17, 0.65) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.gs-videos-highlight__card-content {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	text-align: left;
}

.gs-videos-highlight__card-title {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.gs-videos-highlight__card-desc {
	display: block;
	margin-top: 6px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
}

.gs-videos-highlight__card-play {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f3d28b;
	transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.gs-videos-highlight__card-link:hover .gs-videos-highlight__card-frame,
.gs-videos-highlight__card-link:focus .gs-videos-highlight__card-frame {
	transform: translateY(-6px);
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.6);
	border-color: #f3d28b;
}

.gs-videos-highlight__card-link:hover .gs-videos-highlight__card-overlay,
.gs-videos-highlight__card-link:focus .gs-videos-highlight__card-overlay {
	opacity: 1;
}

.gs-videos-highlight__card-link:hover .gs-videos-highlight__card-play,
.gs-videos-highlight__card-link:focus .gs-videos-highlight__card-play {
	transform: translateY(-4px) scale(1.05);
	background: rgba(243, 210, 139, 0.18);
	color: #fff7e1;
}

.gs-videos-highlight__actions {
	display: flex;
	justify-content: center;
}

.gs-videos-highlight__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	border-radius: 999px;
	background-color: #d6b258;
	color: #332b20;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.gs-videos-highlight__cta:hover,
.gs-videos-highlight__cta:focus {
	transform: translateY(-3px);
	box-shadow: 0 14px 25px rgba(214, 178, 88, 0.35);
	background-color: #e5c56b;
}

body.gs-videos-modal-open {
	overflow: hidden;
}

.gs-videos-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.gs-videos-modal.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.gs-videos-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 12, 17, 0.85);
}

.gs-videos-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	background: rgba(12, 17, 24, 0.96);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	border-radius: 12px;
	overflow: hidden;
}

.gs-videos-modal__body {
	padding: 0;
}

.gs-videos-modal__responsive-frame {
	position: relative;
	padding-top: 56.25%;
	background: #000;
}

.gs-videos-modal__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.gs-videos-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #f3d28b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gs-videos-modal__close:hover,
.gs-videos-modal__close:focus {
	transform: scale(1.05);
	background: rgba(243, 210, 139, 0.2);
	color: #fff;
	outline: none;
}

@media (max-width: 768px) {
	.gs-videos-modal__dialog {
		border-radius: 10px;
	}

	.gs-videos-modal__responsive-frame {
		padding-top: 62%;
	}

	.gs-videos-modal__close {
		top: 10px;
		right: 10px;
	}
}

@media (max-width: 767px) {
	.gs-videos-highlight {
		padding: 70px 16px 60px;
	}

	.gs-videos-highlight__grid {
		gap: 20px;
	}

	.gs-videos-highlight__card-content {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.gs-videos-highlight__card-title {
		font-size: 0.95rem;
	}
}
