/* === Toolsplorer Homepage Shortcode Styles === */

:root {
	--tsp-bg: #fafbfc;
	--tsp-surface: #ffffff;
	--tsp-border: #e5e7eb;
	--tsp-border-light: #f0f1f3;
	--tsp-text: #111827;
	--tsp-text-secondary: #6b7280;
	--tsp-text-muted: #9ca3af;
	--tsp-primary: #4338ca;
	--tsp-primary-light: #eef2ff;
	--tsp-primary-hover: #3730a3;
	--tsp-accent: #f59e0b;
	--tsp-accent-light: #fef3c7;
	--tsp-success: #10b981;
	--tsp-success-light: #ecfdf5;
	--tsp-radius-sm: 8px;
	--tsp-radius-md: 12px;
	--tsp-radius-lg: 16px;
	--tsp-radius-xl: 20px;
	--tsp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--tsp-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--tsp-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
	--tsp-font-display: 'Instrument Serif', Georgia, serif;
	--tsp-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== DIVI COMPATIBILITY ===== */
/* Fix: Divi text modules may wrap shortcode output in pre/code tags.
   Use [class*="tsp-"] to catch all current and future tsp- elements. */
.et_pb_text_inner pre:has([class*="tsp-"]),
.et_pb_text_inner pre:has(.toolsplorer-wizard) {
	all: unset;
	display: block;
}

.et_pb_text_inner code:has([class*="tsp-"]),
.et_pb_text_inner code:has(.toolsplorer-wizard) {
	all: unset;
	display: block;
}

/* Prevent Divi from overriding our fonts and colors */
.et_pb_text_inner .tsp-hero,
.et_pb_text_inner .tsp-section,
.et_pb_text_inner .tsp-categories-section,
.et_pb_text_inner .tsp-trust-bar,
.et_pb_text_inner .tsp-newsletter {
	font-family: var(--tsp-font-body);
	color: var(--tsp-text);
}

.et_pb_text_inner .tsp-hero__headline,
.et_pb_text_inner .tsp-section__title,
.et_pb_text_inner .tsp-newsletter__headline {
	font-family: var(--tsp-font-display);
}

/* Full-width breakout: allow sections to span full viewport inside Divi rows */
.tsp-hero,
.tsp-categories-section,
.tsp-trust-bar,
.tsp-trust-cards,
.tsp-bestof-section,
.tsp-newsletter {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow-x: hidden;
}

/* ===== HERO ===== */
.tsp-hero {
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
	padding: 80px 24px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.tsp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(67, 56, 202, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.tsp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--tsp-primary-light);
	color: var(--tsp-primary);
	font-family: var(--tsp-font-body);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.tsp-hero__headline {
	font-family: var(--tsp-font-display);
	font-size: 52px;
	font-weight: 400;
	line-height: 1.15;
	color: var(--tsp-text);
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
}

.tsp-hero__headline em {
	font-style: italic;
	color: var(--tsp-primary);
}

.tsp-hero__subline {
	font-family: var(--tsp-font-body);
	font-size: 18px;
	color: var(--tsp-text-secondary);
	max-width: 520px;
	margin: 0 auto 36px;
	font-weight: 400;
}

.tsp-hero__search {
	max-width: 560px;
	margin: 0 auto 28px;
	position: relative;
	display: flex;
	align-items: stretch;
}

.tsp-hero__input {
	flex: 1;
	min-width: 0;
	padding: 14px 20px;
	font-size: 16px;
	font-family: var(--tsp-font-body);
	border: 2px solid var(--tsp-border);
	border-right: none;
	border-radius: var(--tsp-radius-md) 0 0 var(--tsp-radius-md);
	background: #fff;
	box-shadow: var(--tsp-shadow-md);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	color: var(--tsp-text);
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.tsp-hero__input:focus {
	border-color: var(--tsp-primary);
	box-shadow: 0 4px 12px rgba(67, 56, 202, 0.12);
}

.tsp-hero__input::placeholder {
	color: var(--tsp-text-muted);
}

.tsp-hero__search-btn {
	width: 52px;
	flex-shrink: 0;
	background: var(--tsp-primary);
	border: 2px solid var(--tsp-primary);
	border-radius: 0 var(--tsp-radius-md) var(--tsp-radius-md) 0;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
	line-height: 1;
}

.tsp-hero__search-btn:hover {
	background: var(--tsp-primary-hover);
	border-color: var(--tsp-primary-hover);
}

.tsp-hero__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	max-width: 600px;
	margin: 0 auto;
}

.tsp-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid var(--tsp-border);
	border-radius: 20px;
	font-family: var(--tsp-font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--tsp-text-secondary);
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
}

.tsp-chip:hover {
	border-color: var(--tsp-primary);
	color: var(--tsp-primary);
	background: var(--tsp-primary-light);
	text-decoration: none;
}

/* Mobile hero handled in consolidated responsive section below */

/* ===== SHARED SECTION ===== */
.tsp-section {
	padding: 60px 24px;
	max-width: 1120px;
	margin: 0 auto;
}

.tsp-section__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 32px;
}

