/* =============================================
   Works Connect - Top Page CSS
   ============================================= */

/* HERO */
.wc-page .wc-hero {
	padding: 150px 0 72px;
	position: relative;
	overflow: hidden;
}

.wc-page .wc-hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.wc-page .wc-hero-title {
	font-size: clamp(28px, 3.8vw, 46px);
	line-height: 1.44;
	margin-bottom: 20px;
}

.wc-page .wc-hero-title .wc-underline {
	position: relative;
	white-space: nowrap;
}

.wc-page .wc-hero-title .wc-underline::after {
	content: '';
	position: absolute;
	left: -2px;
	right: -2px;
	bottom: 2px;
	height: 10px;
	background: var(--wc-accent-light);
	opacity: 0.55;
	z-index: -1;
	border-radius: 4px;
}

.wc-page .wc-hero-sub {
	font-size: 16px;
	color: var(--wc-ink-muted);
	max-width: 480px;
	margin-bottom: 28px;
}

.wc-page .wc-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.wc-page .wc-hero-ctas .wc-btn {
	flex: 0 1 auto;
}

@media (max-width: 600px) {
	.wc-page .wc-hero-ctas {
		flex-wrap: nowrap;
		gap: 10px;
		margin-bottom: 18px;
	}

	.wc-page .wc-hero-ctas .wc-btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 11px 12px;
		font-size: 13px;
		white-space: nowrap;
		text-align: center;
	}
}

.wc-page .wc-hero-note {
	font-size: 12.5px;
	color: var(--wc-ink-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}

.wc-page .wc-hero-visual {
	position: relative;
}

.wc-page .wc-hero-cm {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wc-page .wc-hero-cm-label {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	color: var(--wc-accent-dark);
}

.wc-page .wc-hero-cm-notice {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--wc-ink-muted);
	text-align: right;
}

.wc-page .wc-hero-cm-meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px 20px;
}

.wc-page .wc-hero-cm-player {
	border-radius: var(--wc-radius-lg);
	overflow: hidden;
	border: 1px solid var(--wc-line);
	box-shadow: var(--wc-shadow-soft);
	background: #101815;
}

.wc-page .wc-hero-cm-video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	background: #101815;
}

.wc-page .wc-hero-cm-credit {
	margin: 0;
	font-size: 13px;
	color: var(--wc-ink-muted);
	text-align: left;
}

.wc-page .wc-hero-cm-credit a {
	color: var(--wc-accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.wc-page .wc-hero-cm-credit a:hover {
	text-decoration: underline;
}

@media (max-width: 960px) {
	.wc-page .wc-hero-inner {
		grid-template-columns: 1fr;
	}

	.wc-page .wc-hero-visual {
		max-width: 100%;
	}

	.wc-page .wc-hero-cm-meta {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.wc-page .wc-hero-cm-notice {
		text-align: left;
	}
}

.wc-page .wc-search-wrap {
	max-width: 680px;
	margin: 52px auto 0;
	text-align: center;
}

.wc-page .wc-search-label {
	font-size: 15px;
	font-weight: 700;
	color: var(--wc-ink);
	margin-bottom: 16px;
}

.wc-page .wc-search-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	overflow: hidden;
	background: var(--wc-white);
	border: 1.5px solid var(--wc-line);
	border-radius: 999px;
	padding: 6px 6px 6px 22px;
	box-shadow: var(--wc-shadow);
}

.wc-page .wc-search-bar input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	border: none;
	outline: none;
	font-size: 15px;
	font-family: inherit;
	background: transparent;
	padding: 13px 0;
	color: var(--wc-ink);
}

.wc-page .wc-search-bar input::placeholder {
	color: var(--wc-ink-muted);
}

.wc-page .wc-search-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--wc-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.wc-page .wc-search-btn:hover {
	background: var(--wc-accent-dark);
}

.wc-page .wc-search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 18px;
}

.wc-page .wc-search-tag {
	font-size: 13px;
	font-weight: 600;
	color: var(--wc-accent);
	background: var(--wc-surface-strong);
	padding: 7px 15px;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease;
}

