/* ==========================================================================
   asifbasheer.com — static replica of the WordPress (Neve) site
   Design tokens below are taken verbatim from the live site's customizer CSS.
   ========================================================================== */

:root {
	/* Palette */
	--primary-accent: #4c34fb;
	--secondary-accent: #0f073f;
	--dark-bg: #0f073f;
	--light-bg: #f7f7f7;
	--site-bg: #ffffff;
	--text-color: #020202;
	--text-dark-bg: #ffffff;

	/* Typography (mobile-first, scaled up in the media queries below) */
	--body-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--body-size: 15px;
	--body-line-height: 1.6;
	--h1-size: 30px;
	--h2-size: 25px;
	--h3-size: 18px;
	--h4-size: 16px;

	/* Layout */
	--section-width: 1100px;
	--btn-radius: 3px;
}

@media (min-width: 576px) {
	:root {
		--body-size: 16px;
		--h1-size: 35px;
	}
}

@media (min-width: 960px) {
	:root {
		--body-line-height: 1.9;
		--h1-size: 55px;
		--h2-size: 35px;
		--h3-size: 20px;
		--h4-size: 13px;
	}
}

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

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	background: var(--site-bg);
	color: var(--text-color);
	font-family: var(--body-font);
	font-size: var(--body-size);
	font-weight: 400;
	line-height: var(--body-line-height);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px;
	font-family: var(--body-font);
	line-height: 1.3em;
	text-transform: uppercase;
}

h1 { font-size: var(--h1-size); font-weight: 700; }
h2 { font-size: var(--h2-size); font-weight: 900; }
h3 { font-size: var(--h3-size); font-weight: 900; }
h4 { font-size: var(--h4-size); font-weight: 900; }

p {
	margin: 0 0 20px;
}

a {
	color: var(--primary-accent);
	text-decoration: none;
}

a:hover {
	color: var(--secondary-accent);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	margin: 0 0 20px;
	padding-left: 20px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 10px 20px;
	background: var(--site-bg);
	color: var(--primary-accent);
}

.skip-link:focus {
	left: 0;
}

main {
	flex: 1 0 auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-block;
	padding: 13px 15px;
	background: var(--primary-accent);
	color: #fff;
	border: 1px solid transparent;
	border-radius: var(--btn-radius);
	font-family: var(--body-font);
	font-size: inherit;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
	color: #fff;
	opacity: 0.9;
}

.btn-secondary {
	background: transparent;
	border-color: var(--primary-accent);
	color: var(--primary-accent);
}

.btn-secondary:hover {
	color: var(--primary-accent);
	opacity: 0.8;
}

/* WordPress core block button — used for "Buy my book". */
.btn-book {
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	background: #32373c;
	border-radius: 0;
	color: #fff;
	font-weight: 500;
}

.btn-book:hover {
	background: #32373c;
	color: #fff;
	opacity: 0.9;
}