.tsp-section__title {
	font-family: var(--tsp-font-display);
	font-size: 32px;
	font-weight: 400;
	letter-spacing: -0.3px;
	color: var(--tsp-text);
	margin: 0;
}

.tsp-section__link {
	font-family: var(--tsp-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--tsp-primary);
	text-decoration: none;
}

.tsp-section__link:hover {
	text-decoration: underline;
}

/* ===== TOP TOOLS GRID ===== */
.tsp-tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	overflow: hidden;
}

.tsp-tool-card {
	display: flex;
	flex-direction: column;
	background: var(--tsp-surface);
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius-lg);
	padding: 24px;
	transition: all 0.25s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.tsp-tool-card:hover {
	border-color: var(--tsp-primary);
	box-shadow: var(--tsp-shadow-md);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}

.tsp-tool-card__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.tsp-tool-card__logo {
	width: 44px;
	height: 44px;
	background: var(--tsp-bg);
	border-radius: var(--tsp-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	font-family: var(--tsp-font-body);
	color: var(--tsp-primary);
	border: 1px solid var(--tsp-border-light);
	flex-shrink: 0;
	overflow: hidden;
}

.tsp-tool-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tsp-tool-card__name {
	font-family: var(--tsp-font-body);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 2px 0;
	color: var(--tsp-text);
}

.tsp-tool-card__meta {
	font-family: var(--tsp-font-body);
	font-size: 12px;
	color: var(--tsp-text-muted);
}

.tsp-tool-card__excerpt {
	font-family: var(--tsp-font-body);
	font-size: 14px;
	color: var(--tsp-text-secondary);
	line-height: 1.5;
	margin: 0 0 16px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
	min-height: 42px;
}

.tsp-tool-card__footer {
	margin-top: auto;
}

.tsp-tool-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tsp-score-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--tsp-success-light);
	color: #059669;
	font-family: var(--tsp-font-body);
	font-size: 13px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
}

.tsp-pricing-tag {
	font-family: var(--tsp-font-body);
	font-size: 12px;
	font-weight: 600;
	color: var(--tsp-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Mobile tools handled in consolidated responsive section below */

/* ===== CATEGORIES ===== */
.tsp-categories-section {
	background: #fff;
	border-top: 1px solid var(--tsp-border-light);
	border-bottom: 1px solid var(--tsp-border-light);
}

.tsp-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.tsp-categories-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.tsp-categories-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.tsp-categories-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.tsp-categories-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.tsp-categories-grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }

.tsp-category-card {
	background: var(--tsp-bg);
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius-md);
	padding: 24px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s ease;
	text-decoration: none;
	color: inherit;
}

.tsp-category-card:hover {
	border-color: var(--tsp-primary);
	background: var(--tsp-primary-light);
	text-decoration: none;
	color: inherit;
}

.tsp-category-card__icon {
	font-size: 28px;
	margin-bottom: 10px;
}

.tsp-category-card__name {
	font-family: var(--tsp-font-body);
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 4px 0;
	color: var(--tsp-text);
}

.tsp-category-card__count {
	font-family: var(--tsp-font-body);
	font-size: 13px;
	color: var(--tsp-text-muted);
}

/* Mobile categories handled in consolidated responsive section below */

/* ===== TRUST BAR ===== */
.tsp-trust-bar {
	background: var(--tsp-text);
	padding: 32px 24px;
}

.tsp-trust-bar__inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 60px;
}

.tsp-trust-item {
	text-align: center;
}

.tsp-trust-item__number {
	font-family: var(--tsp-font-display);
	font-size: 36px;
	color: #fff;
	font-weight: 400;
	line-height: 1.2;
}