.wc-page .wc-search-tag:hover {
	background: var(--wc-accent);
	color: #fff;
}

/* WORKS SEARCH PAGE */
html body.wc-page .wc-search-page {
	padding: 48px 0 96px;
}

html body.wc-page .wc-search-page .wc-work-back {
	margin-bottom: 32px;
}

html body.wc-page .wc-search-page-head {
	margin-bottom: 32px;
}

html body.wc-page .wc-search-page-title {
	font-size: clamp(28px, 3vw, 36px);
	margin: 12px 0 16px;
}

html body.wc-page .wc-search-page-lead {
	color: var(--wc-ink-muted);
	font-size: 14.5px;
	line-height: 1.7;
	margin: 0;
}

html body.wc-page .wc-search-page-count {
	display: inline-block;
	margin-left: 10px;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(31, 110, 82, 0.1);
	color: var(--wc-accent-dark);
	font-size: 12px;
	font-weight: 700;
}

html body.wc-page .wc-search-page .wc-search-bar--page {
	width: 100%;
	max-width: 720px;
	margin: 0 0 28px;
}

@media (max-width: 600px) {
	.wc-page .wc-search-bar {
		gap: 8px;
		padding: 5px 5px 5px 16px;
	}

	.wc-page .wc-search-bar input {
		font-size: 14px;
		padding: 12px 0;
	}

	.wc-page .wc-search-btn {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}
}

html body.wc-page .wc-search-page .wc-search-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 12px;
	margin: 0 0 48px;
}

html body.wc-page .wc-search-page .wc-search-tag {
	padding: 9px 16px;
}

html body.wc-page .wc-search-page .wc-works-empty {
	margin: 0;
	padding: 32px 28px;
	border: 1px dashed var(--wc-line);
	border-radius: var(--wc-radius-lg);
	background: var(--wc-surface);
	color: var(--wc-ink-muted);
	line-height: 1.7;
}

html body.wc-page .wc-search-page .wc-works-masonry {
	margin-top: 0;
	gap: 28px;
}

html body.wc-page .wc-search-page .wc-work-body {
	padding: 20px 20px 22px;
}

html body.wc-page .wc-search-page .wc-work-title {
	margin-bottom: 12px;
}

html body.wc-page .wc-search-page .wc-work-creator {
	margin-bottom: 14px;
}

html body.wc-page .wc-search-page .wc-work-tags--card {
	margin: 0 0 16px;
	gap: 8px;
}

html body.wc-page .wc-search-page .wc-work-stats {
	padding-top: 14px;
}

html body.wc-page .wc-search-fallback {
	margin-top: 52px;
}

html body.wc-page .wc-search-fallback-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 24px;
}

html body.wc-page .wc-search-pagination {
	margin-top: 48px;
}

html body.wc-page .wc-search-pagination-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

html body.wc-page .wc-search-pagination-list a {
	color: var(--wc-accent);
	font-weight: 650;
	text-decoration: none;
}

html body.wc-page .wc-search-pagination-list a:hover {
	text-decoration: underline;
}

html body.wc-page .wc-search-pagination-list .is-current span {
	color: var(--wc-ink-muted);
	font-size: 13.5px;
}

/* SECTIONS */
.wc-page .wc-section {
	padding: 84px 0;
}

.wc-page .wc-section-head {
	max-width: 640px;
	margin-bottom: 40px;
}

.wc-page .wc-section-head.wc-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.wc-page .wc-section-head.wc-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
	flex-wrap: wrap;
}

.wc-page .wc-section-title {
	font-size: clamp(22px, 2.8vw, 32px);
	line-height: 1.5;
	margin-bottom: 12px;
}

.wc-page .wc-section-desc {
	color: var(--wc-ink-muted);
	font-size: 15px;
}

.wc-page .wc-section-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.wc-page .wc-section-stat {
	min-width: 120px;
	padding: 14px 16px;
	border-radius: 16px;
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	box-shadow: var(--wc-shadow-soft);
	text-align: center;
}

.wc-page .wc-section-stat-value {
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--wc-ink);
	margin-bottom: 6px;
}

