/* SOCIAL MEDIA AUTOMATION PAGE — Additional styles
   Template:  template-automation-social.php
   Scope:     .is-auto-social-page
   Tokens:    Inherited from main.css (do NOT redefine root vars)
   ------------------------------------------------------------------ */

/* =================================================================
   UTILITY CLASSES  (duplicated per template — intentional)
================================================================== */

.section {
	padding: clamp(72px, 8vw, 112px) 0;
}

.section-alt {
	background: var(--mist);
}

.section-dark {
	background: var(--ink);
}

.wrap {
	width: var(--w);
	margin: 0 auto;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
	background: rgba(255, 255, 255, 0.08);
	color: var(--chalk);
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.32);
	color: var(--chalk);
}

.btn-out {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.22s var(--ease), color 0.22s var(--ease);
	background: transparent;
	color: var(--chalk);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-out:hover,
.btn-out:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--chalk);
	color: var(--chalk);
}

/* =================================================================
   H1 TYPOGRAPHIC MODIFIERS
================================================================== */

.is-auto-social-page .h1-dim {
	display: block;
	color: rgba(255, 255, 255, 0.45);
}

.is-auto-social-page .h1-white {
	color: var(--chalk);
}

.is-auto-social-page .h1-fire {
	color: var(--fire);
}

.is-auto-social-page .h1-underline {
	display: block;
	position: relative;
	color: var(--chalk);
	white-space: nowrap;
}

.is-auto-social-page .h1-underline::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0;
	height: 3px;
	border-radius: 99px;
	background: var(--fire);
	transition: width 0.7s var(--ease);
}

.is-auto-social-page .h1-underline.drawn::after {
	width: 100%;
}

/* =================================================================
   REVEAL ANIMATION UTILITIES
================================================================== */

.is-auto-social-page .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.is-auto-social-page .reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.is-auto-social-page .reveal-d1 { transition-delay: 0.1s; }
.is-auto-social-page .reveal-d2 { transition-delay: 0.2s; }
.is-auto-social-page .reveal-d3 { transition-delay: 0.3s; }
.is-auto-social-page .reveal-d4 { transition-delay: 0.4s; }

/* =================================================================
   SHARED SECTION LABELS
================================================================== */

.is-auto-social-page .eyebrow {
	display: inline-block;
	font-family: var(--ff-head);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fire);
	margin-bottom: 12px;
}

.is-auto-social-page .eyebrow-light {
	color: rgba(255, 255, 255, 0.55);
}

.is-auto-social-page .h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.is-auto-social-page .h2-white {
	color: var(--chalk);
}

/* =================================================================
   HERO ENTRY ANIMATIONS
================================================================== */

@keyframes socialHeroFadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes socialHeroFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes socialSlideInRow {
	from { opacity: 0; transform: translateX(-14px); }
	to   { opacity: 1; transform: translateX(0); }
}

@keyframes socialLivePulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(0.85); }
}

.is-auto-social-page .hero-pill    { animation: socialHeroFadeIn  0.5s var(--ease) 0.10s both; }
.is-auto-social-page .hero-h1      { animation: socialHeroFadeUp  0.6s var(--ease) 0.20s both; }
.is-auto-social-page .hero-sub     { animation: socialHeroFadeUp  0.6s var(--ease) 0.35s both; }
.is-auto-social-page .hero-actions { animation: socialHeroFadeUp  0.6s var(--ease) 0.48s both; }
.is-auto-social-page .hero-stats   { animation: socialHeroFadeUp  0.6s var(--ease) 0.60s both; }
.is-auto-social-page .hero-right   { animation: socialHeroFadeIn  0.8s var(--ease) 0.50s both; }

/* =================================================================
   HERO SECTION
================================================================== */

.is-auto-social-page #hero {
	background: var(--ink);
	position: relative;
	overflow: hidden;
	padding: clamp(80px, 10vw, 128px) 0 0;
}

.is-auto-social-page .hero-glow,
.is-auto-social-page .hero-glow2 {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.is-auto-social-page .hero-glow {
	width: 560px;
	height: 560px;
	top: -180px;
	left: -120px;
	background: radial-gradient(circle, rgba(240, 98, 12, 0.18) 0%, transparent 70%);
}

.is-auto-social-page .hero-glow2 {
	width: 420px;
	height: 420px;
	bottom: 40px;
	right: -80px;
	background: radial-gradient(circle, rgba(240, 98, 12, 0.10) 0%, transparent 70%);
}

.is-auto-social-page .hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* ---- Left column ---- */
.is-auto-social-page .hero-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.is-auto-social-page .hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 99px;
	background: rgba(240, 98, 12, 0.12);
	border: 1px solid rgba(240, 98, 12, 0.3);
	color: var(--fire);
	font-family: var(--ff-head);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	width: fit-content;
}

.is-auto-social-page .pill-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fire);
	animation: pulse 2s infinite;
	flex-shrink: 0;
}

.is-auto-social-page .hero-h1 {
	font-family: var(--ff-head);
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: -0.025em;
	margin: 0;
}

