/* Thyker Nutrition Suite — frontend styles v2 (bulletproof isolation)
   Reason for v2: the site uses white text globally + no Elementor global-color
   vars are defined, so we can't rely on inheritance. Every value is explicit,
   and .thynu resets inherited color/font so the widget always looks correct.

   The `.thynu` root scopes everything and uses !important on the color/font
   resets that MUST beat the site's global rules. Rest of the CSS is normal
   specificity for easy override in Elementor Custom CSS. */

.thynu {
	/* Palette — matches site's actual Elementor brand tokens (#4a8f3d, Inter Tight, 8px radius) */
	--thynu-primary: #4a8f3d;   /* site brand green */
	--thynu-accent:  #6bb254;   /* lighter for hovers/gradients */
	--thynu-primary-dark: #3a7030;
	--thynu-text:    #1a1a1a;
	--thynu-muted:   #6b7280;
	--thynu-bg:      #ffffff;
	--thynu-surface: #f6faf3;
	--thynu-border:  #e2e8dd;
	--thynu-radius:  8px;
	--thynu-shadow:  0 6px 24px rgba(74, 143, 61, .08);
	--thynu-green:   #22c55e;
	--thynu-red:     #ef4444;
	--thynu-amber:   #f59e0b;
	--thynu-font:    "DM Sans", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--thynu-font-btn:"Inter Tight", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

	/* Hard reset — beat inherited white text / fancy fonts */
	color: var(--thynu-text) !important;
	font-family: var(--thynu-font) !important;
	line-height: 1.55;
	max-width: 100%;
	box-sizing: border-box;
	text-align: left;
}
.thynu *, .thynu *::before, .thynu *::after {
	box-sizing: border-box;
	color: inherit;
	font-family: inherit;
}
.thynu a { color: var(--thynu-primary); text-decoration: underline; }
.thynu a:hover { color: var(--thynu-accent); }
.thynu p { color: var(--thynu-text); }
.thynu h1, .thynu h2, .thynu h3, .thynu h4, .thynu h5, .thynu h6 { color: var(--thynu-primary); font-family: inherit; margin: 0; }
.thynu ul, .thynu ol { color: var(--thynu-text); }

.thynu-header { text-align: center; margin: 0 0 32px; padding: 0 12px; }
.thynu-title  { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin: 0 0 8px; color: var(--thynu-primary); }
.thynu-subtitle { font-size: clamp(15px, 1.5vw, 17px); color: var(--thynu-muted); margin: 0; }

.thynu-subhead { font-size: 18px; font-weight: 600; margin: 24px 0 12px; color: var(--thynu-primary); }

/* ------------ Form container ------------ */
.thynu-form {
	background: var(--thynu-bg);
	border: 1px solid var(--thynu-border);
	border-radius: var(--thynu-radius);
	padding: 32px;
	box-shadow: var(--thynu-shadow);
	color: var(--thynu-text);
}
@media (max-width: 600px) { .thynu-form { padding: 20px; } }

.thynu-grid {
	display: grid;
	gap: 18px 20px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin-bottom: 20px;
}
.thynu-field { display: flex; flex-direction: column; gap: 6px; }
.thynu-field > span, .thynu-field > legend {
	font-weight: 600;
	font-size: 14px;
	color: var(--thynu-text);
	display: block;
	margin-bottom: 2px;
	padding: 0;
}

/* Inputs — hard-set colors/bg because site may have global input rules */
.thynu-field input[type="text"],
.thynu-field input[type="email"],
.thynu-field input[type="number"],
.thynu-field input[type="tel"],
.thynu-field select,
.thynu-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--thynu-border);
	border-radius: 8px;
	font-size: 15px;
	background: #ffffff !important;
	color: #1a1a1a !important;
	transition: border-color .15s, box-shadow .15s;
	font-family: inherit;
	line-height: 1.4;
	box-shadow: none;
	appearance: auto;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	max-width: 100%;
	min-height: 44px;
	margin: 0;
}
.thynu-field input:focus,
.thynu-field select:focus,
.thynu-field textarea:focus {
	outline: none;
	border-color: var(--thynu-accent);
	box-shadow: 0 0 0 3px rgba(76, 175, 80, .18);
}
.thynu-field input::placeholder,
.thynu-field textarea::placeholder {
	color: #9ca3af;
	opacity: 1;
}
.thynu-field textarea { min-height: 96px; resize: vertical; }

