@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&family=Noto+Serif+TC:wght@700;900&display=swap');

/* =========================================
   MEET 桃園 — style.css
   ========================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-dark: #070111;
	--bg-deep: #10031d;
	--text: #211c27;
	--text-soft: #625b70;
	--white: #ffffff;
	--black: #000000;
	--pink: #EA47A1;
	--pink-deep: #b70061;
	--pink-soft: #ff7fbd;
	--navy: #1f3ea7;
	--navy-soft: #6e88ff;
	--cyan: #61e6ff;
	--cream: #f8f4ef;
	--line: rgba(255, 255, 255, 0.12);
	--shadow: 0 1.125rem 3rem rgba(31, 6, 49, 0.18);
	--container: 77.5rem;
	--container-narrow: 70rem;
	--pad-x: clamp(1rem, 3vw, 2rem);
	--nav-h: 4.25rem;
	--section-title-size: clamp(2rem, 3vw, 2.5rem);
}

html {
	font-size: 1rem;
	scroll-behavior: smooth;
	background: var(--bg-dark);
}

body {
	font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
	background: var(--bg-dark);
	color: var(--text);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
}

ul,
ol {
	list-style: none;
}

.container,
.container-shell {
	width: min(100% - 2 * var(--pad-x), var(--container));
	margin: 0 auto;
}

.container--narrow {
	width: min(100% - 2 * var(--pad-x), var(--container-narrow));
}

.fade-up {
	opacity: 0;
	transform: translateY(2.75rem);
}

.section-heading {
	text-align: center;
	margin-bottom: clamp(2rem, 4vw, 3.2rem);
	position: relative;

	.section-deco {
		width: 2.625rem;
		margin: 0 auto 0.75rem;
	}

	.section-kicker {
		color: var(--pink);
		font-size: 0.95rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		margin-bottom: 0.75rem;
	}

	h2 {
		font-family: 'Noto Serif TC', serif;
		font-size: var(--section-title-size);
		line-height: 1.3;
		font-weight: 700;
	}

	p {
		color: var(--black);
		margin-top: 0.75rem;
		line-height: 1.75;
	}

	&.section-heading--light {

		h2,
		p {
			color: var(--white);
		}
	}
}

.pill-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	min-width: 9.375rem;
	padding: 0.7rem 1.25rem;
	border-radius: 62.4375rem;
	background: var(--white);
	color: var(--black);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.06);

	&.pink {
		color: var(--pink);
		background: var(--white);
	}
}

#header {
	position: sticky;
	top: -1rem;
	display: grid;
	grid-template-columns: 1fr min(100%, 80rem) 1fr;
	padding: 1rem 0;
	z-index: 1001;

	.header__wrapper {
		grid-column: 2 / 4;
		grid-template-columns: subgrid;
		border-top: 1px solid #515151;
		border-bottom: 1px solid #515151;
		border-left: 1px solid #515151;
		border-radius: 50vw 0 0 50vw;
		background: #09002C;

		.content {
			display: flex;
			width: min(100%, 80rem);
			align-items: center;
			padding: .5rem 3rem;
			border-radius: 50vw 0 0 50vw;

			.logo {
				height: 3rem;
				margin-inline-end: auto;
			}

			.nav {
				ul {
					list-style-type: none;
					display: flex;
					gap: 2rem;

					li {
						a {
							position: relative;
							text-decoration: none;
							font-family: 'Inter', sans-serif;
							font-size: 1rem;
							font-weight: 400;
							color: white;
							padding-inline-start: 1rem;

							&:hover,
							&:active,
							&.active {
								color: #ea47a1;
							}
						}
					}
				}
			}
		}
	}
}

#header-mobile {
	display: none;

	.logo {
		height: 2rem;
		margin-inline-end: auto;
	}
}

#nav-toggle {
	display: none;
	position: fixed;
	place-items: center;
	top: 0.5rem;
	right: 1rem;
	z-index: 1055;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;

	&.open {
		z-index: 10000;

		.bar {
			transform: rotate(135deg);

			&::before {
				top: 0;
				width: 0;
				transform: rotate(-90deg);
			}

			&::after {
				bottom: 0;
				transform: rotate(90deg);
			}
		}
	}

	.bar {
		width: 2rem;
		height: 1px;
		background-color: white;
		position: relative;
		transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;

		&::before,
		&::after {
			content: '';
			background-color: white;
			height: 1px;
		}

		&::before {
			position: absolute;
			top: -0.5rem;
			left: 50%;
			width: 1rem;
			transition: transform 0.3s ease-in-out, top 0.3s 0.25s ease-in-out, width 0.3s 0.5s ease-in-out;
		}

		&::after {
			position: absolute;
			bottom: -0.5rem;
			left: 0;
			width: 2rem;
			transition: transform 0.3s 0.25s ease-in-out, bottom 0.3s 0.25s ease-in-out, width 0.3s ease-in-out;
		}
	}
}

@media (max-width: 60rem) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		z-index: 9999;
		display: grid;
		grid-template-columns: 1fr;
		padding: 0;
		transform: translateX(100%);
		transition: transform 0.5s ease-in-out;

		&.open {
			transform: translateX(0);
		}

		.header__wrapper {
			grid-column: 1 / 2;
			display: grid;
			grid-template-columns: 1fr;
			border-radius: 0;
			background-color: black;
			width: 100%;

			.content {
				display: grid;
				place-content: center;
				justify-items: center;
				width: 100%;

				.logo {
					text-align: center;
					margin: 0 auto;
				}

				.nav {
					margin: 3rem auto;
					transform: translateX(-0.5rem);

					ul {
						flex-direction: column;
						gap: 0.5rem;
						text-align: center;

						li.link-more {
							transform: translateX(0.5rem);

							.submenu {
								position: relative;
								padding: 0.5rem 0.75rem 1rem;
								display: block;
								margin: 0 auto;
							}
						}
					}
				}
			}
		}
	}

	#header-mobile {
		display: flex;
		justify-content: space-between;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1050;
		padding: 1rem 1.5rem 0.75rem;
		background-color: rgba(0, 0, 0, 0.85);
		border-bottom: 1px solid #515151;
	}

	#nav-toggle {
		display: grid;
	}
}

#main {
	margin-block-start: -7.25rem;
}

.sec-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--nav-h) + 2rem) 0 0rem;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(22, 0, 31, 0.54) 0%, rgba(39, 0, 49, 0.56) 24%, rgba(80, 0, 69, 0.52) 62%, rgba(235, 59, 141, 0.38) 100%),
		url('img/sec-1/bg.jpg') center / cover no-repeat,
		linear-gradient(180deg, #16001f 0%, #270031 24%, #500045 62%, #eb3b8d 100%);

}
.hero-gem {
	position: absolute;
	z-index: 2;
	width: 4.625rem;
	height: 7.625rem;
	background: url('img/sec-1/3d-cone.png') center / contain no-repeat;
	filter: drop-shadow(0 0 2rem rgba(255, 101, 188, 0.35));

	&.hero-gem--left {
		left: 10%;
		top: 28%;
	}

	&.hero-gem--right {
		right: 11%;
		top: 13%;
		transform: scale(0.95);
	}
}

.sec1-content {
	position: relative;
	z-index: 3;
	width: min(100% - 2 * var(--pad-x), 53.75rem);
	text-align: center;
}

.sec1-eyebrow {
	color: var(--white);
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 700;
	text-shadow: 0 0 1.5rem rgba(255, 110, 194, 0.45);
	margin: clamp(1.5rem, 2.5vw, 2rem) 0;
}

.sec1-title {
	width: min(92%, 36rem);
	margin: 1rem auto 1.25rem;
	filter: drop-shadow(0 1.5rem 1.75rem rgba(180, 0, 97, 0.42));
}

.sec1-desc {
	max-width: 41.25rem;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.9;
	font-size: clamp(1.25rem, 1.5vw, 1.375rem);
	transform: translateY(-8rem);

	span {
		display: inline;
	}
}

.sec-2 {
	padding: 4.5rem 0 5rem;
	background: #030303;
	overflow: hidden;
	background-image: url(img/sec-2/bg-left.png);
	background-position: left -2rem top 3rem;
	background-size: 8rem auto;
	background-repeat: no-repeat;
	position: relative;

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 0;
		background: url('img/sec-2/bg.gif') center / cover no-repeat;
		opacity: 0.25;
	}

	.container {
		position: relative;
		z-index: 2;
	}
}

.sec2-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(100%, 62.5rem);
	margin: 1.5rem auto 4rem;
}

.sec2-branding h2 {
	color: var(--white);
	font-family: 'Noto Serif TC', serif;
	font-size: var(--section-title-size);
	font-weight: 700;

}

.sec2-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: start;
}

.news-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: 0;
	transition: transform 0.25s ease;

	&:hover {
		.news-card__img img {
			transform: scale(1.06);
		}

		.news-card__img::after {
			opacity: 0.8;
		}
	}

	.news-card__img {
		position: relative;
		aspect-ratio: 3 / 2;
		overflow: hidden;
		background: #111;

		&::after {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.76) 100%);
			transition: opacity 0.25s ease;
		}

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.35s ease;
		}

		h3 {
			position: absolute;
			left: 0.875rem;
			right: 0.875rem;
			bottom: 0.875rem;
			z-index: 1;
			color: var(--white);
			font-size: 1.5rem;
			font-weight: 500;
			line-height: 1.5;
			text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.55);
		}
	}

	.news-card__body {
		padding: 0.9rem 0.125rem 0;

		p {
			padding: .25rem 1rem;
			color: var(--white);
			font-size: 0.95rem;
			line-height: 1.7;
		}
	}
}

.news-tag {
	display: inline-flex;
	margin-bottom: 0.6rem;
	padding: 0.18rem 0.6rem;
	border-radius: 62.4375rem;
	background: var(--pink);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
}

.sec-3 {
	padding: 5.2rem 0 5rem;
	background-image: url(img/sec-3/right.png), url(img/sec-3/bg.jpg);
	background-position: right 0 bottom 3rem, center;
	background-size: 8rem auto, cover;
	background-repeat: no-repeat, no-repeat;

	overflow: hidden;

	.container {
		position: relative;
		z-index: 2;
	}

	.section-heading {
		max-width: 43rem;
		margin: 0 auto 2.25rem;

		.section-deco {
			width: 3rem;
			margin-bottom: 1rem;
		}

		h2 {
			font-size: var(--section-title-size);
			line-height: 1.5;
			margin-bottom: 1rem;
		}

		p {
			font-size: clamp(1rem, 2vw, 1.375rem);
			line-height: 1.75;
		}
	}
}

.sec3-stats {
	max-width: 51rem;
	margin: 0 auto 4rem;
	display: grid;
	gap: 3rem;
}

.stat-block {
	display: grid;
	gap: 0.9rem;

	.stat-line {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		text-align: center;
		color: #7F0055;
		font-weight: 700;
		width: min(100%, 60rem);
		margin: 0 auto;

		&::before,
		&::after {
			content: '';
			height: 1px;
			background: var(--black);
		}

		h3 {
			color: #7F0055;
			font-size: clamp(1rem, 1.5vw, 2rem);
			line-height: 1;
			color: #7F0055;

			strong {
				font-size: 1.25em;
				font-weight: 700;
				line-height: 1;
			}
		}

	}

	.stat-desc {
		text-align: center;
		font-size: 1rem;
		color: var(--black);
		font-weight: 500;
	}
}

.consultant-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	align-items: stretch;
	margin: 0 auto 4rem;
}

.consultant-card {
	background: var(--white);
	border: 1px solid rgba(38, 25, 45, 0.06);
	border-radius: 0.5rem;
	padding: 0;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	box-shadow: 0 0.5rem 1rem rgba(34, 20, 36, 0.035);
	transition: transform 0.2s ease, box-shadow 0.2s ease;

	&:hover {
		transform: translateY(-0.1875rem);
		box-shadow: 0 0.875rem 1.5rem rgba(34, 20, 36, 0.08);
	}

	&:focus-visible {
		outline: 0.1875rem solid rgba(228, 44, 143, 0.28);
		outline-offset: 0.1875rem;
	}

	.consultant-card__img {
		width: 100%;
		aspect-ratio: 0.86 / 1;
		overflow: hidden;
		background: #e9ebee;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}

	.consultant-card__name {
		padding: 0.75rem 0.625rem 0;
		font-weight: 700;
		font-size: 1rem;
		line-height: 1.3;
		margin-bottom: 0.25rem;
		color: #1f1b23;
	}

	.consultant-card__title {
		padding: 0 0.625rem 0.8rem;
		color: #6f6674;
		font-size: 0.815rem;
		line-height: 1.45;
		min-height: 3.4em;
	}
}

body.modal-open {
	overflow: hidden;
}

.consultant-modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	background: rgba(17, 13, 18, 0.6);
	backdrop-filter: blur(0.25rem);

	.consultant-modal__panel {
		position: relative;
		width: min(100%, 58rem);
		background: #fff;
		border-radius: 1.5rem;
		padding: 3.25rem 2.75rem 2.5rem;
		box-shadow: 0 1.75rem 5rem rgba(22, 17, 22, 0.2);
	}

	.consultant-modal__close {
		position: absolute;
		top: 1rem;
		right: 1rem;
		width: 2.75rem;
		height: 2.75rem;
		border: 0;
		background: transparent;
		color: #544452;
		font-size: 2rem;
		line-height: 1;
		cursor: pointer;
	}

	.consultant-modal__layout {
		display: grid;
		grid-template-columns: 10rem minmax(0, 1fr);
		gap: 2.25rem;
		align-items: start;
	}

	.consultant-modal__media {
		width: 10rem;
		aspect-ratio: 1;
		border-radius: 50%;
		overflow: hidden;
		background: #f1f1f1;
		margin-top: 1.25rem;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}

	.consultant-modal__content {
		padding-top: 0.5rem;

		h3 {
			margin-bottom: 0.85rem;
			font-size: clamp(1.9rem, 2vw, 2.25rem);
			line-height: 1.1;
			color: #f03ca1;
			font-weight: 700;
		}
	}

	.consultant-modal__title {
		font-size: 1.1rem;
		line-height: 1.8;
		font-weight: 700;
		color: #2f2530;
	}

	.consultant-modal__divider {
		width: min(100%, 25rem);
		height: 0.3125rem;
		margin: 1.15rem 0 1.5rem;
		background: #f03ca1;
	}

	.consultant-modal__intro {
		font-size: 1rem;
		line-height: 2;
		color: #5b4d59;
	}
}

.sec3-action {
	margin-top: 1.5rem;
	text-align: center;
}

.sec-4 {
	padding: 4.8rem 0;
	background: #fff;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
}

.category-card {
	position: relative;
	aspect-ratio: 646 / 1052;
	overflow: hidden;
	background-image: var(--card-bg);
	background-position: center;
	background-size: cover;

	.category-card__inner {
		position: absolute;
		inset: 0 0 auto;
		z-index: 1;
		padding: 2rem 1.4rem 0;
		color: var(--white);

		h3 {
			font-size: clamp(1.45rem, 2vw, 1.8rem);
			font-weight: 700;
			margin-bottom: 0.4rem;
		}

		p {
			font-size: 1.5rem;
			line-height: 1.7;
			color: rgba(255, 255, 255, 0.82);
		}
	}
}

.sec-5 {
	padding: 5.4rem 0 5.8rem;
	background: #fff;
}

.event-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 2.5rem;
	row-gap: 3.5rem;
	align-items: start;
}

.event-card {
	position: relative;
	padding: 0.75rem 1.25rem 1.15rem;
	background: #242424;
	border-radius: 1rem;
	overflow: visible;
	box-shadow: 0 1rem 1.75rem rgba(22, 18, 25, 0.1);

	.event-card__img {
		position: relative;
		aspect-ratio: 1.5 / 1;
		border-radius: 0.875rem;
		transform: translateY(-2rem);
		margin-bottom: -1rem;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 0.875rem;
		}
	}

	.event-card__body {
		display: flex;
		flex-direction: column;
		padding: 1.8rem 1.05rem 0;
		min-height: 13.5rem;
		background: #242424;

		h3 {
			color: #ff4aa0;
			font-size: 1.15rem;
			line-height: 1.48;
			font-weight: 700;
			margin-bottom: 0.95rem;
		}

		p {
			color: rgba(255, 255, 255, 0.9);
			font-size: 0.9rem;
			line-height: 1.7;
		}

		.event-card__more {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			margin-top: auto;
			padding-top: 1.7rem;
			text-decoration: none;

			img {
				width: auto;
				height: 1.75rem;
				display: block;
			}
		}
	}
}

.event-tag {
	position: absolute;
	left: 0.1rem;
	bottom: 0;
	transform: translateY(25%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: #ff2b92;
	color: var(--white);
	font-size: 0.82rem;
	font-weight: 700;
}

.sec5-readmore {
	margin-top: 2.6rem;
	text-align: center;
}

.readmore-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	min-width: 6.5rem;
	height: 2.2rem;
	padding: 0 1.2rem;
	border: 1px solid #ff4aa0;
	color: #ff2b92;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	background: #fff;
}

.sec-6 {
	padding: 5.5rem 0 5.75rem;
	background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
	overflow: hidden;
	position: relative;

	.sec6-bg {
		position: absolute;
		inset: 0;
		border-radius: 6rem 1rem 1rem 6rem;
		overflow: hidden;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			opacity: 0.22;
			mix-blend-mode: soft-light;
		}
	}

	.container {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr min(100%, 90rem) 1fr;
		position: relative;
		z-index: 2;

		.sec6-layout {
			grid-column: 2/4;
			position: relative;
			display: grid;
			grid-template-columns: 20rem minmax(0, 1fr);
			gap: 1.5rem;
			align-items: center;
			padding: 2rem 0 1.4rem 2rem;
			min-height: 29.25rem;
			border-radius: 50vw 0 0 50vw;
			background: linear-gradient(90deg, #240027 0%, #7f0c58 52%, #f39bc8 100%);

		}
	}
}

.sec6-copy {
	min-width: 0;
	color: var(--white);

	.sec6-logo {
		width: min(100%, 15rem);
		margin: 2rem auto 2.7rem;
	}

	h2 {
		font-family: 'Noto Serif TC', serif;
		font-size: var(--section-title-size);
		line-height: 1.5;
		font-weight: 700;
		text-align: center;
		text-shadow: 0 0.125rem 0.5rem rgba(26, 0, 23, 0.22);
	}
}

.sec6-swiper {
	min-width: 0;
	width: 100%;
	padding: 1.8rem 0 1rem;
	overflow: hidden;

	>* {
		min-width: 0;
	}
}

.sec6-swiper .swiper-wrapper,
.sec6-swiper .swiper-slide {
	min-width: 0;
}

.sec6-swiper .swiper-wrapper {
	align-items: stretch;
}

.sec6-swiper .swiper-slide {
	width: 18rem;
}

.sec6-controls {
	display: flex;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 2rem;
}

.swiper-btn-prev,
.swiper-btn-next,
.sec8-prev,
.sec8-next {
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.sec6-controls .sec6-prev,
.sec6-controls .sec6-next {
	width: 3rem;
	height: 3rem;
	border: 0;
	background: #b91478;
	box-shadow: 0 0.75rem 1.5rem rgba(62, 0, 46, 0.18);

}

.speaker-card {
	height: 100%;
	min-height: 25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 0.875rem;
	background: rgba(255, 255, 255, 0.98);
	padding: 2.1rem 1.55rem 1.7rem;
	box-shadow: 0 0 0 1px rgba(34, 20, 36, 0.03), 0 1rem 2rem rgba(69, 15, 55, 0.14);
	text-align: center;
	position: relative;

	&::before,
	&::after {
		content: '';
		position: absolute;
		width: 1.5rem;
		height: 1.5rem;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		pointer-events: none;
	}

	&::before {
		background-image: url('img/sec-6/_quotation-top.png');
		left: 1.7rem;
		bottom: 6.3rem;
	}

	&::after {
		background-image: url('img/sec-6/_quotation-bottom.png');
		right: 1.55rem;
		bottom: 1rem;
	}

	.speaker-card__img {
		width: 11.25rem;
		height: 11.25rem;
		margin: 0 auto 2rem;
		border-radius: 50%;
		overflow: hidden;
		background: linear-gradient(180deg, #edf2f7, #d7dee8);

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}

	h3 {
		font-family: 'Noto Serif TC', serif;
		font-size: clamp(2rem, 3vw, 2rem);
		line-height: 1.08;
		font-weight: 700;
		margin-bottom: 0.8rem;
	}

	.speaker-card__role {
		margin-bottom: 3.2rem;
		font-size: 1.25rem;
		line-height: 1.25;
		color: #1e1a21;
	}

	.speaker-card__quote {
		text-align: left;
		color: #3d3d3d;
		font-size: 1.12rem;
		line-height: 1.75;
		padding: 0 1.5rem 0 2.25rem;
		max-width: none;
	}
}

.bg__7 {
	background-image: url('img/sec-7/sec-07-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.sec-7 {
	padding: 5rem 0 5.4rem;
	background:
		url('img/sec-7/MEET-Taoyuan-PLUS.png') right 4rem top 4rem / min(42vw, 16rem) auto no-repeat;
	overflow: hidden;
	position: relative;

	.container {
		position: relative;
		z-index: 2;
	}
}

.sec7-header {
	position: relative;
	text-align: center;
	margin-bottom: 4.35rem;
	padding-top: 0.2rem;

	h2 {
		font-family: 'Noto Serif TC', serif;
		font-size: var(--section-title-size);
		line-height: 1.25;
		font-weight: 700;
		color: #241d2c;
	}
}

.sec7-gem {
	width: 2.7rem;
	margin: 0 auto 0.9rem;
}

.sec7-plus-logo {
	position: absolute;
	right: 0;
	top: -0.05rem;
	width: min(100%, 9rem);
}

.sec7-layout {
	display: block;
}

.sec7-main {
	width: min(100%, 72.5rem);
	margin: 0 auto;
}

.tab-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.25rem;
	margin-bottom: 0;
	overflow-x: auto;
}

.tab-btn {
	border: 0;
	padding: 0.82rem 1.1rem;
	background: rgba(239, 71, 149, 0.72);
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;

	&.active {
		background: var(--pink);
		color: var(--white);
	}
}

.tab-content {
	display: none;
	background: rgba(255, 255, 255, 0.94);
	border-top: 0.35rem solid var(--pink);
	box-shadow: 0 1.25rem 2.6rem rgba(121, 97, 77, 0.12);
	padding: 1.7rem 2rem 1.9rem;
	color: var(--black);

	&.active {
		display: block;
	}
}

.guide-block+.guide-block {
	margin-top: 1.7rem;
}
.guide-block-header {
	color: var(--black);
	margin: 1rem 0 2rem 0;

	h3 {
		margin-bottom: 1rem;

		span {
			display: inline-block;
			padding: 0 0.55rem;
			background: linear-gradient(180deg, transparent 45%, rgba(245, 104, 174, 0.33) 45% 100%);
			font-size: 1.5rem;
		    font-weight: 700;
			color: var(--black);
		}
	}
}
.guide-block {
	color: var(--black);
	padding-left: 2rem;
	border-left: 1px solid #666666;
	margin-left: 1rem;

	>p {
		font-size: 	1rem;
		line-height: 1.95;
		color: var(--black);
	}
}

.guide-phase-list {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.guide-phase {
	h4 {
		margin-bottom: 0.35rem;
		font-size: 1.25rem;
		font-weight: 700;
		color: #ef3091;
	}

	p {
		ffont-size: 1rem;
		line-height: 1.9;
		color: var(--black);
	}
}

.score-list {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
	padding-top: 1rem;
}

.score-item {
	display: grid;
	grid-template-columns: 8.75rem 3rem minmax(0, 1fr);
	align-items: start;
	gap: 0.9rem;
	padding-left: 1.15rem;
	position: relative;

	/*
	&::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0.35rem;
		bottom: 0.35rem;
		width: 1px;
		background: var(--black);
	}
		*/

	p {
		font-size: 1rem;
		line-height: 1.8;
		color: var(--black);
	}
}