.is-auto-social-page .hero-sub {
	font-family: var(--ff-body);
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin: 0;
	max-width: 520px;
}

.is-auto-social-page .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.is-auto-social-page .btn-fire {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--fire);
	color: var(--chalk);
	border: 2px solid var(--fire);
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
	box-shadow: 0 4px 20px rgba(240, 98, 12, 0.38);
}

.is-auto-social-page .btn-fire:hover,
.is-auto-social-page .btn-fire:focus-visible {
	background: var(--fire2);
	border-color: var(--fire2);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(240, 98, 12, 0.48);
}

.is-auto-social-page .hero-stats {
	display: flex;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	width: fit-content;
}

.is-auto-social-page .hero-stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-right: 28px;
	margin-right: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.is-auto-social-page .hero-stat:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.is-auto-social-page .hero-stat strong {
	font-family: var(--ff-head);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--chalk);
	line-height: 1;
}

.is-auto-social-page .hero-stat strong sup {
	font-size: 0.9rem;
	font-weight: 700;
}

.is-auto-social-page .hero-stat span {
	font-family: var(--ff-body);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.is-auto-social-page .hero-right {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

/* =================================================================
   SOCIAL AUTO PANEL (hero mockup — scheduler dashboard)
================================================================== */

.social-auto-panel {
	background: #111827;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
	width: 100%;
	max-width: 400px;
}

.social-panel-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.social-tl-dots {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.tl-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	flex-shrink: 0;
}

.tl-red    { background: #ff5f57; }
.tl-yellow { background: #febc2e; }
.tl-green  { background: #28c840; }

.social-panel-title {
	flex: 1;
	font-family: var(--ff-head);
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.social-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
	animation: socialLivePulse 2s ease-in-out infinite;
}

.social-panel-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Queue rows */
.social-queue-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--r1);
	animation: socialSlideInRow 0.4s var(--ease) both;
}

.social-queue-row:nth-child(1) { animation-delay: 0.60s; }
.social-queue-row:nth-child(2) { animation-delay: 0.74s; }
.social-queue-row:nth-child(3) { animation-delay: 0.88s; }

/* Platform colour dots */
.social-platform-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.dot-facebook  { background: #1877f2; }
.dot-instagram { background: #e1306c; }
.dot-linkedin  { background: #0a66c2; }

.social-queue-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.social-queue-text {
	font-family: var(--ff-head);
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.social-queue-meta {
	font-family: var(--ff-body);
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.35);
}

.social-queue-badge {
	font-family: var(--ff-head);
	font-size: 0.65rem;
	font-weight: 700;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.25);
	border-radius: 99px;
	padding: 3px 9px;
	flex-shrink: 0;
}

.social-panel-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	animation: socialSlideInRow 0.4s var(--ease) 1.02s both;
}

.social-summary-label {
	font-family: var(--ff-body);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}

.social-summary-value {
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 800;
	color: var(--fire);
}

/* =================================================================
   TICKER
================================================================== */

.is-auto-social-page .hero-ticker {
	margin-top: clamp(48px, 6vw, 72px);
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	padding: 13px 0;
	position: relative;
	z-index: 1;
}

.is-auto-social-page .ticker-track {
	display: flex;
	gap: 0;
	white-space: nowrap;
	animation: tickerRun 38s linear infinite;
}

.is-auto-social-page .ticker-track span {
	font-family: var(--ff-head);
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.04em;
	padding-right: 40px;
}

.is-auto-social-page .ticker-track .sp {
	color: var(--fire);
	padding-right: 40px;
}

/* =================================================================
   WHAT GETS AUTOMATED — 2-col checklist grid
================================================================== */

.social-checklist-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 32px;
}

.social-check-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.social-check-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(240, 98, 12, 0.1);
	border: 1px solid rgba(240, 98, 12, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
	margin-top: 2px;
}

.social-check-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.social-check-body h3 {
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.social-check-body p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2, #6B7280);
	line-height: 1.65;
	margin: 0;
}

/* =================================================================
   SERVICES — 6-card 3-col grid
================================================================== */

.social-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.social-card {
	background: var(--chalk);
	border: 1px solid var(--line2);
	border-radius: var(--r3);
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.social-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--fire);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.28s var(--ease);
	border-radius: 0 2px 2px 0;
}

.social-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
	border-color: rgba(240, 98, 12, 0.3);
	transform: translateY(-3px);
}

.social-card:hover::before {
	transform: scaleY(1);
}

.social-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(240, 98, 12, 0.08);
	border: 1px solid rgba(240, 98, 12, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
}

.social-card h3 {
	font-family: var(--ff-head);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.social-card p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2, #6B7280);
	line-height: 1.65;
	margin: 0;
}

/* =================================================================
   ADSENSE WRAP
================================================================== */

.social-adsense-wrap {
	padding: 24px 0;
	background: var(--chalk);
}

/* =================================================================
   PLATFORMS & TOOLS — dark section
================================================================== */

.social-platforms-section {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.social-platforms-divider {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.social-platforms-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.social-group-label {
	font-family: var(--ff-head);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.social-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.social-chip {
	display: inline-flex;
	align-items: center;
	padding: 9px 20px;
	border-radius: var(--r2);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-family: var(--ff-head);
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: 0.01em;
	transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
	cursor: default;
}

.social-chip:hover {
	background: rgba(240, 98, 12, 0.12);
	border-color: rgba(240, 98, 12, 0.3);
	color: var(--fire);
}

/* =================================================================
   PROCESS — 4-col horizontal
================================================================== */

.social-process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.social-process-steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(12.5% + 20px);
	right: calc(12.5% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--fire) 0%, rgba(240, 98, 12, 0.2) 100%);
	z-index: 0;
}

.social-process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.social-process-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--mist);
	border: 3px solid var(--fire);
	color: var(--fire);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 6px var(--mist);
}