/* The dark CTA button used in the hero and the contact band. */
.btn-cta {
	padding: 20px 40px;
	background: var(--dark-bg);
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.btn-cta:hover {
	background: #fff;
	color: var(--primary-accent);
	opacity: 1;
}

/* --------------------------------------------------------------------------
   Section shell — mirrors the "advanced columns" blocks of the live site
   -------------------------------------------------------------------------- */

.section {
	padding: 40px 20px;
}

.section-inner {
	display: flex;
	flex-wrap: wrap;
	max-width: var(--section-width);
	margin: 0 auto;
}

.section-inner.align-center {
	align-items: center;
}

.col {
	flex: 1 1 100%;
	min-width: 0;
	padding: 20px;
}

.section-dark {
	background: var(--dark-bg);
	color: var(--text-dark-bg);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark li {
	color: #fff;
}

.section-light {
	background: var(--light-bg);
}

.section-title-accent {
	color: var(--primary-accent);
	line-height: 35px;
}

.text-center {
	text-align: center;
}

@media (min-width: 960px) {
	.col-half {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-third {
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
	background: var(--site-bg);
	border-bottom: 1px solid var(--light-bg);
}

.nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 2000px;
	margin: 0 auto;
	padding: 16px 32px;
}

.logo {
	display: inline-block;
	padding: 10px 0;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.logo:hover {
	color: var(--text-color);
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav a {
	display: inline-block;
	padding: 1px 4px 0;
	color: var(--text-color);
	font-size: 1em;
	font-weight: 500;
	line-height: 1.6;
	border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
	color: var(--primary-accent);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 44px;
	height: 40px;
	padding: 10px 12px;
	background: transparent;
	border: 1px solid var(--light-bg);
	border-radius: 3px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 2px;
	background: var(--text-color);
}

@media (max-width: 960px) {
	.menu-toggle {
		display: flex;
	}

	.main-nav {
		display: none;
		flex-basis: 100%;
		order: 3;
	}

	.main-nav.open {
		display: block;
	}

	.main-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding-bottom: 10px;
	}

	.main-nav li {
		width: 100%;
		border-bottom: 1px solid var(--light-bg);
	}

	.main-nav a {
		display: block;
		padding: 12px 0;
		border-bottom: 0;
	}

	.nav-bar {
		flex-wrap: wrap;
	}
}

/* --------------------------------------------------------------------------
   Hero — left panel is the profile photo, right panel is the accent block
   -------------------------------------------------------------------------- */

.hero {
	display: flex;
	flex-wrap: wrap;
	min-height: 480px;
}

.hero-photo {
	flex: 1 1 100%;
	padding: 140px 20px;
	background-image: url("/assets/images/profile-pic.png");
	background-repeat: repeat;
	background-position: 100% 50%;
	background-size: cover;
}

.hero-panel {
	flex: 1 1 100%;
	padding: 100px 40px;
	background: var(--primary-accent);
	color: var(--text-dark-bg);
}

.hero-eyebrow {
	margin-bottom: 15px;
	color: #fff;
	font-size: var(--h4-size);
	font-weight: 900;
	line-height: 1.3em;
	text-transform: uppercase;
}

.hero-panel h1 {
	color: var(--site-bg);
}

.hero-panel p {
	color: #fff;
}

@media (min-width: 960px) {
	.hero-photo {
		flex: 0 0 52.52%;
		max-width: 52.52%;
		padding: 20px;
	}

	.hero-panel {
		flex: 0 0 47.48%;
		max-width: 47.48%;
	}
}

/* Social pills */
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 30px;
	background: var(--text-dark-bg);
	color: var(--text-color);
	border-radius: 9999px;
}

.social-links a:hover {
	color: var(--primary-accent);
}

.social-links svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.hero-actions {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about {
	padding: 40px 20px 20px;
}

.about .col {
	padding: 40px;
}

.about-actions {
	display: flex;
	justify-content: center;
}

@media (max-width: 960px) {
	.about .col {
		padding: 20px;
	}
}

/* --------------------------------------------------------------------------
   Skillset (dark band)
   -------------------------------------------------------------------------- */

.skillset-head {
	padding: 80px 20px 0;
}

.skillset-cards {
	padding: 0 20px 40px;
}

.skill-card {
	padding: 0;
	text-align: center;
}

.skill-icon {
	display: block;
	margin: 0 auto 15px;
	color: #fff;
}

.skill-icon svg {
	width: 50px;
	height: 50px;
	fill: currentColor;
}

.skill-card h3 {
	font-size: 20px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Experience / Education
   -------------------------------------------------------------------------- */

.item-list {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.item-list li {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */

.portfolio-head {
	padding: 40px 20px 0;
}

.portfolio-head h2 {
	text-align: center;
}

.portfolio {
	padding: 60px 20px 40px;
}

@media (min-width: 960px) {
	.portfolio-asta {
		flex: 0 0 53.91%;
		max-width: 53.91%;
	}

	.portfolio-webvendere {
		flex: 0 0 35.61%;
		max-width: 35.61%;
	}

	.portfolio-spacer {
		flex: 0 0 10.47%;
		max-width: 10.47%;
	}

	.portfolio-asta img {
		width: 348px;
		height: 348px;
	}

	.portfolio-webvendere img {
		width: 335px;
		height: 335px;
	}
}

/* --------------------------------------------------------------------------
   Contact band
   -------------------------------------------------------------------------- */

.contact {
	position: relative;
	padding: 80px 20px;
	background-image: url("/assets/images/contact-bg.jpg");
	background-repeat: repeat;
	background-position: 0 0;
	background-size: cover;
	color: #fff;
	text-align: center;
}

/* The live section lays a 93%-opaque accent wash over the photo. */
.contact::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--primary-accent);
	opacity: 0.93;
}

.contact > * {
	position: relative;
}

.contact h2 {
	color: #fff;
	text-align: center;
}

.contact-eyebrow {
	display: block;
	margin-bottom: 15px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.contact-actions {
	display: flex;
	justify-content: center;
}

@media (max-width: 960px) {
	.contact {
		padding: 40px 20px;
	}
}

/* --------------------------------------------------------------------------
   Inner page shell
   -------------------------------------------------------------------------- */

.page-title-wrap {
	max-width: none;
	padding: 40px 15px 0;
}

.page-title-wrap h1 {
	margin: 0;
}

.page-content {
	max-width: 1170px;
	margin: 0 auto;
	padding: 20px;
}

.page-content-narrow {
	max-width: 748px;
}

/* The two page-builder pages (Links / Business tools) set their own type stack. */
.media-hero h1,
.media-hero p,
.btn-ghost,
.links-intro h2,
.links-intro p,
.links-list a,
.tools-col h2,
.tools-col-sub,
.tool-card h3,
.tool-card p {
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Hero band used by the two Elementor-built pages (Links / Business tools) */
.media-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 66vh;
	padding: 0 20px;
	background-color: #ffffff;
	background-image: url("/assets/images/tech-tools.webp");
	background-position: center center;
	background-size: cover;
	color: #fff;
}

.media-hero-tall {
	min-height: 100vh;
}

.media-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.65;
}

.media-hero-inner {
	position: relative;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 0;
}

.media-hero-eyebrow {
	margin: 0;
	color: #fff;
	font-family: "Times New Roman", serif;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 12px;
	text-transform: uppercase;
}

.media-hero h1 {
	margin: 20px 0 0;
	color: #fff;
	font-size: 65px;
	font-weight: 900;
	line-height: 1.2em;
}

.media-hero p {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.49);
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
}

.media-hero-text {
	padding-right: 20%;
}

.btn-ghost {
	display: inline-block;
	margin-top: 20px;
	padding: 15px 30px 15px 25px;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}

.btn-ghost:hover {
	background: var(--light-bg);
	border-color: var(--light-bg);
	color: #54595f;
}

@media (max-width: 1024px) {
	.media-hero {
		min-height: 800px;
		padding: 0 25px;
	}

	.media-hero-text {
		padding: 40px;
	}
}

@media (max-width: 767px) {
	.media-hero {
		min-height: 612px;
		padding: 0 20px;
	}

	.media-hero h1 {
		font-size: 39px;
	}

	.media-hero-text {
		padding: 0;
	}
}

/* --------------------------------------------------------------------------
   Links to follow
   -------------------------------------------------------------------------- */

.links-section {
	padding: 100px 20px;
}

.links-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1140px;
	margin: 0 auto;
}

.links-intro {
	flex: 1 1 100%;
	padding-right: 60px;
}

.links-intro h2 {
	margin: 0;
	color: #000;
	font-size: 35px;
	font-weight: 900;
	line-height: 1.3em;
	text-transform: uppercase;
}

.links-intro p {
	margin-top: 20px;
	color: #bfbfbf;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8em;
}

.links-list {
	flex: 1 1 100%;
	margin: 0;
	padding: 20px;
	list-style: none;
}

.links-list li {
	padding-bottom: 2.5px;
	margin-top: 2.5px;
}

.links-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--secondary-accent);
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 21px;
	font-weight: 500;
}

.links-list a:hover {
	color: #61ce70;
}

.links-list svg {
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	fill: #000;
}

.links-list a:hover svg {
	fill: #61ce70;
}

@media (min-width: 768px) {
	.links-intro {
		flex: 0 0 45%;
		max-width: 45%;
	}

	.links-list {
		flex: 0 0 55%;
		max-width: 55%;
	}
}

@media (max-width: 767px) {
	.links-section {
		padding: 50px 20px;
	}

	.links-intro {
		padding-right: 0;
	}

	.links-list {
		padding: 50px 0 0;
	}
}

/* --------------------------------------------------------------------------
   Business tools
   -------------------------------------------------------------------------- */

.tools-section {
	padding: 100px 0;
}

.tools-inner {
	display: flex;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
}

.tools-col {
	flex: 1 1 100%;
	padding: 0 5%;
}

.tools-col h2 {
	margin: 20px 0 0;
	color: var(--secondary-accent);
	font-size: 55px;
	font-weight: 900;
	line-height: 1.2em;
	text-align: center;
}

.tools-col-sub {
	margin: -10px 0 0;
	color: #f37262;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
}

.tool-card {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 45px;
	background: #fcfcfc;
	border: 1px solid #e2e2e2;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.tool-card + .tool-card {
	margin-top: 20px;
}

.tool-card:first-of-type {
	margin-top: 55px;
}

.tool-card:hover {
	background: var(--light-bg);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.31);
}