.wc-page .wc-section-stat-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--wc-ink-muted);
}

.wc-page .wc-works-empty {
	padding: 48px 20px;
	border-radius: 20px;
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--wc-ink-muted);
}

.wc-page .wc-section-alt {
	background: var(--wc-surface);
}

/* WORKS GALLERY */
.wc-page .wc-works-masonry {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	align-items: stretch;
}

.wc-page .wc-work-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--wc-radius-lg);
	overflow: hidden;
	box-shadow: var(--wc-shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
	color: inherit;
}

.wc-page .wc-work-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--wc-shadow);
}

.wc-page .wc-work-media {
	position: relative;
	width: 100%;
	flex: 0 0 auto;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(31, 110, 82, 0.06), rgba(31, 110, 82, 0.02)),
		var(--wc-surface);
}

.wc-page .wc-work-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.wc-page .wc-work-card:hover .wc-work-media img {
	transform: scale(1.04);
}

.wc-page .wc-work-cat-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, 0.94);
	font-size: 11.5px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	color: var(--wc-accent);
	backdrop-filter: blur(3px);
}

.wc-page .wc-work-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 30, 25, 0) 45%, rgba(15, 25, 20, 0.62) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.wc-page .wc-work-card:hover .wc-work-overlay {
	opacity: 1;
}

.wc-page .wc-work-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: 16px 18px 18px;
}

.wc-page .wc-work-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.5;
	min-height: calc(1.5em * 2);
}

.wc-page .wc-work-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.wc-page .wc-work-tags--card {
	margin: 0 0 10px;
	gap: 6px;
}

.wc-page .wc-work-tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(31, 110, 82, 0.08);
	border: 1px solid rgba(31, 110, 82, 0.14);
	color: var(--wc-accent-dark);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.4;
	text-decoration: none;
}

.wc-page a.wc-work-tag:hover {
	background: rgba(31, 110, 82, 0.14);
	color: var(--wc-accent);
}

.wc-page .wc-work-creator {
	font-size: 13px;
	color: var(--wc-ink-muted);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	min-height: calc(1.45em * 2);
}

.wc-page .wc-work-creator-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	line-height: 1.45;
	flex: 1 1 auto;
	min-width: 0;
}

.wc-page .wc-work-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--wc-surface-strong);
	color: var(--wc-accent);
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.wc-page .wc-work-avatar.has-image {
	background: var(--wc-surface);
}

.wc-page .wc-work-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wc-page .wc-work-stats {
	display: flex;
	flex: 0 0 auto;
	gap: 16px;
	margin-top: auto;
	font-size: 12.5px;
	color: var(--wc-ink-muted);
	border-top: 1px solid var(--wc-line);
	padding-top: 12px;
}

.wc-page .wc-work-stats span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.wc-page .wc-works-more {
	text-align: center;
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.wc-page .wc-works-masonry {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wc-page .wc-section-stats {
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
	.wc-page .wc-works-masonry {
		grid-template-columns: 1fr;
	}
}

/* POPULAR */
.wc-page .wc-pop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: stretch;
}

.wc-page .wc-pop-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--wc-radius-lg);
	overflow: hidden;
	box-shadow: var(--wc-shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
	color: inherit;
}

.wc-page .wc-pop-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--wc-shadow);
}

.wc-page .wc-pop-media {
	position: relative;
	width: 100%;
	flex: 0 0 auto;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.wc-page .wc-pop-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.wc-page .wc-pop-media-empty {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(180deg, rgba(31, 110, 82, 0.06), rgba(31, 110, 82, 0.02)),
		var(--wc-surface);
}

.wc-page .wc-pop-card:hover .wc-pop-media img {
	transform: scale(1.06);
}

.wc-page .wc-pop-rank {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--wc-accent-dark);
	color: #fff;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	font-size: 13px;
	padding: 4px 11px;
	border-radius: 8px 8px 8px 2px;
}

.wc-page .wc-pop-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: 14px 16px 16px;
}

.wc-page .wc-pop-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.5;
	min-height: calc(1.5em * 2);
}