.thynu-unit-row { display: flex; gap: 8px; align-items: stretch; }
.thynu-unit-row input { flex: 1; }
.thynu-unit-row select { flex: 0 0 96px; }

.thynu-checks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
	margin-top: 8px;
}
.thynu-checks label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--thynu-border);
	border-radius: 8px;
	cursor: pointer;
	transition: background .15s, border-color .15s;
	font-size: 14px;
	color: var(--thynu-text);
	background: var(--thynu-bg);
	margin: 0;
	line-height: 1.3;
}
.thynu-checks label:hover { border-color: var(--thynu-accent); background: var(--thynu-surface); }
.thynu-checks input[type="checkbox"] {
	accent-color: var(--thynu-primary);
	width: 18px;
	height: 18px;
	margin: 0;
	flex-shrink: 0;
}

fieldset.thynu-field { border: 0; padding: 0; margin: 0; }

.thynu-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 12px; }
.thynu-form-note { color: var(--thynu-muted); font-size: 13px; margin: 14px 0 0; }

/* Buttons — high specificity to beat any theme .btn rules */
.thynu .thynu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	font-family: var(--thynu-font-btn);
	text-decoration: none !important;
	transition: transform .1s, box-shadow .15s, background .15s;
	line-height: 1.2;
	min-height: 44px;
	letter-spacing: 0;
}
.thynu .thynu-btn:active { transform: translateY(1px); }
.thynu .thynu-btn-primary {
	background: var(--thynu-primary);
	color: #ffffff !important;
	box-shadow: 0 4px 14px rgba(46,125,50,.28);
}
.thynu .thynu-btn-primary:hover {
	background: var(--thynu-primary-dark);
	color: #ffffff !important;
	box-shadow: 0 6px 20px rgba(46,125,50,.38);
}
.thynu .thynu-btn-secondary {
	background: var(--thynu-surface);
	color: var(--thynu-primary) !important;
	border: 1px solid var(--thynu-border);
}
.thynu .thynu-btn-secondary:hover { background: #ffffff; border-color: var(--thynu-accent); }
.thynu .thynu-btn-ghost { background: transparent; color: var(--thynu-muted) !important; }
.thynu .thynu-btn-ghost:hover { color: var(--thynu-primary) !important; }

/* ------------ Loading / Success / Error ------------ */
.thynu-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 40px 20px;
	color: var(--thynu-muted);
	background: var(--thynu-bg);
	border: 1px solid var(--thynu-border);
	border-radius: var(--thynu-radius);
	margin-top: 12px;
}
.thynu-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid var(--thynu-border);
	border-top-color: var(--thynu-primary);
	border-radius: 50%;
	animation: thynu-spin .8s linear infinite;
	flex-shrink: 0;
}
@keyframes thynu-spin { to { transform: rotate(360deg); } }

.thynu-success {
	text-align: center;
	padding: 48px 24px;
	background: var(--thynu-bg);
	border-radius: var(--thynu-radius);
	border: 1px solid var(--thynu-border);
	box-shadow: var(--thynu-shadow);
	color: var(--thynu-text);
}
.thynu-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	background: var(--thynu-green);
	color: #ffffff !important;
	border-radius: 50%;
	font-size: 36px;
	margin-bottom: 20px;
}
.thynu-success h3 { margin: 0 0 8px; color: var(--thynu-primary); font-size: 24px; }
.thynu-success p { color: var(--thynu-muted); margin: 0; font-size: 15px; }

.thynu-error {
	background: #fef2f2;
	color: #b91c1c !important;
	border: 1px solid #fecaca;
	padding: 14px 18px;
	border-radius: 8px;
	margin: 14px 0;
	font-size: 14px;
}