.tool-card-icon svg {
	width: 63px;
	height: 50px;
	fill: #61ce70;
}

.tool-card h3 {
	margin: 0 0 10px;
	color: #000;
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

.tool-card p {
	margin: 0;
	color: #7a7a7a;
}

@media (min-width: 768px) {
	.tools-col {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 767px) {
	.tools-section {
		padding: 50px 0;
	}

	.tools-col {
		padding: 0 20px;
	}

	.tools-col h2 {
		font-size: 38px;
	}

	.tool-card {
		flex-direction: column;
		padding: 30px;
	}
}

/* --------------------------------------------------------------------------
   Affiliate bootcamp
   -------------------------------------------------------------------------- */

.quote-band {
	max-width: 1140px;
	margin: 0 auto;
	padding: 64px 24px;
	text-align: center;
}

.quote-band .quote {
	margin: 0;
	font-size: 56px;
	font-style: italic;
}

.quote-band .quote-author {
	margin: 15px 0 0;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
}

@media (max-width: 960px) {
	.quote-band .quote { font-size: 40px; }
}

@media (max-width: 600px) {
	.quote-band {
		padding: 40px 24px;
	}

	.quote-band .quote { font-size: 32px; }
}

.bootcamp-hero {
	display: flex;
	align-items: center;
	min-height: 800px;
	padding: 80px 20px;
	background: #0e1937;
	color: #fff;
}

.bootcamp-hero-inner {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 20px;
}

.bootcamp-hero h1 {
	margin: 0 0 40px;
	color: #fff;
	font-size: 70px;
	line-height: 1.2;
}

.bootcamp-hero .disclaimer {
	margin: 0 0 30px;
	color: #fff;
}

@media (max-width: 960px) {
	.bootcamp-hero {
		min-height: 600px;
		padding: 40px 20px;
	}

	.bootcamp-hero h1 { font-size: 48px; }
}

@media (max-width: 600px) {
	.bootcamp-hero {
		min-height: 420px;
	}

	.bootcamp-hero h1 { font-size: 34px; }

	.bootcamp-hero .disclaimer { font-size: 17px; }
}

.btn-pill {
	display: inline-block;
	padding: 20px 40px;
	background: #f0a733;
	border-radius: 100px;
	color: #121212;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.btn-pill:hover {
	background: #35a6b1;
	color: #fff;
}

.btn-rounded {
	display: inline-block;
	padding: 10px 18px;
	font-size: 14px;
	background: #f0a733;
	border-radius: 22px;
	color: #080808;
	font-weight: 500;
}

.btn-rounded:hover {
	color: #080808;
	opacity: 0.85;
}

.features {
	padding: 80px 20px;
	background: #f0ede6;
}

.bootcamp-hero .features {
	margin-top: 40px;
}

.features-inner {
	max-width: 1170px;
	margin: 0 auto;
}

.feature-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.feature-row + .feature-row {
	margin-top: 40px;
}

.feature-card {
	flex: 1 1 calc(100% - 40px);
	margin: 20px;
	padding: 20px;
	background: var(--site-bg);
	border-radius: 6px;
	text-align: center;
}

.feature-card h3 {
	color: #080808;
	text-align: center;
}

.feature-card p {
	color: #080808;
}

@media (min-width: 960px) {
	.feature-card {
		flex: 0 0 calc(33.33% - 40px);
		max-width: calc(33.33% - 40px);
	}
}

@media (max-width: 960px) {
	.features {
		padding: 40px 20px;
	}

	.feature-row + .feature-row {
		margin-top: 0;
	}
}

.pricing {
	padding: 80px 20px;
}

.pricing-inner {
	max-width: 1170px;
	margin: 0 auto;
}

.pricing-head {
	padding: 20px;
	text-align: center;
}

.pricing-head h2 {
	margin: 0;
	color: #3f3d3d;
	font-size: 42px;
}

.pricing-head p {
	color: #3f3d3d;
}

.pricing-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.price-card {
	flex: 1 1 calc(100% - 40px);
	min-width: 0;
	margin: 20px;
	padding: 32px;
	background: #f6f4f1;
	border-radius: 20px;
}

.price-card h3 {
	color: #3f3d3d;
	text-align: center;
}

.price-card .price {
	margin: 0;
	color: #db705d;
	font-size: 73px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.price-card .price-sub {
	color: #3f3d3d;
	font-size: 15px;
	text-align: center;
}

.price-card hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px solid var(--site-bg);
}

.price-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.price-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	color: #3f3d3d;
	font-size: 16px;
	line-height: 1.5;
}

.price-list svg {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 5px;
	fill: #db705d;
}

@media (min-width: 960px) {
	.price-card {
		flex: 0 0 calc(33.33% - 40px);
		max-width: calc(33.33% - 40px);
	}
}

@media (max-width: 960px) {
	.pricing {
		padding: 40px 20px;
	}

	.price-card {
		flex-basis: calc(100% - 20px);
		margin: 10px;
		padding: 20px;
	}
}

/* The 73px price would blow past a phone viewport at its intrinsic width. */
@media (max-width: 600px) {
	.price-card .price {
		font-size: 52px;
	}
}

.signup-band {
	padding: 80px 20px;
	background: #0e1937;
	text-align: center;
}

.signup-band h2 {
	max-width: 900px;
	margin: 0 auto 25px;
	color: #fff;
	text-align: center;
}

.signup-band .btn-rounded {
	border-radius: 3px;
}

@media (max-width: 960px) {
	.signup-band {
		padding: 40px 20px;
	}
}

/* --------------------------------------------------------------------------
   Simple content pages
   -------------------------------------------------------------------------- */

.simple-band {
	max-width: 748px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}

.embed-slot {
	margin: 30px 0;
	padding: 30px;
	background: var(--light-bg);
	border: 1px dashed #cfcfcf;
	border-radius: 6px;
	text-align: center;
}

.embed-slot p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Quick links sidebar (affiliate page)
   -------------------------------------------------------------------------- */

.quick-links {
	max-width: 1170px;
	margin: 0 auto;
	padding: 40px 20px;
}

.quick-links h2 {
	font-size: var(--h3-size);
}

.quick-links ul {
	margin: 0;
	padding-left: 20px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
	padding: 14px 32px;
	background: var(--dark-bg);
	color: var(--text-dark-bg);
}

.site-footer .footer-inner {
	max-width: 2000px;
	margin: 0 auto;
}

.site-footer p {
	margin: 0;
	font-size: 14px;
}

.site-footer a {
	color: var(--text-dark-bg);
	text-decoration: underline;
}

.site-footer a:hover {
	color: var(--text-dark-bg);
	opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Scroll to top
   -------------------------------------------------------------------------- */

.scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	background: var(--primary-accent);
	border: 0;
	border-radius: 3px;
	color: var(--text-dark-bg);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top svg {
	width: 16px;
	height: 16px;
}

@media print {
	.site-header,
	.site-footer,
	.scroll-top {
		display: none;
	}
}
