.jwc-toolbox {
	--jwc-toolbox-ink: #12332f;
	--jwc-toolbox-muted: #58716d;
	--jwc-toolbox-teal: #087d70;
	--jwc-toolbox-teal-dark: #075d55;
	--jwc-toolbox-line: #dce9e6;
	--jwc-toolbox-surface: #f6faf9;
	max-width: 1120px;
	margin: 0 auto;
	padding: 28px 0 64px;
	color: var(--jwc-toolbox-ink);
}

.jwc-toolbox *,
.jwc-toolbox *::before,
.jwc-toolbox *::after {
	box-sizing: border-box;
}

.jwc-toolbox__hero {
	padding: clamp(34px, 6vw, 72px);
	border-radius: 28px;
	background: radial-gradient(circle at 92% 6%, rgba(182, 226, 210, .9) 0, rgba(182, 226, 210, 0) 33%), linear-gradient(135deg, #edf8f5 0%, #f9fcfb 68%);
	border: 1px solid #deeee9;
}

.jwc-toolbox__eyebrow,
.jwc-toolbox__section-heading > p,
.jwc-toolbox__consultation p {
	margin: 0 0 10px;
	color: var(--jwc-toolbox-teal);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.4;
}

.jwc-toolbox__hero h1,
.jwc-toolbox__section-heading h2,
.jwc-toolbox__consultation h2 {
	margin: 0;
	color: var(--jwc-toolbox-ink);
	letter-spacing: -.04em;
}

.jwc-toolbox__hero h1 {
	max-width: 660px;
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.15;
}

.jwc-toolbox__hero > p:last-child {
	max-width: 570px;
	margin: 20px 0 0;
	color: var(--jwc-toolbox-muted);
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 1.7;
}

.jwc-toolbox__section {
	margin-top: clamp(42px, 6vw, 72px);
}

.jwc-toolbox__section-heading {
	margin-bottom: 20px;
}

.jwc-toolbox__section-heading h2 {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.2;
}

.jwc-toolbox__featured-grid,
.jwc-toolbox__daily-grid {
	display: grid;
	gap: 18px;
}

.jwc-toolbox__featured-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jwc-toolbox__daily-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jwc-toolbox__card {
	display: flex;
	min-width: 0;
	min-height: 264px;
	padding: 26px;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid var(--jwc-toolbox-line);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(20, 61, 55, .05);
	color: var(--jwc-toolbox-ink) !important;
	text-decoration: none !important;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.jwc-toolbox__card:hover {
	transform: translateY(-4px);
	border-color: #9fcfc5;
	box-shadow: 0 18px 34px rgba(20, 61, 55, .11);
}

.jwc-toolbox__card:focus-visible,
.jwc-toolbox__consultation a:focus-visible {
	outline: 3px solid #f2a93b;
	outline-offset: 3px;
}

.jwc-toolbox__card--featured {
	min-height: 286px;
	border: 0;
	background: var(--jwc-toolbox-teal);
	box-shadow: none;
	color: #fff !important;
}

.jwc-toolbox__card--hotel-adaptability {
	background: #1b3f62;
}

.jwc-toolbox__card--featured:hover {
	border: 0;
	box-shadow: 0 18px 34px rgba(5, 93, 85, .2);
}

.jwc-toolbox__card-icon {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #e8f4f1;
	color: var(--jwc-toolbox-teal);
}

.jwc-toolbox__card--featured .jwc-toolbox__card-icon {
	background: rgba(255, 255, 255, .16);
	color: #fff;
}

.jwc-toolbox__card-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.6;
}

.jwc-toolbox__card-copy {
	display: block;
	margin-top: 28px;
}

.jwc-toolbox__card-badge,
.jwc-toolbox__card-title,
.jwc-toolbox__card-description,
.jwc-toolbox__card-footer,
.jwc-toolbox__card-footer > span {
	display: block;
}

.jwc-toolbox__card-badge {
	margin-bottom: 10px;
	color: var(--jwc-toolbox-teal);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
}

.jwc-toolbox__card--featured .jwc-toolbox__card-badge {
	color: rgba(255, 255, 255, .72);
}

.jwc-toolbox__card-title {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.25;
}

.jwc-toolbox__card-description {
	margin-top: 10px;
	color: var(--jwc-toolbox-muted);
	font-size: 15px;
	line-height: 1.65;
}

.jwc-toolbox__card--featured .jwc-toolbox__card-description {
	color: rgba(255, 255, 255, .82);
}

.jwc-toolbox__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 26px;
	color: #6f8783;
	font-size: 13px;
	font-weight: 700;
}

.jwc-toolbox__card--featured .jwc-toolbox__card-footer {
	color: rgba(255, 255, 255, .74);
}

.jwc-toolbox__card-cta {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
	color: var(--jwc-toolbox-teal-dark);
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.jwc-toolbox__card--featured .jwc-toolbox__card-cta {
	color: #fff;
}

.jwc-toolbox__card-cta span {
	font-size: 18px;
	line-height: 1;
}

.jwc-toolbox__notice {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 28px;
	padding: 18px 20px;
	border-radius: 16px;
	background: var(--jwc-toolbox-surface);
	color: #536b67;
	font-size: 14px;
	line-height: 1.65;
}

.jwc-toolbox__notice strong {
	flex: 0 0 auto;
	color: var(--jwc-toolbox-teal-dark);
}

.jwc-toolbox__notice p {
	margin: 0;
}

.jwc-toolbox__consultation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: clamp(42px, 6vw, 72px);
	padding: clamp(26px, 4vw, 42px);
	border-radius: 22px;
	background: #f1f5f4;
}

.jwc-toolbox__consultation h2 {
	max-width: 600px;
	font-size: clamp(22px, 2.7vw, 31px);
	line-height: 1.32;
}

.jwc-toolbox__consultation a {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--jwc-toolbox-ink);
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.jwc-toolbox__daily-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.jwc-toolbox {
		padding: 12px 0 44px;
	}

	.jwc-toolbox__hero {
		padding: 32px 24px;
		border-radius: 22px;
	}

	.jwc-toolbox__featured-grid,
	.jwc-toolbox__daily-grid {
		grid-template-columns: 1fr;
	}

	.jwc-toolbox__card,
	.jwc-toolbox__card--featured {
		min-height: 238px;
		padding: 24px;
	}

	.jwc-toolbox__consultation {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.jwc-toolbox__consultation a {
		width: 100%;
	}

	.jwc-toolbox__notice {
		flex-direction: column;
		gap: 4px;
	}
}
