@charset "utf-8";

	#column, #faq {
		height: 40vw;
		position: relative;
		isolation: isolate;
	}
	@media (max-width: 1300px) {
		#column, #faq {
			height: 50vw;
		}
	}
	@media (max-width: 1200px) {
		#column, #faq {
			height: 60vw;
		}
	}
	@media (max-width: 992px) {
		#column, #faq {
			height: 70vw;
		}
	}
	@media (max-width: 768px) {
		#column, #faq {
			height: auto;
		}
	}
	#column .container-xxxl, #faq .container-xxxl {
		height: 100%;
		position: relative;
		z-index: 1;
	}
	#column .container-xxxl .row, #faq .container-xxxl .row {
		height: 100%;
	}
	.board-theme {
		position: relative;
		display: flex;
		overflow: hidden;
	}
	.board-theme-bg {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: auto;
		height: 100%;
		object-fit: cover;
		transition: all 0.3s ease;
		z-index: 0;
	}
	.board-theme:hover .board-theme-bg {
		transform: translate(-50%, -50%) scale(1.05);
		opacity: 0.8;
	}
	#column::after, #faq::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, 1));
		background-repeat: no-repeat, repeat;
		background-size: cover, 30px;
		z-index: 0;
		pointer-events: none;
	}
	.theme-wrapper {
		padding: 2rem;
		z-index: 2;
		position: relative;
		width: 100%;
		margin: auto 0;
	}
	.theme-wrapper .board-theme-title {
		color: var(--color-primary);
		font-size: var(--fz-xxl);
		font-weight: 700;
		display: inline-block;
		color: #14213d;
		background: linear-gradient(90deg, #2f3742 0%, #7d8794 100%);
		background-size: 100% 100%;
		background-position: 0% 50%;

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

	}
	.theme-wrapper .board-theme-desc {
		color: #333;
		font-size: var(--fz-md);
		line-height: 1.5;
	}
	.theme-wrapper .link-text {
		opacity: 0;
		transition: all 0.3s ease;
		font-size: var(--fz-md);
		color: #333;
	}
	.board-theme:hover .theme-wrapper .link-text {
		opacity: 1;
	}
	@media (max-width: 768px) {
		.board-theme .theme-wrapper .link-text {
			opacity: 1;
			transform: translateY(15px);
			margin-top: 1.5rem;
		}
	}
	.board-list-wrapper {
		padding: 2rem;
		position: relative;
		height: 100%;
		display: flex;
		align-items: center;
		z-index: 2;
	}
	a.insight-card {
		margin-bottom: 1rem;
	}
	.board-list-wrapper .board-list {
		max-width: 800px;
		position: static;
		width: 100%;
	}
	.board-list-wrapper .insight-card {
		display: block;
		padding: 1.4rem 1.6rem;
		border-radius: 12px;
		background: rgba(255,255,255,0.8);
		backdrop-filter: blur(8px);
		border: 1px solid rgba(255,255,255,0.15);
		transition: all .35s ease;
	}
	.board-list-wrapper .insight-card .insight-card-title {
		display: block;
		font-size: var(--fz-md);
		font-weight: 600;
		color: #333;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}
	@media (max-width: 768px) {
	.board-list-wrapper .insight-card .insight-card-title {
		-webkit-line-clamp: 2;
	}
	}
	.board-list-wrapper .insight-card .insight-card-excerpt {
		font-size: var(--fz-tn);
		color: #333;
		margin-top: 0.5rem;
	}
	.board-list-wrapper .insight-card:hover {
		transform: translateY(-4px);
		background: rgba(255,255,255,0.92);
	}
	.board-list-wrapper .insight-card-meta {
		display: flex;
		flex-wrap: wrap;
		gap: 0.35rem 0.65rem;
		align-items: center;
		margin-bottom: 0.55rem;
		color: #4b5563;
		font-size: var(--fz-tn);
		font-weight: 700;
		line-height: 1.35;
	}
	.board-list-wrapper .insight-card-meta span + span::before {
		content: "";
		display: inline-block;
		width: 1px;
		height: 0.75em;
		margin-right: 0.65rem;
		background: rgba(75, 85, 99, 0.35);
		vertical-align: -0.08em;
	}