/* ------------ BMI Result Card ------------ */
.thynu-result { margin-top: 20px; }
.thynu-result-card {
	background: var(--thynu-bg);
	border-radius: var(--thynu-radius);
	border: 1px solid var(--thynu-border);
	padding: 32px;
	box-shadow: var(--thynu-shadow);
	color: var(--thynu-text);
}
@media (max-width: 600px) { .thynu-result-card { padding: 20px; } }
.thynu-result-hero {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--thynu-border);
	margin-bottom: 24px;
}
.thynu-bmi-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--thynu-accent), var(--thynu-primary));
	color: #ffffff !important;
	flex-shrink: 0;
}
.thynu-bmi-value { font-size: 40px; font-weight: 800; line-height: 1; color: #ffffff !important; }
.thynu-bmi-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; color: #ffffff !important; }
.thynu-bmi-underweight { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.thynu-bmi-normal      { background: linear-gradient(135deg, #34d399, #22c55e); }
.thynu-bmi-overweight  { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.thynu-bmi-obese       { background: linear-gradient(135deg, #f87171, #ef4444); }
.thynu-hero-text { flex: 1; min-width: 240px; }
.thynu-hero-text h3 { margin: 0 0 8px; font-size: 22px; color: var(--thynu-primary); font-weight: 700; }
.thynu-hero-text p  { margin: 0; color: var(--thynu-muted); font-size: 15px; }
.thynu-hero-text strong { color: var(--thynu-text); font-weight: 700; }

.thynu-macro-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px;
	margin: 24px 0;
}
.thynu-macro {
	background: var(--thynu-surface);
	padding: 20px 16px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--thynu-border);
}
.thynu-macro-value {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: var(--thynu-primary);
	line-height: 1.1;
}
.thynu-macro-label {
	display: block;
	font-size: 12px;
	color: var(--thynu-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 6px;
}

.thynu-plan-list {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--thynu-surface);
	border-radius: 12px;
	overflow: hidden;
}
.thynu-plan-list li {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 16px;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(0,0,0,.06);
}
@media (max-width: 600px) {
	.thynu-plan-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 16px; }
	.thynu-plan-list .thynu-meal-kcal { justify-self: start; }
}
.thynu-plan-list li:last-child { border-bottom: 0; }
.thynu-meal-type {
	font-weight: 700;
	color: var(--thynu-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
}
.thynu-meal-name { color: var(--thynu-text); font-size: 15px; line-height: 1.4; }
.thynu-meal-kcal {
	color: var(--thynu-primary);
	font-size: 13px;
	font-weight: 700;
	background: #ffffff;
	padding: 4px 10px;
	border-radius: 8px;
	border: 1px solid var(--thynu-border);
}

.thynu-result-cta {
	background: linear-gradient(135deg, #dcfce7, #bbf7d0);
	padding: 24px;
	border-radius: 12px;
	margin-top: 28px;
	text-align: center;
	color: #14532d;
}
.thynu-result-cta p { margin: 0 0 14px; color: #14532d !important; font-size: 15px; }
.thynu-result-cta strong { color: #14532d; }
.thynu-disclaimer {
	text-align: center;
	color: var(--thynu-muted);
	font-size: 12px;
	margin: 24px 0 0;
	font-style: italic;
}

/* ------------ Preferences Cards (Veg / Non-Veg) ------------ */
.thynu-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 24px;
}
@media (max-width: 600px) { .thynu-cards { grid-template-columns: 1fr; } }
.thynu-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 44px 24px;
	border: 3px solid transparent;
	border-radius: 20px;
	cursor: pointer;
	transition: transform .15s, box-shadow .2s, border-color .15s;
	background: var(--thynu-bg);
	font-family: inherit;
	text-align: center;
	width: 100%;
}
.thynu-card:hover  { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.thynu-card.selected { border-color: rgba(0,0,0,.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.thynu-card-veg    {
	background: linear-gradient(135deg, #d1fae5, #6ee7b7);
	color: #064e3b !important;
}
.thynu-card-nonveg {
	background: linear-gradient(135deg, #fed7aa, #fca5a5);
	color: #7c2d12 !important;
}
.thynu-card-icon   { font-size: 56px; line-height: 1; display: inline-block; }
.thynu-card-icon img.emoji { width: 1em !important; height: 1em !important; display: block; margin: 0 auto; padding: 0; border: 0; box-shadow: none; }
.thynu-card-title  { font-size: 22px; font-weight: 800; color: inherit !important; }
.thynu-card-sub    { font-size: 14px; opacity: .85; color: inherit !important; }

/* Normalize any emoji image WordPress injects inside our widget */
.thynu img.emoji { width: 1em; height: 1em; display: inline-block; vertical-align: -0.1em; margin: 0; padding: 0; box-shadow: none; border: 0; }

/* ------------ Progress Tracker ------------ */
.thynu-client-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}
.thynu-stat {
	background: var(--thynu-surface);
	padding: 20px 16px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--thynu-border);
}
.thynu-stat-label {
	display: block;
	color: var(--thynu-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}
.thynu-stat-value {
	display: block;
	color: var(--thynu-primary);
	font-size: 22px;
	font-weight: 800;
}

.thynu-chart {
	background: var(--thynu-bg);
	border: 1px solid var(--thynu-border);
	border-radius: var(--thynu-radius);
	padding: 20px;
	margin: 24px 0;
}
.thynu-chart-svg { width: 100%; height: 280px; display: block; }
.thynu-chart-legend {
	text-align: center;
	font-size: 13px;
	color: var(--thynu-muted);
	padding-top: 10px;
}
.thynu-legend-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 6px 0 14px;
	vertical-align: middle;
}
.thynu-legend-actual { background: var(--thynu-primary); }
.thynu-legend-target { background: var(--thynu-amber); }

.thynu-form-inline {
	display: grid;
	grid-template-columns: 1fr 2fr auto;
	gap: 14px;
	align-items: end;
}
@media (max-width: 600px) { .thynu-form-inline { grid-template-columns: 1fr; } }

.thynu-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 14px;
	font-size: 14px;
	background: var(--thynu-bg);
}
.thynu-table th, .thynu-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid var(--thynu-border);
	color: var(--thynu-text);
}
.thynu-table th {
	background: var(--thynu-surface);
	font-weight: 700;
	color: var(--thynu-primary);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.thynu-change-down { color: var(--thynu-green) !important; font-weight: 700; }
.thynu-change-up   { color: var(--thynu-red) !important; font-weight: 700; }
.thynu-change-flat { color: var(--thynu-muted); }

.thynu-empty {
	padding: 48px 24px;
	text-align: center;
	color: var(--thynu-muted);
	background: var(--thynu-surface);
	border-radius: var(--thynu-radius);
	border: 1px dashed var(--thynu-border);
	font-size: 15px;
}
.thynu-empty a { color: var(--thynu-primary); }

/* ------------ Before / After Slider ------------ */
.thynu-ba-grid {
	display: grid;
	grid-template-columns: repeat(var(--thynu-cols, 3), 1fr);
	gap: 24px;
}
@media (max-width: 900px) { .thynu-ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .thynu-ba-grid { grid-template-columns: 1fr; } }

.thynu-ba-card {
	margin: 0;
	background: var(--thynu-bg);
	border-radius: var(--thynu-radius);
	overflow: hidden;
	border: 1px solid var(--thynu-border);
	box-shadow: var(--thynu-shadow);
}
.thynu-ba-viewer {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
	user-select: none;
	touch-action: none;
	cursor: ew-resize;
	background: var(--thynu-surface);
}
.thynu-ba-viewer img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
.thynu-ba-clip {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	width: 50%;
}
.thynu-ba-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: #ffffff;
	transform: translateX(-50%);
	pointer-events: none;
	box-shadow: 0 0 12px rgba(0,0,0,.5);
}
.thynu-ba-handle-line { display: block; width: 100%; height: 100%; background: #ffffff; }
.thynu-ba-handle-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--thynu-primary) !important;
	box-shadow: 0 3px 12px rgba(0,0,0,.35);
	font-weight: 700;
}
.thynu-ba-label {
	position: absolute;
	top: 14px;
	padding: 5px 12px;
	background: rgba(0,0,0,.6);
	color: #ffffff !important;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	pointer-events: none;
}
.thynu-ba-label-before { left: 14px; }
.thynu-ba-label-after  { right: 14px; }

.thynu-ba-caption { padding: 18px 20px; color: var(--thynu-text); }
.thynu-ba-caption strong {
	display: block;
	font-size: 17px;
	color: var(--thynu-primary);
	margin-bottom: 4px;
	font-weight: 700;
}
.thynu-ba-stats {
	display: block;
	color: var(--thynu-accent);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 10px;
}
.thynu-ba-stats em { font-style: normal; }
.thynu-ba-caption blockquote {
	margin: 8px 0 0;
	padding: 12px 16px;
	background: var(--thynu-surface);
	border-left: 3px solid var(--thynu-accent);
	font-style: italic;
	color: var(--thynu-muted);
	font-size: 14px;
	border-radius: 0 8px 8px 0;
}

.thynu-ba-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	pointer-events: none;
}
.thynu-ba-placeholder-before {
	background: linear-gradient(135deg, #fef3c7, #fbbf24);
	color: #92400e !important;
}
.thynu-ba-placeholder-after {
	background: linear-gradient(135deg, #dcfce7, #22c55e);
	color: #14532d !important;
}
.thynu-ba-placeholder span {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	width: 40%;
	z-index: 2;
	white-space: nowrap;
	text-align: center;
}
/* BEFORE label sits centered in the LEFT half (visible before clip),
   AFTER label sits centered in the RIGHT half (visible after clip) */
.thynu-ba-placeholder-before span { left: 5%; }
.thynu-ba-placeholder-after  span { left: 55%; }
.thynu-ba-placeholder::before {
	content: "";
	position: absolute;
	top: 30%;
	border-radius: 50%;
	width: 90px;
	height: 90px;
	background: currentColor;
	opacity: 0.15;
}
.thynu-ba-placeholder-before::before { left: 5%; margin-left: -20px; }
.thynu-ba-placeholder-after::before  { left: 55%; margin-left: -20px; }

/* Hidden helper (in case attribute [hidden] gets overridden by theme) */
.thynu [hidden] { display: none !important; }

/* Structure: .thynu (full width) > .thynu-hero (full-bleed banner) + .thynu-body (contained) */
.thynu { margin: 0; padding: 0; width: 100%; max-width: 100%; }

.thynu-hero {
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,.15) 0, transparent 40%),
		radial-gradient(circle at 85% 80%, rgba(255,255,255,.1) 0, transparent 45%),
		linear-gradient(135deg, var(--thynu-primary) 0%, var(--thynu-accent) 100%);
	color: #ffffff !important;
	padding: 88px 24px 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.thynu-hero * { color: #ffffff !important; }
.thynu-hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.thynu-hero-icon {
	display: inline-flex;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, .25);
	line-height: 1;
}
.thynu-hero-icon img.emoji { width: 44px !important; height: 44px !important; }
.thynu-hero-title {
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.15;
	letter-spacing: -0.5px;
}
.thynu-hero-subtitle {
	font-size: clamp(15px, 2vw, 18px);
	opacity: .95;
	margin: 0;
	line-height: 1.55;
	font-weight: 400;
}
@media (max-width: 700px) {
	.thynu-hero { padding: 56px 20px 48px; }
	.thynu-hero-icon { width: 64px; height: 64px; font-size: 32px; margin-bottom: 14px; }
	.thynu-hero-icon img.emoji { width: 36px !important; height: 36px !important; }
}

.thynu-body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 24px 72px;
}
@media (max-width: 700px) {
	.thynu-body { padding: 40px 16px 56px; }
}