.score-item__meta {
	display: contents;
}

.score-item__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.2rem;
	padding: 0.35rem 0.8rem;
	border-radius: 62.4375rem;
	background: var(--black);
	font-size: .875rem;
	font-weight: 600;
	color: var(--white);
	text-align: center;
}

.score-item strong {
	position: relative;
	padding-right: 0.9rem;
	font-size: 1rem;
	line-height: 2.2rem;
	font-weight: 700;
	color: var(--black);

	&::after {
		content: '';
		position: absolute;
		right: 0;
		top: 0.2rem;
		bottom: 0.2rem;
		width: 1px;
		background: var(--black);
	}
}

.type-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.highlights-panel {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 0 0 1.5rem 1.5rem;
	padding: 2rem 1.9rem 2.3rem;
}

.highlights-panel__title {
	margin-bottom: 2rem;

	span {
		display: inline-block;
		padding: 0 0.6rem;
		background: linear-gradient(180deg, transparent 48%, rgba(245, 104, 174, 0.35) 48% 100%);
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--black);
	}
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.highlight-card {
	position: relative;
	min-height: 22.5rem;
	padding: 1rem 1.25rem 1.4rem;
	border-radius: 1.2rem;
	text-align: center;
	color: var(--black);

	h4 {
		margin-bottom: 1rem;
		font-size: 1.375rem;
		line-height: 1.5;
		font-weight: 800;
	}

	p {
		font-size: 1rem;
		line-height: 1.9;
	}
}