.tsp-trust-item__label {
	font-family: var(--tsp-font-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}

/* Trust Cards variant */
.tsp-trust-cards {
	padding: 40px 24px;
	max-width: 1120px;
	margin: 0 auto;
}

.tsp-trust-cards .tsp-trust-bar__inner {
	gap: 16px;
}

.tsp-trust-cards .tsp-trust-item {
	background: var(--tsp-surface);
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius-md);
	padding: 20px 24px;
	flex: 1;
}

.tsp-trust-cards .tsp-trust-item__number {
	color: var(--tsp-text);
}

.tsp-trust-cards .tsp-trust-item__label {
	color: var(--tsp-text-muted);
}

/* Mobile trust bar handled in consolidated responsive section below */

/* ===== LATEST TOOLS ===== */
.tsp-latest-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.tsp-latest-card {
	display: block;
	background: var(--tsp-surface);
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius-md);
	padding: 20px;
	transition: all 0.25s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.tsp-latest-card:hover {
	border-color: var(--tsp-primary);
	box-shadow: var(--tsp-shadow-sm);
	text-decoration: none;
	color: inherit;
}

.tsp-latest-card__badge {
	display: inline-block;
	background: var(--tsp-accent-light);
	color: #b45309;
	font-family: var(--tsp-font-body);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tsp-latest-card__name {
	font-family: var(--tsp-font-body);
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 4px 0;
	color: var(--tsp-text);
}

.tsp-latest-card__cat {
	font-family: var(--tsp-font-body);
	font-size: 12px;
	color: var(--tsp-text-muted);
}

/* Mobile latest handled in consolidated responsive section below */

/* ===== BEST OF ===== */
.tsp-bestof-section {
	background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.tsp-bestof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tsp-bestof-card {
	display: block;
	background: var(--tsp-surface);
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius-lg);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.25s ease;
	text-decoration: none;
	color: inherit;
}

.tsp-bestof-card:hover {
	box-shadow: var(--tsp-shadow-md);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}

.tsp-bestof-card__image {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tsp-bestof-card__overlay-text {
	font-family: var(--tsp-font-display);
	font-size: 22px;
	color: #fff;
	text-align: center;
	padding: 0 20px;
	line-height: 1.3;
}

.tsp-bestof-card__body {
	padding: 20px;
}

.tsp-bestof-card__title {
	font-family: var(--tsp-font-body);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 6px 0;
	color: var(--tsp-text);
}

.tsp-bestof-card__desc {
	font-family: var(--tsp-font-body);
	font-size: 13px;
	color: var(--tsp-text-secondary);
	margin: 0 0 12px 0;
}

.tsp-bestof-logos {
	display: flex;
	align-items: center;
}

.tsp-bestof-logo {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--tsp-bg);
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--tsp-font-body);
	font-size: 11px;
	font-weight: 700;
	color: var(--tsp-primary);
	margin-left: -6px;
	overflow: hidden;
}

.tsp-bestof-logo:first-child {
	margin-left: 0;
}

.tsp-bestof-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tsp-bestof-more {
	font-family: var(--tsp-font-body);
	font-size: 12px;
	color: var(--tsp-text-muted);
	margin-left: 8px;
}

/* Mobile bestof handled in consolidated responsive section below */

