/* ============================================================
   TrueAna Privacy Policy Elements — Frontend & Editor Styles
   Colors: Accent #4353FF  |  Green #22C55E  |  Text #1A1A2E
   Font: Inter (enqueued separately)
   ============================================================ */

/* ── Base reset for all widgets ── */
.tnpp-hero,
.tnpp-card,
.tnpp-callout,
.tnpp-contact {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.tnpp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

.tnpp-icon svg {
	display: block;
}

/* ============================================================
   HERO WIDGET
   ============================================================ */
.tnpp-hero {
	padding-bottom: 40px;
}

.tnpp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 12px 4px 8px;
	border-radius: 100px;
	border: 1px solid transparent;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.tnpp-hero__title {
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 14px;
}

.tnpp-hero__desc {
	font-size: 16px;
	line-height: 1.7;
	max-width: 580px;
	margin: 0 0 24px;
}

.tnpp-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	padding-top: 20px;
	border-top: 1px solid #E3E8EF;
}

.tnpp-hero__meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 500;
	color: #8C96A3;
}

/* ============================================================
   SECTION CARD WIDGET
   ============================================================ */
.tnpp-card {
	border: 1px solid #E3E8EF;
	border-radius: 16px;
	padding: 30px 32px;
	margin-bottom: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.tnpp-card:hover {
	border-color: rgba(67,83,255,.25);
	box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 8px 28px rgba(67,83,255,.09);
}

.tnpp-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.tnpp-card__icon-box {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tnpp-card__num {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 3px;
}

.tnpp-card__title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0;
}

.tnpp-card__para {
	font-size: 14.5px;
	line-height: 1.75;
	margin-bottom: 10px;
}

.tnpp-card__para:last-of-type {
	margin-bottom: 0;
}

.tnpp-card__para p {
	margin: 0 0 10px;
}

.tnpp-card__para p:last-child {
	margin-bottom: 0;
}

/* ============================================================
   CALLOUT BLOCK (inside card & standalone)
   ============================================================ */
.tnpp-callout {
	border-left: 3px solid #4353FF;
	border-radius: 0 10px 10px 0;
	padding: 12px 16px;
	margin-top: 14px;
}

.tnpp-callout--standalone {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 0;
}

.tnpp-callout__icon {
	flex-shrink: 0;
	margin-top: 1px;
}

.tnpp-callout__text {
	font-size: 13.5px;
	line-height: 1.65;
}

.tnpp-callout__text p {
	margin: 0;
}

.tnpp-callout__text a {
	color: #4353FF;
	text-decoration: none;
	border-bottom: 1px solid rgba(67,83,255,.3);
}

.tnpp-callout__text a:hover {
	border-bottom-color: #4353FF;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.tnpp-checklist {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tnpp-checklist__item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 14px;
	line-height: 1.6;
}

.tnpp-icon--check {
	margin-top: 1px;
}

/* ============================================================
   CONTACT CARD WIDGET
   ============================================================ */
.tnpp-contact {
	border: 1px solid #E3E8EF;
	border-radius: 16px;
	padding: 40px 32px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
	margin-top: 8px;
}

.tnpp-contact__icon-box {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.tnpp-contact__heading {
	font-size: 20px;
	font-weight: 700;
	color: #1A1A2E;
	letter-spacing: -0.02em;
	margin: 0 0 8px;
}

.tnpp-contact__desc {
	font-size: 14px;
	color: #555E6C;
	max-width: 360px;
	margin: 0 auto 24px;
	line-height: 1.65;
}

.tnpp-contact__btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tnpp-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 22px;
	border-radius: 100px;
	font-size: 13.5px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.tnpp-btn--solid {
	color: #fff;
}

.tnpp-btn--solid:hover {
	opacity: .9;
	color: #fff;
}

.tnpp-btn--ghost {
	background: transparent;
	border-color: #E3E8EF;
	color: #555E6C;
}

.tnpp-btn--ghost:hover {
	border-color: #4353FF;
	color: #4353FF;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
	.tnpp-card {
		padding: 22px 18px;
	}
	.tnpp-contact {
		padding: 28px 18px;
	}
	.tnpp-hero__title {
		font-size: 28px;
	}
}