.highlight-card--pink {
	background: #efb9dc;
}

.highlight-card--peach {
	background: #f6cfb9;
}

.highlight-card--lime {
	background: #e4efac;
}

.highlight-card__num {
	position: absolute;
	left: 0.95rem;
	top: 0.65rem;
	font-size: 2rem;
	line-height: 1;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.88);
}

.highlight-card__icon {
	width: 8.75rem;
	height: 8.75rem;
	margin: 0.2rem auto 1rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
	display: grid;
	place-items: center;

	img {
		/* width: 4.1rem;
		height: 4.1rem; */
		object-fit: contain;
	}
}

.highlight-card__lead {
	margin-bottom: 0.85rem;
	font-weight: 700;
	color: #5F0F0F;
}

.type-card {
	padding: 1.5rem 1rem;
	border: 1px solid rgba(238, 113, 172, 0.22);
	background: rgba(255, 255, 255, 0.78);
	text-align: center;
	border-radius: 0.5rem;

	img {
		width: 3.25rem;
		height: 3.25rem;
		object-fit: contain;
		margin: 0 auto 0.7rem;
	}

	h3 {
		margin-bottom: 0.35rem;
		font-size: 0.98rem;
	}

	p {
		color: var(--black);
		font-size: 0.95rem;
		line-height: 1.7;
	}
}