.wc-page .wc-pop-creator {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--wc-ink-muted);
	margin-bottom: 12px;
}

.wc-page .wc-pop-stats {
	display: flex;
	flex: 0 0 auto;
	gap: 14px;
	margin-top: auto;
	font-size: 12px;
	color: var(--wc-ink-muted);
	border-top: 1px solid var(--wc-line);
	padding-top: 12px;
}

@media (max-width: 960px) {
	.wc-page .wc-pop-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.wc-page .wc-pop-grid {
		grid-template-columns: 1fr;
	}
}

/* CATEGORIES */
.wc-page .wc-catimg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.wc-page .wc-catimg-card {
	position: relative;
	display: block;
	border-radius: var(--wc-radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--wc-line);
	box-shadow: var(--wc-shadow-soft);
	transition: box-shadow 0.2s ease;
}

.wc-page .wc-catimg-card:hover {
	box-shadow: var(--wc-shadow);
}

.wc-page .wc-catimg-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.wc-page .wc-catimg-card:hover img {
	transform: scale(1.08);
}

.wc-page .wc-catimg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 30, 25, 0) 30%, rgba(13, 22, 18, 0.78) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
	color: #fff;
}

.wc-page .wc-catimg-name {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 2px;
}

.wc-page .wc-catimg-count {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 860px) {
	.wc-page .wc-catimg-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.wc-page .wc-future-row {
	margin-top: 30px;
}

.wc-page .wc-future-label {
	font-size: 12.5px;
	color: var(--wc-ink-muted);
	margin-bottom: 12px;
}

.wc-page .wc-future-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wc-page .wc-future-chip {
	font-size: 13px;
	font-weight: 600;
	color: var(--wc-ink-muted);
	border: 1.5px dashed var(--wc-line);
	border-radius: 999px;
	padding: 8px 16px;
}

/* ABOUT */
.wc-page .wc-about-lede {
	font-size: 15.5px;
	color: var(--wc-ink-muted);
	max-width: 720px;
	margin-bottom: 32px;
}

.wc-page .wc-flow-block {
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--wc-radius-lg);
	padding: 30px;
	margin-bottom: 16px;
}

.wc-page .wc-flow-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--wc-ink-muted);
	margin-bottom: 18px;
}

.wc-page .wc-flow-steps {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.wc-page .wc-flow-step {
	flex: 1;
	min-width: 150px;
	background: var(--wc-surface);
	border-radius: var(--wc-radius-md);
	padding: 16px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	color: var(--wc-ink-muted);
}

.wc-page .wc-flow-arrow {
	font-size: 18px;
	color: var(--wc-line);
}

.wc-page .wc-flow-new {
	border-color: var(--wc-accent);
	box-shadow: 0 14px 30px rgba(31, 110, 82, 0.1);
}

.wc-page .wc-flow-new .wc-flow-step {
	background: var(--wc-surface-strong);
	color: var(--wc-accent-dark);
}

.wc-page .wc-flow-new .wc-flow-arrow {
	color: var(--wc-accent-light);
}

.wc-page .wc-flow-new .wc-flow-label {
	color: var(--wc-accent);
}

@media (max-width: 640px) {
	.wc-page .wc-flow-steps {
		flex-direction: column;
		align-items: stretch;
	}

	.wc-page .wc-flow-arrow {
		transform: rotate(90deg);
		align-self: center;
	}
}

/* SPLIT SECTIONS */
.wc-page .wc-split {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.wc-page .wc-split.wc-reverse .wc-split-visual {
	order: 2;
}

.wc-page .wc-split.wc-reverse .wc-split-copy {
	order: 1;
}

.wc-page .wc-benefit-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 24px 0 28px;
}

.wc-page .wc-benefit-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 15px;
}

.wc-page .wc-benefit-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--wc-surface-strong);
	color: var(--wc-accent);
	font-size: 12px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.wc-page .wc-split-visual {
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--wc-radius-lg);
	padding: 20px;
	box-shadow: var(--wc-shadow);
}