/* ===== NEWSLETTER ===== */
.tsp-newsletter {
	background: var(--tsp-primary);
	padding: 60px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.tsp-newsletter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(ellipse 600px 300px at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 400px 200px at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.tsp-newsletter__headline {
	font-family: var(--tsp-font-display);
	font-size: 32px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 10px 0;
	position: relative;
}

.tsp-newsletter__subline {
	color: rgba(255, 255, 255, 0.75);
	font-family: var(--tsp-font-body);
	font-size: 16px;
	margin: 0 0 28px 0;
	position: relative;
}

.tsp-newsletter__form {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 0 auto;
	position: relative;
}

.tsp-newsletter__input {
	flex: 1;
	padding: 14px 18px;
	font-size: 15px;
	font-family: var(--tsp-font-body);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--tsp-radius-sm);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	outline: none;
	backdrop-filter: blur(4px);
	box-sizing: border-box;
}

.tsp-newsletter__input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.tsp-newsletter__input:focus {
	border-color: rgba(255, 255, 255, 0.5);
}

.tsp-newsletter__btn {
	padding: 14px 24px;
	background: #fff;
	color: var(--tsp-primary);
	font-family: var(--tsp-font-body);
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: var(--tsp-radius-sm);
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.tsp-newsletter__btn:hover {
	background: #f0f0ff;
}

.tsp-newsletter__feedback {
	font-family: var(--tsp-font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 12px;
	position: relative;
}

/* ===== RESPONSIVE — TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
	.tsp-hero {
		padding: 60px 20px 48px;
	}

	.tsp-hero__headline {
		font-size: 42px;
	}

	.tsp-tools-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tsp-categories-grid,
	.tsp-categories-grid[data-cols] {
		grid-template-columns: repeat(3, 1fr);
	}

	.tsp-trust-bar__inner {
		gap: 32px;
	}

	.tsp-trust-item__number {
		font-size: 28px;
	}

	.tsp-bestof-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===== RESPONSIVE — MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
	/* Hero */
	.tsp-hero {
		padding: 40px 16px 32px;
	}

	.tsp-hero__badge {
		font-size: 12px;
		padding: 5px 12px;
		margin-bottom: 16px;
	}

	.tsp-hero__headline {
		font-size: 32px;
		letter-spacing: -0.3px;
	}

	.tsp-hero__subline {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.tsp-hero__search {
		max-width: 100%;
	}

	.tsp-hero__input {
		padding: 12px 16px;
		font-size: 15px;
	}

	.tsp-hero__search-btn {
		width: 46px;
	}

	.tsp-hero__chips {
		gap: 6px;
	}

	.tsp-chip {
		font-size: 12px;
		padding: 6px 10px;
	}

	/* Sections */
	.tsp-section {
		padding: 40px 16px;
	}

	.tsp-section__header {
		flex-direction: column;
		gap: 8px;
		margin-bottom: 24px;
	}

	.tsp-section__title {
		font-size: 26px;
	}

	/* Tools grid */
	.tsp-tools-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tsp-tool-card {
		padding: 18px;
	}

	.tsp-tool-card__name {
		font-size: 15px;
	}

	/* Categories */
	.tsp-categories-grid,
	.tsp-categories-grid[data-cols] {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.tsp-category-card {
		padding: 18px 14px;
	}

	.tsp-category-card__icon {
		font-size: 24px;
		margin-bottom: 6px;
	}

	.tsp-category-card__name {
		font-size: 13px;
	}

	.tsp-category-card__count {
		font-size: 11px;
	}

	/* Trust bar */
	.tsp-trust-bar {
		padding: 24px 16px;
	}

	.tsp-trust-bar__inner {
		flex-wrap: wrap;
		gap: 16px 24px;
		justify-content: space-around;
	}

	.tsp-trust-item__number {
		font-size: 24px;
	}

	.tsp-trust-item__label {
		font-size: 11px;
	}

	.tsp-trust-cards .tsp-trust-bar__inner {
		flex-wrap: wrap;
	}

	.tsp-trust-cards .tsp-trust-item {
		flex-basis: calc(50% - 8px);
		padding: 14px 16px;
	}

	/* Latest tools */
	.tsp-latest-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.tsp-latest-card {
		padding: 14px;
	}

	.tsp-latest-card__name {
		font-size: 14px;
	}

	/* Best of */
	.tsp-bestof-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* Newsletter */
	.tsp-newsletter {
		padding: 40px 16px;
	}

	.tsp-newsletter__headline {
		font-size: 24px;
	}

	.tsp-newsletter__subline {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.tsp-newsletter__form {
		flex-direction: column;
		max-width: 100%;
	}

	.tsp-newsletter__input {
		padding: 12px 16px;
		font-size: 15px;
	}

	.tsp-newsletter__btn {
		padding: 12px 20px;
		font-size: 15px;
	}
}

/* ===== RESPONSIVE — SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
	.tsp-hero__headline {
		font-size: 26px;
	}

	.tsp-hero__subline {
		font-size: 14px;
	}

	.tsp-hero__chips {
		max-width: 100%;
	}

	.tsp-chip {
		font-size: 11px;
		padding: 5px 8px;
	}

	.tsp-tools-grid {
		gap: 10px;
	}

	.tsp-tool-card {
		padding: 14px;
	}

	.tsp-tool-card__logo {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.tsp-tool-card__header {
		gap: 10px;
	}

	.tsp-categories-grid,
	.tsp-categories-grid[data-cols] {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.tsp-category-card {
		padding: 14px 10px;
	}

	.tsp-trust-bar__inner {
		gap: 12px 20px;
	}

	.tsp-trust-item__number {
		font-size: 20px;
	}

	.tsp-latest-grid {
		grid-template-columns: 1fr;
	}

	.tsp-section__title {
		font-size: 22px;
	}

	.tsp-newsletter__headline {
		font-size: 22px;
	}
}