.accordion {
	display: grid;
	gap: 0.6rem;
}

.faq-content {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 0 0 1.5rem 1.5rem;
	padding: 1.85rem 1.7rem 2rem;
	box-shadow: 0 1.25rem 2.6rem rgba(121, 97, 77, 0.12);
}

.faq-content__title {
	margin-bottom: 1.75rem;

	span {
		display: inline-block;
		padding: 0 0.6rem;
		background: linear-gradient(180deg, transparent 48%, rgba(245, 104, 174, 0.35) 48% 100%);
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--black);
	}
}

.faq-list {
	display: grid;
	gap: 1.55rem;
}

.faq-entry {
	display: grid;
	grid-template-columns: 2.35rem minmax(0, 1fr);
	gap: 0.8rem;
	align-items: start;
}

.faq-entry__badge {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	background: var(--black);
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 800;
	display: grid;
	place-items: center;
	line-height: 1;
}

.faq-entry__body {
	h4 {
		margin-bottom: 0.55rem;
		font-size: 1.15rem;
		line-height: 1.7;
		font-weight: 800;
		color: var(--black);
	}

	p {
		font-size: 1rem;
		line-height: 1.85;
		color: var(--black);
	}

	strong {
		font-weight: 800;
		color: var(--black);
	}
}

.accordion-item {
	border: 1px solid rgba(227, 0, 127, 0.18);
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0.45rem;

	&.open {
		.accordion-btn::after {
			transform: rotate(45deg);
		}

		.accordion-body {
			grid-template-rows: 1fr;
		}
	}
}