.social-process-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.social-process-body h3 {
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.social-process-body p {
	font-family: var(--ff-body);
	font-size: 0.875rem;
	color: var(--text2, #6B7280);
	line-height: 1.6;
	margin: 0;
}

/* =================================================================
   FAQ
================================================================== */

.social-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.social-faq-item {
	border-bottom: 1px solid var(--line2);
}

.social-faq-item:first-child {
	border-top: 1px solid var(--line2);
}

.social-faq-q {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	text-align: left;
}

.social-faq-q span {
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.4;
}

.social-faq-icon {
	color: var(--text2, #6B7280);
	flex-shrink: 0;
	transition: transform 0.28s var(--ease), color 0.22s var(--ease);
}

.social-faq-item.is-open .social-faq-icon {
	transform: rotate(-180deg);
	color: var(--fire);
}

.social-faq-item.is-open .social-faq-q span {
	color: var(--fire);
}

.social-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s var(--ease);
}

.social-faq-a p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2, #6B7280);
	line-height: 1.7;
	padding-bottom: 20px;
	margin: 0;
}

/* =================================================================
   FINAL CTA — fire background
================================================================== */

.social-cta-fire {
	background: var(--fire);
	position: relative;
	overflow: hidden;
}

.social-cta-fire::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0%, transparent 60%);
	pointer-events: none;
}

.social-cta-fire .h2 {
	color: var(--chalk);
	margin-bottom: 16px;
}

.social-cta-sub {
	font-family: var(--ff-body);
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 36px;
	line-height: 1.65;
}

.social-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.social-cta-btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: var(--chalk);
	color: var(--fire);
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.social-cta-btn-white:hover,
.social-cta-btn-white:focus-visible {
	background: var(--mist);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
	color: var(--fire);
}

/* =================================================================
   RESPONSIVE — 960px
================================================================== */

@media (max-width: 960px) {

	.is-auto-social-page .hero-body {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.is-auto-social-page .hero-right {
		justify-content: center;
	}

	.social-auto-panel {
		max-width: 420px;
	}

	.social-checklist-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

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

	.social-process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 24px;
	}

	.social-process-steps::before {
		display: none;
	}

}

/* =================================================================
   RESPONSIVE — 768px
================================================================== */

@media (max-width: 768px) {

	.is-auto-social-page .hero-h1 {
		font-size: clamp(1.8rem, 7vw, 2.4rem);
	}

	.is-auto-social-page .hero-stats {
		flex-wrap: wrap;
		gap: 16px;
	}

	.is-auto-social-page .hero-stat {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}

	.is-auto-social-page .h1-underline {
		white-space: normal;
	}

	.social-cards-grid {
		grid-template-columns: 1fr;
	}

	.social-chip-row {
		gap: 8px;
	}

	.social-chip {
		font-size: 0.8125rem;
		padding: 8px 16px;
	}

}

/* =================================================================
   RESPONSIVE — 480px
================================================================== */

@media (max-width: 480px) {

	.social-process-steps {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.social-process-step {
		flex-direction: row;
		text-align: left;
	}

	.social-process-num {
		flex-shrink: 0;
	}

	.social-check-item {
		gap: 12px;
	}

}

/* =================================================================
   REDUCED MOTION
================================================================== */

@media (prefers-reduced-motion: reduce) {

	.is-auto-social-page .reveal,
	.is-auto-social-page .hero-pill,
	.is-auto-social-page .hero-h1,
	.is-auto-social-page .hero-sub,
	.is-auto-social-page .hero-actions,
	.is-auto-social-page .hero-stats,
	.is-auto-social-page .hero-right {
		animation: none;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.is-auto-social-page .reveal {
		opacity: 1;
		transform: none;
	}

	.social-queue-row,
	.social-panel-summary {
		animation: none;
		opacity: 1;
	}

	.is-auto-social-page .h1-underline::after {
		transition: none;
		width: 100%;
	}

	.social-live-dot,
	.is-auto-social-page .pill-dot {
		animation: none;
	}

	.is-auto-social-page .ticker-track {
		animation: none;
	}

}