.wc-page .wc-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.wc-page .wc-mini-card {
	border-radius: var(--wc-radius-sm);
	overflow: hidden;
	position: relative;
	height: 130px;
}

.wc-page .wc-mini-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wc-page .wc-mini-tag {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: rgba(255, 255, 255, 0.92);
	font-size: 10.5px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
	color: var(--wc-accent);
}

.wc-page .wc-mock-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--wc-line);
}

.wc-page .wc-mock-row:last-child {
	border-bottom: none;
}

.wc-page .wc-mock-thumb {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.wc-page .wc-mock-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wc-page .wc-mock-title {
	font-size: 13.5px;
	font-weight: 700;
}

.wc-page .wc-mock-sub {
	font-size: 12px;
	color: var(--wc-ink-muted);
}

@media (max-width: 860px) {
	.wc-page .wc-split {
		grid-template-columns: 1fr;
	}

	.wc-page .wc-split.wc-reverse .wc-split-visual,
	.wc-page .wc-split.wc-reverse .wc-split-copy {
		order: initial;
	}
}

/* UPCOMING */
.wc-page .wc-upcoming-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.wc-page .wc-upcoming-card {
	background: var(--wc-white);
	border: 1.5px dashed var(--wc-line);
	border-radius: var(--wc-radius-lg);
	padding: 26px;
	position: relative;
}

.wc-page .wc-upcoming-badge {
	position: absolute;
	top: -11px;
	right: 20px;
	background: var(--wc-accent-light);
	color: var(--wc-accent-dark);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
}

.wc-page .wc-upcoming-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--wc-surface-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 16px;
}

.wc-page .wc-upcoming-card h3 {
	font-size: 15.5px;
	font-weight: 700;
	margin-bottom: 8px;
}

.wc-page .wc-upcoming-card p {
	font-size: 13.5px;
	color: var(--wc-ink-muted);
}

@media (max-width: 860px) {
	.wc-page .wc-upcoming-grid {
		grid-template-columns: 1fr;
	}
}

/* ROADMAP */
.wc-page .wc-roadmap-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	position: relative;
}

.wc-page .wc-roadmap-step {
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--wc-radius-lg);
	padding: 28px;
	position: relative;
}

.wc-page .wc-roadmap-step.is-current {
	border-color: var(--wc-accent);
}

.wc-page .wc-roadmap-num {
	font-family: 'Shippori Mincho', serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--wc-accent);
	margin-bottom: 14px;
	letter-spacing: 0.08em;
}

.wc-page .wc-roadmap-step h3 {
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: 700;
}

.wc-page .wc-roadmap-step p {
	font-size: 13.5px;
	color: var(--wc-ink-muted);
}

.wc-page .wc-roadmap-badge {
	position: absolute;
	top: -11px;
	right: 20px;
	background: var(--wc-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
}

@media (max-width: 860px) {
	.wc-page .wc-roadmap-track {
		grid-template-columns: 1fr;
	}
}

/* FINAL CTA */
.wc-page .wc-final-cta {
	background: linear-gradient(135deg, var(--wc-accent-dark), var(--wc-accent));
	border-radius: 28px;
	padding: 60px 40px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.wc-page .wc-final-cta::before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	top: -180px;
	right: -140px;
}

.wc-page .wc-final-cta h2 {
	color: #fff;
	font-size: clamp(22px, 3.2vw, 32px);
	margin-bottom: 14px;
	position: relative;
}

.wc-page .wc-final-cta p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 28px;
	position: relative;
}

.wc-page .wc-final-cta-ctas {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	position: relative;
}

.wc-page .wc-final-cta .wc-btn-primary {
	background: #fff;
	color: var(--wc-accent-dark);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.wc-page .wc-final-cta .wc-btn-primary:hover {
	background: #f1f6f3;
}

/* NEWS（トップ新着情報） */
.wc-page #news .wc-news-list {
	gap: 16px;
}

.wc-page #news .wc-news-card {
	background: var(--wc-white);
	border: 1px solid var(--wc-line);
	border-radius: var(--wc-radius-lg);
	box-shadow: var(--wc-shadow-soft);
}

.wc-page .wc-news-more {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}