.accordion-btn {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 1rem 1.15rem;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;

	&::after {
		content: '+';
		color: var(--pink);
		font-size: 1.2rem;
		transition: transform 0.2s ease;
	}
}

.accordion-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.25s ease;

	p {
		overflow: hidden;
		padding: 0 1.15rem 1rem;
		color: var(--black);
		line-height: 1.8;
		font-size: 1.15rem;
	}
}

.schedule-panel {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 0 0 1.5rem 1.5rem;
	padding: 1.85rem 1.8rem 2rem;
	box-shadow: 0 1.25rem 2.6rem rgba(121, 97, 77, 0.12);
}

.schedule-panel__title {
	margin-bottom: 1.75rem;

	span {
		display: inline-block;
		padding: 0 0.6rem;
		background: linear-gradient(180deg, transparent 48%, rgba(245, 104, 174, 0.35) 48% 100%);
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--black);
	}
}

.schedule-list {
	display: grid;
	gap: 0;
}

.schedule-item {
	display: grid;
	grid-template-columns: 10rem minmax(0, 1fr);
	gap: 2.1rem;
	align-items: start;
	position: relative;
	padding: 0 0 1.75rem;

	&:last-child {
		padding-bottom: 0;
	}

	&:not(:last-child) .schedule-date::after {
		content: '';
		position: absolute;
		left: 50%;
		top: 100%;
		width: 2px;
		height: calc(100% + 0.45rem);
		background: #f22891;
		transform: translateX(-50%);
	}
}

.schedule-date {
	position: relative;
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.8rem;
	height: 2.25rem;
	padding: 0 0.9rem;
	border-radius: 0.5rem;
	background: #e6198a;
	color: var(--white);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.schedule-item__body {
	padding-top: 0.85rem;

	p {
		position: relative;
		padding-left: 0.9rem;
		font-size: 1.25rem;
		line-height: 1.75;
		font-weight: 700;
		color: var(--black);

		&::before {
			content: '•';
			position: absolute;
			left: 0;
			top: 0;
			color: var(--black);
		}

		+p {
			margin-top: 0.55rem;
		}
	}
}

.sec7-side {
	display: grid;
	gap: 1rem;
}

.sec7-mask {
	border-radius: 0.875rem;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.sec-8 {
	padding: 4.8rem 0 4rem;

	.container {
		position: relative;
	}
}

.sec8-swiper {
	padding: 0 3.6rem;
}

.report-card {
	overflow: hidden;
	border-radius: 0.7rem;
	background: linear-gradient(180deg, #293a88 0%, #24336f 100%);
	color: var(--white);
	box-shadow: 0 0.9rem 1.8rem rgba(39, 58, 133, 0.16);

	.report-card__img {
		aspect-ratio: 1 / 0.88;
		overflow: hidden;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}

	.report-card__body {
		padding: 1.25rem;
		background: #292929;

		h3 {
			font-size: 1rem;
			line-height: 1.6;
			font-weight: 400;
		}
	}
}

.sec8-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-10%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 3;

	.sec8-prev,
	.sec8-next {
		pointer-events: auto;
		border-color: transparent;
		background: transparent;
		box-shadow: none;
	}
}

.sec-9 {
	padding: 0 0 4.5rem;

	.section-heading {
		text-align: left;
		margin-bottom: 2rem;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid rgba(17, 25, 39, 0.68);

		h2 {
			font-size: var(--section-title-size);
			line-height: 1;
			color: #090919;
		}
	}
}

.podcast-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem 1rem;
}

.podcast-item {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	align-items: start;
	gap: 1.15rem;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(186, 197, 238, 0.65);
	border-radius: 0.75rem;
	box-shadow: 0 0.375rem 1rem rgba(75, 89, 160, 0.08);
}

.podcast-item__album {
	width: 4.25rem;
	height: 4.25rem;
	overflow: hidden;
	border-radius: 0.25rem;
	background: #eff2f8;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.podcast-item__info {
	min-width: 0;

	h3 {
		font-size: 0.82rem;
		line-height: 1.25;
		font-weight: 700;
		color: #27106f;
	}

	p {
		color: #241c72;
		font-size: 0.76rem;
		line-height: 1.55;
	}
}

.podcast-item__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
}


.podcast-listen {
	flex: 0 0 auto;
	padding: 0.35rem 0.7rem;
	border: 0;
	border-radius: 0.28rem;
	background: #df2f93;
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.site-footer {
	padding: 1.15rem 0 1.05rem;
	background: #030303;
	color: rgba(255, 255, 255, 0.84);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
}

.contact-section {
	padding: 2.5rem 0;
	position: relative;
	overflow: hidden;

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		background-image:
			radial-gradient(rgba(117, 146, 212, 0.2) 0.5px, transparent 0.5px),
			radial-gradient(rgba(236, 124, 166, 0.16) 0.5px, transparent 0.5px);
		background-position: 0 0, 10px 10px;
		background-size: 14px 14px, 18px 18px;
		opacity: 0.85;
		pointer-events: none;
	}
}

.contact-section__inner {
	position: relative;
	z-index: 1;
	padding: 0 1.5rem;

	h2 {
		margin-bottom: 1rem;
		padding-bottom: 0.55rem;
		border-bottom: 1px solid rgba(25, 23, 33, 0.45);
		font-family: 'Noto Serif TC', serif;
		font-size: var(--section-title-size);
		line-height: 1.15;
		font-weight: 700;
		color: #19131d;
	}
}

.contact-section__info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding-top: 0.65rem;
	color: #131019;
	font-size: 1rem;
	font-weight: 700;

	p {
		display: inline-flex;
		align-items: center;
		gap: 0.45rem;
		margin: 0;
	}

	span {
		position: relative;
		padding-right: 0.75rem;

		&::after {
			content: '|';
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			color: rgba(19, 16, 25, 0.72);
		}
	}

	a {
		color: inherit;
		text-decoration: none;
	}
}

.footer-sponsors {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding-bottom: 0.85rem;
}

.footer-sponsor-group {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
}

.footer-sponsor-label {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.72rem;
	font-weight: 500;
	white-space: nowrap;
}

.footer-sponsor-logos {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;

	img {
		display: block;
		height: auto;
		max-width: 100%;
	}
}

.footer-sponsor-logos--guide {
	img:nth-child(1) {
		height: 1.9rem;
	}

	img:nth-child(2) {
		height: 2rem;
	}
}

.footer-sponsor-logos--host {
	img {
		height: 2.2rem;
	}
}

.footer-sponsor-logos--execute {
	img:nth-child(1) {
		height: 2rem;
	}

	img:nth-child(2) {
		height: 1.5rem;
	}
}

.fixed-cta {
	position: fixed;
	right: clamp(0.75rem, 2vw, 1.4rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: 900;
	transition: transform 0.2s ease;

	&:hover {
		transform: translateY(-2px);
	}

	img {
		width: clamp(3.5rem, 7vw, 6rem);
	}
}

@media (max-width: 68.75rem) {
	.sec2-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.consultant-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.1rem 1rem;
	}

	.consultant-modal {
		.consultant-modal__panel {
			padding: 3rem 2rem 2.25rem;
		}

		.consultant-modal__layout {
			grid-template-columns: 8.5rem minmax(0, 1fr);
			gap: 1.5rem;
		}

		.consultant-modal__media {
			width: 8.5rem;
		}
	}

	.sec6-layout,
	.sec7-layout {
		grid-template-columns: 1fr !important;
	}

	.sec-6 {
		.sec6-bg {
			border-radius: 3rem 1rem 1rem 3rem;
		}
	}

	.sec6-layout {
		gap: 1.5rem;
		padding: 2.25rem 1.25rem 1.25rem;
		min-height: auto;
		border-radius: 3rem 1rem 1rem 3rem;
	}

	.sec6-copy {
		padding-left: 1rem;
		align-self: start;

		.sec6-logo {
			margin-bottom: 1.4rem;
		}
	}

	.speaker-card {
		min-height: 22rem;
		padding: 1.8rem 1.25rem 1.4rem;

		&::before {
			left: 1.2rem;
			bottom: 5.4rem;
		}

		&::after {
			right: 1.1rem;
			bottom: 0.8rem;
		}

		.speaker-card__img {
			width: 8.5rem;
			height: 8.5rem;
			margin-bottom: 1.35rem;
		}

		h3 {
			font-size: 2rem;
			margin-bottom: 0.55rem;
		}

		.speaker-card__role {
			font-size: 1.05rem;
			margin-bottom: 2rem;
		}

		.speaker-card__quote {
			font-size: 0.98rem;
			padding: 0 1.25rem 0 1.8rem;
		}
	}

	.sec7-header {
		padding-top: 0.2rem;

		h2 {
			font-size: var(--section-title-size);
		}
	}

	.sec7-plus-logo {
		width: 7rem;
	}

	.sec7-main {
		width: 100%;
	}

	.tab-btn {
		padding: 0.78rem 0.95rem;
		font-size: 0.84rem;
	}

	.tab-content {
		padding: 1.4rem 1.2rem 1.6rem;
	}

	.schedule-panel {
		padding: 1.55rem 1.25rem 1.75rem;
	}

	.schedule-item {
		grid-template-columns: 7rem minmax(0, 1fr);
		gap: 1.25rem;
	}

	.schedule-date {
		min-width: 4.2rem;
		font-size: 0.86rem;
	}

	.schedule-item__body p {
		font-size: 0.84rem;
	}

	.highlights-panel {
		padding: 1.55rem 1.25rem 1.8rem;
	}

	.faq-content {
		padding: 1.55rem 1.25rem 1.75rem;
	}

	.highlights-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.highlight-card {
		min-height: auto;
	}

	.score-item {
		grid-template-columns: 7.8rem 2.75rem minmax(0, 1fr);
		gap: 0.7rem;
		padding-left: 0.9rem;
	}

	.category-grid,
	.event-grid,
	.type-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sec8-swiper {
		padding: 0 3rem;
	}

	.sec8-nav {
		transform: translateY(-6%);
	}
}

@media (max-width: 47.9375rem) {
	:root {
		--nav-h: 3.875rem;
		--section-title-size: 1.5rem;
	}

	#main {
		margin-block-start: calc(-.75 * var(--nav-h));
	}

	.hamburger {
		display: inline-flex;
	}

	.nav-links {
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		padding: 0.6rem 1rem 1rem;
		background: rgba(10, 3, 24, 0.97);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
		transform: translateY(-0.75rem);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;

		&.open {
			opacity: 1;
			transform: translateY(0);
			pointer-events: auto;
		}

		a {
			padding: 0.85rem 0.25rem;
			font-size: 0.92rem;

			&::after {
				display: none;
			}
		}
	}

	.hero-lines,
	.hero-wire {
		display: none;
	}

	.hero-gem {
		width: 2.75rem;
		height: 4.625rem;

		&.hero-gem--left {
			left: 6%;
			top: 24%;
		}

		&.hero-gem--right {
			right: 8%;
			top: 14%;
		}
	}

	.sec-1 {
		min-height: 92vh;
		background:
			linear-gradient(180deg, rgba(22, 0, 31, 0.5) 0%, rgba(39, 0, 49, 0.5) 24%, rgba(80, 0, 69, 0.48) 62%, rgba(235, 59, 141, 0.34) 100%),
			url('img/sec-1/bg-mobi.jpg') center / cover no-repeat,
			linear-gradient(180deg, #16001f 0%, #270031 24%, #500045 62%, #eb3b8d 100%);
	}

	.sec1-title {
		width: min(100%, 33.75rem);
	}

	.sec1-desc {
		transform: translateY(-4rem);
		font-size: 1.125rem;

		span {
			display: block;
		}
	}

	.sec2-header,
	.footer-sponsors {
		justify-content: flex-start;
		gap: 1rem 1.5rem;
	}

	.sec2-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.sec-2 .container {
		width: min(100% - 4 * var(--pad-x), var(--container));
	}

	.sec-2::before {
		background-image: url('img/sec-2/bg-mobi.gif');
	}

	.sec2-more {
		width: 4rem;
		height: 4rem;
		font-size: 0.7rem;
	}

	.stat-line {
		grid-template-columns: 1fr;
	}

	.stat-line {
		flex-wrap: wrap;
		gap: 0.35rem;

		&::before,
		&::after {
			max-width: 3.5rem;
		}

		span {
			width: 100%;
		}
	}

	.category-grid,
	.event-grid,
	.type-grid {
		grid-template-columns: 1fr;
	}

	.consultant-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 0.9rem;
	}

	.podcast-list {
		grid-template-columns: 1fr;
	}

	.consultant-card .consultant-card__img {
		aspect-ratio: 0.9 / 1;
	}

	.consultant-card {
		.consultant-card__name {
			font-size: 0.95rem;
		}

		.consultant-card__title {
			min-height: auto;
		}
	}

	.consultant-modal {
		padding: 1rem;
		align-items: start;
		overflow-y: auto;

		.consultant-modal__panel {
			width: 100%;
			border-radius: 1.25rem;
			padding: 3.5rem 1.25rem 1.5rem;
			margin: 1rem 0;
		}

		.consultant-modal__layout {
			grid-template-columns: 1fr;
			gap: 1.25rem;
		}

		.consultant-modal__media {
			width: 7.5rem;
			margin: 0 auto;
		}

		.consultant-modal__content {
			padding-top: 0;

			h3 {
				font-size: 1.75rem;
				margin-bottom: 0.65rem;
			}
		}

		.consultant-modal__title {
			font-size: 0.98rem;
			line-height: 1.7;
		}

		.consultant-modal__divider {
			width: 100%;
			margin: 1rem 0 1.15rem;
		}

		.consultant-modal__intro {
			font-size: 0.95rem;
			line-height: 1.9;
		}

		.consultant-modal__close {
			top: 0.75rem;
			right: 0.75rem;
		}
	}

	.sec-6 {
		padding: 0 0;
	}

	.sec6-layout {
		display: block;
		gap: 1.25rem;
		padding: 2rem 1rem 1.25rem;
		border-radius: 0 !important;
	}

	.sec6-copy {
		padding-left: 0.2rem;
		align-self: start;

		.sec6-logo {
			width: 9rem;
			margin-bottom: 1rem;
		}

		h2 {
			font-size: var(--section-title-size);
		}
	}

	.sec6-controls {
		margin-top: 1.3rem;
	}

	.sec6-swiper .swiper-slide {
		width: 17rem;
	}

	.speaker-card {
		width: 100%;
		min-height: 18.5rem;
		padding: 1.45rem 1rem 1.1rem;
		text-align: center;

		&::before {
			left: 0.9rem;
			bottom: 4.55rem;
		}

		&::after {
			right: 0.85rem;
			bottom: 0.7rem;
		}

		.speaker-card__img {
			width: 6.5rem;
			height: 6.5rem;
			margin: 0 auto 0.9rem;
		}

		h3 {
			font-size: 1.75rem;
			margin-bottom: 0.4rem;
		}

		.speaker-card__role {
			font-size: 0.95rem;
			margin-bottom: 1.4rem;
		}

		.speaker-card__quote {
			font-size: 0.95rem;
			line-height: 1.65;
			padding: 0 0.75rem 0 1.35rem;
		}
	}

	.sec7-header {
		padding-top: 0.3rem;
		margin-bottom: 1rem;

		h2 {
			font-size: var(--section-title-size);
			padding: 0;
			text-align: left;
		}
	}

	.sec7-gem {
		margin: 0 0 0.65rem;
	}

	.sec7-plus-logo {
		width: 4.75rem;
		top: 0;
	}

	.sec7-layout {
		gap: 1rem;
	}

	.tab-btn {
		padding: 0.72rem 0.85rem;
		font-size: 0.78rem;
	}

	.tab-content {
		padding: 1.15rem 1rem 1.3rem;
	}

	.schedule-panel {
		padding: 1.2rem 0.95rem 1.35rem;
	}

	.schedule-panel__title {
		margin-bottom: 1.15rem;

		span {
			font-size: 1rem;
		}
	}

	.schedule-item {
		grid-template-columns: 4.6rem minmax(0, 1fr);
		gap: 0.85rem;
		padding-bottom: 1.2rem;
	}

	.schedule-date {
		min-width: 3.75rem;
		height: 2rem;
		padding: 0 0.55rem;
		font-size: 0.82rem;
	}

	.schedule-item__body {
		padding-top: 0.5rem;

		p {
			font-size: 0.78rem;
			line-height: 1.65;
		}
	}

	.highlights-panel {
		padding: 1.2rem 0.95rem 1.25rem;
	}

	.faq-content {
		padding: 1.2rem 0.95rem 1.35rem;
	}

	.faq-content__title {
		margin-bottom: 1.15rem;

		span {
			font-size: 1rem;
		}
	}

	.faq-list {
		gap: 1.15rem;
	}

	.faq-entry {
		grid-template-columns: 2rem minmax(0, 1fr);
		gap: 0.7rem;
	}

	.faq-entry__badge {
		width: 2rem;
		height: 2rem;
		font-size: 0.9rem;
	}

	.faq-entry__body {
		h4 {
			font-size: 0.9rem;
		}

		p {
			font-size: 0.8rem;
		}
	}

	.highlights-panel__title {
		margin-bottom: 1.15rem;

		span {
			font-size: 1rem;
		}
	}

	.highlight-card {
		padding: 0.9rem 0.95rem 1.15rem;
		border-radius: 1rem;

		h4 {
			font-size: 0.98rem;
		}

		p {
			font-size: 0.8rem;
		}
	}

	.highlight-card__num {
		left: 0.8rem;
		top: 0.6rem;
		font-size: 1.75rem;
	}

	.highlight-card__icon {
		width: 5.8rem;
		height: 5.8rem;
		margin-bottom: 0.8rem;

		img {
			width: 3.4rem;
			height: 3.4rem;
		}
	}

	.guide-block h3 span {
		font-size: 1rem;
	}

	.guide-block>p,
	.guide-phase p,
	.accordion-body p,
	.schedule-item__body p {
		font-size: 0.82rem;
	}

	.score-item {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding-left: 0.85rem;

		strong {
			line-height: 1.4;
			padding-right: 0;

			&::after {
				display: none;
			}
		}
	}

	.score-item__pill {
		justify-self: start;
	}

	.sec8-swiper {
		padding: 0 2.2rem;
	}

	.sec8-nav {
		transform: translateY(-2%);

		.sec8-prev,
		.sec8-next {
			width: 2.35rem;
			height: 2.35rem;
		}
	}

	.tab-content {
		padding: 1.15rem;
	}

	.podcast-item {
		grid-template-columns: 4.25rem minmax(0, 1fr);
		gap: 0.85rem;
		padding: 0.85rem;
		text-align: left;
	}

	.podcast-item__album {
		margin: 0;
	}

	.podcast-item__top {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 0.45rem 0.6rem;
	}

	.podcast-item__info {
		h3 {
			font-size: 0.9rem;
		}

		p {
			font-size: 0.82rem;
		}
	}

	.contact-section {
		padding: 3.75rem 0 2.1rem;
	}

	.contact-section__inner {
		padding: 0;

		h2 {
			margin-bottom: 0.85rem;
			font-size: var(--section-title-size);
		}
	}

	.contact-section__info {
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0.7rem;
		font-size: 0.95rem;

		p {
			width: 100%;
		}
	}

	.site-footer {
		padding: 1.65rem 0 1.4rem;

		&::after {
			bottom: 0.45rem;
		}
	}

	.footer-sponsors {
		flex-direction: column;
		align-items: center;
		gap: 1.35rem;
		padding-bottom: 0;
	}

	.footer-sponsor-group {
		width: min(100%, 17.5rem);
		display: grid;
		grid-template-columns: 3.9rem minmax(0, 1fr);
		align-items: center;
		gap: 0.7rem;
	}

	.footer-sponsor-label {
		font-size: 0.82rem;
		text-align: right;
	}

	.footer-sponsor-logos {
		justify-content: flex-start;
		gap: 0.85rem;
		flex-wrap: nowrap;
	}

	.footer-sponsor-logos--guide {
		img:nth-child(1) {
			height: 1.7rem;
		}

		img:nth-child(2) {
			height: 1.8rem;
		}
	}

	.footer-sponsor-logos--host {
		img {
			height: 1.95rem;
		}
	}

	.footer-sponsor-logos--execute {
		img:nth-child(1) {
			height: 1.8rem;
		}

		img:nth-child(2) {
			height: 1.35rem;
		}
	}
}