@font-face {
	font-family: "Arimo";
	src: url("../fonts/Arimo-VariableFont_wght.ttf") format("truetype");
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--sandice-pink: #e30079;
	--sandice-blue: #579ddb;
	--sandice-black: #000;
	--sandice-charcoal: #191818;
	--sandice-text: #252525;
	--sandice-muted: #6e6e6e;
	--sandice-line: #e8e8e8;
	--sandice-light: #f6f6f6;
	--sandice-white: #fff;
	--site-width: 1180px;
	--shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--sandice-text);
	background: var(--sandice-white);
	font-family: "Arimo", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.site-shell {
	width: min(calc(100% - 40px), var(--site-width));
	margin-inline: auto;
}

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

.skip-link:focus {
	z-index: 99999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	margin: 0;
	clip: auto;
	color: #fff;
	background: var(--sandice-pink);
}

.topbar {
	color: #a0a0a0;
	background: var(--sandice-charcoal);
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 40px), 1140px);
	gap: 0;
	padding: 8px 12px;
}

.topbar p {
	display: flex;
	flex: 0 0 736px;
	align-items: center;
	height: 33px;
	margin: 0;
	font-size: 12px;
	line-height: 18px;
}

.social-links {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: flex-end;
	height: 33px;
	gap: 0;
}

.social-links a {
	display: grid;
	width: 25.4px;
	height: 25px;
	color: #a0a0a0;
	font-size: 22px;
	line-height: 25px;
	place-items: center;
	transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
	color: var(--sandice-blue);
	transform: translateY(-1px);
}

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 25vw);
	height: 81px;
	min-height: 81px;
	background: var(--sandice-black);
	transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.site-header__main {
	display: flex;
	align-items: center;
}

.site-header__inner {
	display: flex;
	align-items: center;
	height: 81px;
	min-height: 81px;
	padding: 8px;
}

.brand {
	flex: 0 0 auto;
	width: 230px;
	height: 65px;
	padding-block: 5px;
	margin-right: 16px;
}

.brand img {
	width: 230px;
	height: 55px;
	object-fit: contain;
}

.main-navigation {
	position: relative;
	top: -1.5px;
	margin-left: 0;
}

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

.main-navigation a {
	position: relative;
	display: block;
	padding: 8px 0 0;
	margin-inline: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-transform: uppercase;
}

.main-navigation a::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 3px;
	content: "";
	background: var(--sandice-pink);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.25s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.menu-toggle {
	display: none;
}

.header-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 81px;
	min-height: 81px;
}

.header-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 0.2s ease;
}

.header-actions a:hover,
.header-actions a:focus-visible {
	background: var(--sandice-charcoal);
}

.header-actions__blog {
	background: var(--sandice-blue);
}

.header-actions__phone {
	background: var(--sandice-pink);
}

.header-actions__phone i {
	font-size: 15px;
}

.blog-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 440px;
	overflow: hidden;
	color: #fff;
	background-color: #050505;
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.94) 5%, rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.16) 100%),
		var(--sandice-home-hero, url("../images/blog-hero.webp"));
	background-position: center;
	background-size: cover;
}

.blog-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 5px;
	content: "";
	background: linear-gradient(90deg, var(--sandice-pink) 0 55%, var(--sandice-blue) 55% 100%);
}

.blog-hero__content {
	position: relative;
	z-index: 1;
	padding-block: 72px;
}

.eyebrow {
	margin: 0 0 6px;
	color: var(--sandice-pink);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: lowercase;
}

.blog-hero h1,
.archive-hero h1,
.single-hero h1 {
	max-width: 820px;
	margin: 0;
	color: #fff;
	font-size: clamp(48px, 7vw, 88px);
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 0.96;
	text-transform: uppercase;
}

.blog-hero__content > p:last-child {
	max-width: 650px;
	margin: 26px 0 0;
	color: #d5d5d5;
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.5;
}

.section-space {
	padding-block: 76px 88px;
}

.blog-layout,
.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: clamp(40px, 5vw, 72px);
	align-items: start;
}

.section-heading {
	display: flex;
	align-items: end;
	gap: 28px;
	margin-bottom: 34px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 850;
	letter-spacing: -0.035em;
	line-height: 1;
	text-transform: uppercase;
}

.section-heading__line {
	flex: 1;
	height: 1px;
	margin-bottom: 8px;
	background: var(--sandice-line);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.post-card {
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #ededed;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.post-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 760 / 470;
	background: #111;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.035);
}

.post-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.2);
	font-size: 48px;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(227, 0, 121, 0.3), transparent 55%),
		linear-gradient(315deg, rgba(87, 157, 219, 0.3), transparent 55%),
		#171717;
}

.post-card__content {
	padding: 25px 26px 28px;
}

.post-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
	color: #8b8b8b;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.post-category {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px 5px;
	color: #fff;
	background: var(--sandice-pink);
	font-size: 11px;
	font-weight: 750;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.post-card h2 {
	margin: 0 0 13px;
	font-size: clamp(22px, 2.4vw, 29px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.post-card h2 a {
	transition: color 0.2s ease;
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
	color: var(--sandice-pink);
}

.post-card__content > p {
	margin: 0 0 20px;
	color: var(--sandice-muted);
	font-size: 15px;
	line-height: 1.55;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--sandice-pink);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.read-more i {
	font-size: 11px;
	transition: transform 0.2s ease;
}

.read-more:hover i,
.read-more:focus-visible i {
	transform: translateX(4px);
}

.blog-sidebar {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 24px;
}

.sidebar-block {
	padding: 27px;
	background: var(--sandice-light);
	border-top: 4px solid var(--sandice-blue);
}

.sidebar-block h2 {
	margin: 0 0 18px;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-transform: uppercase;
}

.search-form {
	display: flex;
	width: 100%;
}

.search-form label {
	flex: 1;
	min-width: 0;
}

.search-field {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid #d9d9d9;
	border-right: 0;
	border-radius: 0;
	outline: none;
	background: #fff;
	font-size: 14px;
}

.search-field:focus {
	border-color: var(--sandice-blue);
	box-shadow: inset 0 0 0 1px var(--sandice-blue);
}

.search-form button {
	flex: 0 0 48px;
	height: 48px;
	padding: 0;
	color: #fff;
	border: 0;
	background: var(--sandice-blue);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.search-form button:hover,
.search-form button:focus-visible {
	background: var(--sandice-pink);
}

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

.category-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	color: #8c8c8c;
	border-bottom: 1px solid #ddd;
	font-size: 13px;
}

.category-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.category-list a {
	color: var(--sandice-text);
	font-size: 15px;
	font-weight: 650;
}

.category-list a:hover,
.category-list a:focus-visible {
	color: var(--sandice-pink);
}

.sidebar-cta {
	color: #fff;
	border-top-color: var(--sandice-pink);
	background:
		linear-gradient(150deg, rgba(227, 0, 121, 0.98), rgba(157, 0, 84, 0.95)),
		#e30079;
}

.sidebar-cta .eyebrow {
	color: #fff;
	opacity: 0.8;
}

.sidebar-cta h2 {
	margin-top: 8px;
	font-size: 25px;
}

.sidebar-cta p {
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
}

.sidebar-cta a,
.button-primary {
	display: inline-block;
	margin-top: 8px;
	padding: 11px 15px 10px;
	color: var(--sandice-pink);
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.sidebar-cta a:hover,
.sidebar-cta a:focus-visible {
	color: #fff;
	background: #111;
}

.navigation.pagination {
	margin-top: 44px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid #ddd;
	font-size: 14px;
	font-weight: 700;
	place-items: center;
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus-visible {
	color: #fff;
	border-color: var(--sandice-pink);
	background: var(--sandice-pink);
}

.archive-hero,
.single-hero {
	position: relative;
	overflow: hidden;
	padding: 88px 0 76px;
	color: #fff;
	background:
		radial-gradient(circle at 80% -50%, rgba(87, 157, 219, 0.25), transparent 46%),
		radial-gradient(circle at 10% 150%, rgba(227, 0, 121, 0.3), transparent 42%),
		#090909;
}

.archive-hero::after,
.single-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	content: "";
	background: linear-gradient(90deg, var(--sandice-pink) 0 62%, var(--sandice-blue) 62%);
}

.archive-hero h1 {
	font-size: clamp(42px, 6vw, 72px);
}

.archive-description {
	max-width: 700px;
	margin-top: 20px;
	color: #bbb;
}

.single-hero {
	display: flex;
	align-items: center;
	min-height: 500px;
	padding-block: 82px 76px;
}

.single-hero__media {
	position: absolute;
	z-index: 0;
	inset: 0;
}

.single-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-hero--featured::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.8) 48%, rgba(0, 0, 0, 0.42) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 45%);
}

.single-hero::after {
	z-index: 3;
}

.single-hero__content {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 40px), 1180px);
}

.single-hero h1 {
	max-width: 1180px;
	margin-top: 20px;
	font-size: clamp(38px, 3.8vw, 56px);
	line-height: 1.02;
	text-transform: none;
}

.breadcrumbs-bar {
	padding-block: 13px;
	color: #747474;
	background: #f3f3f3;
	border-bottom: 1px solid #e7e7e7;
	font-size: 12px;
}

.breadcrumbs-bar ol {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 9px;
	margin-block: 0;
	list-style: none;
}

.breadcrumbs-bar li {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
}

.breadcrumbs-bar li:not(:last-child)::after {
	color: var(--sandice-pink);
	content: "/";
	font-weight: 800;
}

.breadcrumbs-bar a {
	font-weight: 700;
	transition: color 0.2s ease;
}

.breadcrumbs-bar a:hover,
.breadcrumbs-bar a:focus-visible {
	color: var(--sandice-pink);
}

.breadcrumbs-bar li:last-child {
	overflow: hidden;
	color: #999;
}

.breadcrumbs-bar li:last-child span {
	overflow: hidden;
	text-overflow: ellipsis;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 25px;
	color: #bcbcbc;
	font-size: 14px;
}

.single-meta i {
	margin-right: 6px;
	color: var(--sandice-blue);
}

.single-layout {
	padding-block: 72px 78px;
}

.entry-content {
	min-width: 0;
	color: #3f3f3f;
	font-size: 18px;
	line-height: 1.8;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > p:first-of-type {
	padding-left: 24px;
	color: #272727;
	border-left: 4px solid var(--sandice-blue);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.7;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: #181818;
	font-weight: 800;
	line-height: 1.15;
}

.entry-content h2 {
	margin: 2em 0 0.65em;
	font-size: clamp(29px, 4vw, 40px);
	letter-spacing: -0.03em;
}

.entry-content h3 {
	margin: 1.7em 0 0.55em;
	font-size: 26px;
}

.entry-content a:not(.button-primary) {
	color: var(--sandice-pink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	padding: 8px 0 8px 28px;
	margin: 2em 0;
	color: #202020;
	border-left: 5px solid var(--sandice-pink);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.35em;
}

.entry-content li {
	margin-bottom: 0.45em;
}

.entry-content img {
	margin-block: 2em;
}

.entry-content figcaption {
	margin-top: -1.6em;
	color: #7a7a7a;
	font-size: 13px;
	text-align: center;
}

.ai-summary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 0 0 24px;
	margin: 0 0 28px;
	border-bottom: 1px solid var(--sandice-line);
}

.entry-content .ai-summary__title {
	margin: 0;
	color: #202020;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: uppercase;
}

.ai-summary__links {
	display: flex;
	flex-wrap: nowrap;
	gap: 9px;
}

.entry-content a.ai-summary__link {
	--ai-color: var(--sandice-blue);
	--ai-border: rgba(0, 121, 194, 0.35);
	display: inline-flex;
	height: 38px;
	align-items: center;
	gap: 8px;
	padding: 0 13px;
	color: var(--ai-color);
	border: 1px solid var(--ai-border);
	border-radius: 3px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.entry-content a.ai-summary__link--chatgpt {
	--ai-color: #111;
	--ai-border: rgba(17, 17, 17, 0.3);
}

.entry-content a.ai-summary__link--claude {
	--ai-color: #d97757;
	--ai-border: rgba(217, 119, 87, 0.35);
}

.entry-content a.ai-summary__link--perplexity {
	--ai-color: #20808d;
	--ai-border: rgba(32, 128, 141, 0.35);
}

.entry-content a.ai-summary__link--google {
	--ai-color: #4285f4;
	--ai-border: rgba(66, 133, 244, 0.35);
}

.entry-content a.ai-summary__link--grok {
	--ai-color: #111;
	--ai-border: rgba(17, 17, 17, 0.3);
}

.ai-summary__icon,
.ai-summary__icon svg {
	display: block;
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
}

.ai-summary__icon svg {
	fill: currentColor;
}

.entry-content a.ai-summary__link:hover,
.entry-content a.ai-summary__link:focus-visible {
	color: #fff;
	border-color: var(--ai-color);
	background: var(--ai-color);
}

.ai-summary__link--google:hover .ai-summary__icon svg,
.ai-summary__link--google:focus-visible .ai-summary__icon svg {
	padding: 2px;
	border-radius: 50%;
	background: #fff;
}

.sandice-lightbox-trigger {
	cursor: zoom-in;
}

img.sandice-lightbox-trigger:focus-visible,
.sandice-lightbox-trigger:focus-visible img {
	outline: 3px solid var(--sandice-blue);
	outline-offset: 4px;
}

body.lightbox-is-open {
	overflow: hidden;
}

.sandice-lightbox {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	padding: 56px 80px 48px;
	color: #fff;
	background: rgba(0, 0, 0, 0.94);
	place-items: center;
}

.sandice-lightbox[hidden] {
	display: none;
}

.sandice-lightbox__figure {
	display: flex;
	max-width: min(1280px, 100%);
	max-height: 100%;
	margin: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sandice-lightbox__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 150px);
	object-fit: contain;
}

.sandice-lightbox__caption {
	max-width: 800px;
	margin-top: 15px;
	color: #e2e2e2;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.sandice-lightbox button {
	color: #fff;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.sandice-lightbox button:focus-visible {
	outline: 2px solid var(--sandice-blue);
	outline-offset: 4px;
}

.sandice-lightbox__close {
	position: absolute;
	top: 16px;
	right: 22px;
	width: 48px;
	height: 48px;
	font-size: 42px;
	font-weight: 300;
	line-height: 1;
}

.sandice-lightbox__arrow {
	position: absolute;
	top: 50%;
	width: 58px;
	height: 72px;
	font-size: 62px;
	font-weight: 200;
	line-height: 1;
	transform: translateY(-50%);
}

.sandice-lightbox__arrow--previous {
	left: 12px;
}

.sandice-lightbox__arrow--next {
	right: 12px;
}

.sandice-lightbox__counter {
	position: absolute;
	bottom: 18px;
	left: 50%;
	color: #cfcfcf;
	font-size: 13px;
	letter-spacing: 0.08em;
	transform: translateX(-50%);
}

@media (max-width: 700px) {
	.sandice-lightbox {
		padding: 58px 16px 52px;
	}

	.sandice-lightbox__image {
		max-height: calc(100vh - 160px);
	}

	.sandice-lightbox__arrow {
		top: auto;
		bottom: 4px;
		width: 52px;
		height: 48px;
		font-size: 48px;
		transform: none;
	}

	.sandice-lightbox__arrow--previous {
		left: 14px;
	}

	.sandice-lightbox__arrow--next {
		right: 14px;
	}
}

.post-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 28px;
	margin-top: 44px;
	border-top: 1px solid var(--sandice-line);
}

.post-share--top {
	padding: 0 0 24px;
	margin: 0 0 36px;
	border-top: 0;
	border-bottom: 1px solid var(--sandice-line);
}

.post-share__title {
	color: #202020;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.post-share__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.post-share__links a,
.post-share__links button {
	display: inline-flex;
	height: 38px;
	align-items: center;
	gap: 8px;
	padding: 0 13px;
	color: #404040;
	border: 1px solid #dedede;
	background: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.post-share__links a:hover,
.post-share__links a:focus-visible,
.post-share__links button:hover,
.post-share__links button:focus-visible {
	color: #fff !important;
	border-color: var(--sandice-pink);
	background: var(--sandice-pink);
}

.entry-content .post-share__links .post-share__whatsapp {
	color: #198754;
	border-color: rgba(25, 135, 84, 0.35);
}

.post-share__links .post-share__whatsapp:hover,
.post-share__links .post-share__whatsapp:focus-visible,
.post-share__links .post-share__whatsapp:active {
	color: #fff !important;
	border-color: #198754;
	background: #198754;
}

.entry-content .post-share__links .post-share__facebook {
	color: #1877f2;
	border-color: rgba(24, 119, 242, 0.35);
}

.post-share__links .post-share__facebook:hover,
.post-share__links .post-share__facebook:focus-visible,
.post-share__links .post-share__facebook:active {
	color: #fff !important;
	border-color: #1877f2;
	background: #1877f2;
}

.entry-content .post-share__links .post-share__linkedin {
	color: #0a66c2;
	border-color: rgba(10, 102, 194, 0.35);
}

.post-share__links .post-share__linkedin:hover,
.post-share__links .post-share__linkedin:focus-visible,
.post-share__links .post-share__linkedin:active {
	color: #fff !important;
	border-color: #0a66c2;
	background: #0a66c2;
}

.post-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 28px;
	margin-top: 44px;
	border-top: 1px solid var(--sandice-line);
	font-size: 13px;
}

.post-share + .post-tags {
	padding-top: 0;
	margin-top: 20px;
	border-top: 0;
}

.post-tags span {
	font-weight: 800;
	text-transform: uppercase;
}

.post-tags a {
	padding: 5px 10px;
	color: #555 !important;
	background: var(--sandice-light);
	text-decoration: none !important;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	padding: 30px 0 72px;
	border-top: 1px solid var(--sandice-line);
}

.post-navigation > div {
	display: grid;
	gap: 5px;
}

.post-navigation__next {
	text-align: right;
}

.post-navigation span {
	color: #999;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.post-navigation a {
	font-size: 17px;
	font-weight: 750;
}

.related-posts {
	padding-block: 68px 78px;
	background: var(--sandice-light);
	border-top: 1px solid #ececec;
}

.related-posts__heading {
	margin-bottom: 30px;
	text-align: center;
}

.related-posts__heading p {
	margin: 0 0 8px;
	color: var(--sandice-pink);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.related-posts__heading h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 850;
	letter-spacing: -0.035em;
	line-height: 1;
	text-transform: uppercase;
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
}

.related-posts__grid--2 {
	grid-template-columns: repeat(2, minmax(0, 390px));
	justify-content: center;
}

.related-posts__grid--1 {
	grid-template-columns: minmax(0, 390px);
	justify-content: center;
}

.related-posts .post-card h2 {
	font-size: clamp(20px, 2vw, 25px);
}

.related-posts .post-card__content > p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.whatsapp-float {
	position: fixed;
	z-index: 999;
	right: max(15px, env(safe-area-inset-right));
	bottom: max(10px, env(safe-area-inset-bottom));
	width: 94px;
	height: 92px;
}

.whatsapp-float[hidden] {
	display: none;
}

.whatsapp-float__link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: grid;
	width: 76px;
	height: 76px;
	color: #fff;
	border-radius: 50%;
	background: #198754;
	box-shadow: 0 7px 22px rgba(0, 0, 0, 0.2);
	font-size: 39px;
	place-items: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-float__link:hover,
.whatsapp-float__link:focus-visible {
	color: #fff;
	background: #147448;
	transform: translateY(-3px);
}

.whatsapp-float__close {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	display: grid;
	width: 25px;
	height: 25px;
	padding: 0;
	color: #198754;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	place-items: center;
}

.whatsapp-float__close:hover,
.whatsapp-float__close:focus-visible {
	color: var(--sandice-pink);
}

.cookie-banner {
	position: fixed;
	z-index: 1100;
	right: 22px;
	bottom: 22px;
	left: 22px;
	padding: 18px 20px;
	color: #fff;
	background: #151515;
	border-top: 3px solid var(--sandice-pink);
	box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__content {
	display: flex;
	max-width: 1180px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-inline: auto;
}

.cookie-banner p {
	max-width: 820px;
	margin: 0;
	color: #e2e2e2;
	font-size: 14px;
	line-height: 1.55;
}

.cookie-banner p a {
	margin-left: 5px;
	color: #fff;
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cookie-banner__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 9px;
}

.cookie-banner__actions button {
	min-width: 105px;
	height: 42px;
	padding: 0 17px;
	border: 1px solid #666;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.cookie-banner__actions .cookie-banner__confirm {
	border-color: var(--sandice-pink);
	background: var(--sandice-pink);
}

.cookie-banner__confirm:hover,
.cookie-banner__confirm:focus-visible {
	border-color: #b90062;
	background: #b90062;
}

.no-results {
	padding: 60px 30px;
	text-align: center;
	background: var(--sandice-light);
}

.no-results > i {
	color: var(--sandice-blue);
	font-size: 48px;
}

.no-results h2 {
	margin: 18px 0 8px;
	font-size: 30px;
	text-transform: uppercase;
}

.no-results p {
	color: var(--sandice-muted);
}

.no-results .search-form {
	max-width: 450px;
	margin: 25px auto 0;
}

.page-content {
	max-width: 900px;
}

.clients-section {
	padding-block: 48px;
	overflow: hidden;
	background: #fff;
}

.clients-shell {
	width: min(calc(100% - 40px), 1140px);
	margin-inline: auto;
}

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

.clients-heading p {
	margin: 0 0 8px;
	color: var(--sandice-blue);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.clients-heading h2 {
	margin: 0;
	color: #000;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-transform: uppercase;
}

.clients-carousel {
	position: relative;
	margin-top: 24px;
	padding-inline: 28px;
}

.clients-viewport {
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.clients-viewport::-webkit-scrollbar {
	display: none;
}

.clients-list {
	display: flex;
	align-items: center;
	width: max-content;
	min-width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.client-logo {
	display: grid;
	flex: 0 0 180px;
	height: 80px;
	padding-inline: 15px;
	scroll-snap-align: start;
	place-items: center;
}

.client-logo img {
	width: auto;
	max-width: 150px;
	height: auto;
	max-height: 80px;
	filter: grayscale(1);
	transition: filter 0.35s ease, transform 0.35s ease;
}

.client-logo img:hover,
.client-logo img:focus-visible {
	filter: grayscale(0);
	transform: scale(1.03);
}

.clients-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: grid;
	width: 28px;
	height: 48px;
	padding: 0;
	color: #000;
	border: 0;
	background: #fff;
	cursor: pointer;
	transform: translateY(-50%);
	place-items: center;
}

.clients-arrow--previous {
	left: 0;
}

.clients-arrow--next {
	right: 0;
}

.clients-arrow:hover,
.clients-arrow:focus-visible {
	color: var(--sandice-pink);
}

.error-page {
	display: grid;
	min-height: 620px;
	color: #fff;
	background:
		radial-gradient(circle at 65% 20%, rgba(87, 157, 219, 0.22), transparent 35%),
		#080808;
	place-items: center;
}

.error-page__content {
	padding-block: 80px;
	text-align: center;
}

.error-code {
	margin: 0;
	color: rgba(255, 255, 255, 0.08);
	font-size: clamp(130px, 25vw, 270px);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.72;
}

.error-page h1 {
	margin: 10px 0;
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1;
	text-transform: uppercase;
}

.error-page__content > p:not(.error-code, .eyebrow) {
	color: #aaa;
}

.error-page .button-primary {
	margin-top: 20px;
	color: #fff;
	background: var(--sandice-pink);
}

.site-footer {
	padding: 20px 0;
	color: #fff;
	background-color: #111;
	background-image: url("../images/bg-rodape.webp");
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	width: min(calc(100% - 40px), 1140px);
	gap: 0;
	margin-block: 48px;
}

.footer-grid > * {
	padding-inline: 12px;
}

.footer-logo {
	width: 100%;
}

.footer-brand {
	display: flex;
	flex-direction: column;
}

.footer-brand > p {
	margin: 16px 0;
	font-size: 20px;
	line-height: 30px;
}

.footer-contact > p {
	margin: 0;
	font-size: 20px;
	line-height: 1.5;
}

.fsc-logo {
	width: 50%;
	margin-top: 16px;
}

.site-footer h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.footer-contact,
.footer-navigation {
	padding-top: 24px;
}

.footer-contact h2:nth-of-type(2) {
	margin-block: 24px;
}

.footer-navigation h2 {
	margin-bottom: 0;
}

.footer-contact ul,
.footer-navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-contact li {
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 1.5;
}

.footer-contact a,
.footer-navigation a {
	transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-navigation a:hover,
.footer-navigation a:focus-visible {
	color: var(--sandice-blue);
}

.footer-contact i {
	width: 18px;
	margin-right: 3px;
}

.footer-navigation__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.footer-navigation li {
	margin-bottom: 0;
	font-size: 20px;
	line-height: 1.5;
}

.legal-bar {
	color: #fff;
	background: var(--sandice-pink);
}

.legal-bar__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	width: min(calc(100% - 40px), 1140px);
	gap: 24px;
	padding: 8px 12px;
}

.legal-bar p {
	margin: 0;
	font-size: 12px;
	line-height: 13px;
}

.legal-bar a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.legal-bar p:last-child {
	text-align: right;
}

@media (max-width: 1160px) {
	.site-header {
		grid-template-columns: minmax(0, 1fr) 25%;
	}

	.site-header__inner {
		width: 100%;
		margin: 0;
	}

	.main-navigation {
		margin-left: 0;
	}
}

@media (min-width: 1200px) {
	.site-header__inner {
		width: 88.8889%;
		margin-right: 0;
		margin-left: 11.1111%;
	}
}

@media (min-width: 1400px) {
	.topbar__inner,
	.clients-shell,
	.footer-grid,
	.legal-bar__inner {
		width: min(calc(100% - 40px), 1320px);
	}

	.topbar p {
		flex-basis: 856px;
	}
}

@media (max-width: 991px) {
	.site-header {
		display: block;
		height: auto;
	}

	.site-header__inner {
		justify-content: space-between;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px;
		color: #fff;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle__label {
		font-size: 12px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.menu-toggle__icon,
	.menu-toggle__icon::before,
	.menu-toggle__icon::after {
		display: block;
		width: 26px;
		height: 2px;
		background: #fff;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.menu-toggle__icon {
		position: relative;
	}

	.menu-toggle__icon::before,
	.menu-toggle__icon::after {
		position: absolute;
		left: 0;
		content: "";
	}

	.menu-toggle__icon::before {
		top: -8px;
	}

	.menu-toggle__icon::after {
		top: 8px;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
		background: transparent;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
		top: 0;
		transform: rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
		top: 0;
		transform: rotate(-45deg);
	}

	.main-navigation {
		position: fixed;
		z-index: 1001;
		top: 111px;
		right: 0;
		bottom: 0;
		width: min(88vw, 390px);
		padding: 24px;
		margin: 0;
		top: auto;
		background: #111;
		box-shadow: -20px 0 45px rgba(0, 0, 0, 0.28);
		transform: translateX(105%);
		visibility: hidden;
		transition: transform 0.28s ease, visibility 0.28s ease;
	}

	.main-navigation.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.main-navigation ul {
		display: block;
	}

	.main-navigation li {
		border-bottom: 1px solid #2a2a2a;
	}

	.main-navigation a {
		padding: 18px 4px;
		margin: 0;
		font-size: 15px;
	}

	.main-navigation a::after {
		bottom: 9px;
		width: 40px;
	}

	.header-actions {
		height: 58px;
		min-height: 58px;
	}

	.header-actions a {
		padding: 9px 14px;
	}

	.blog-layout,
	.single-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.related-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sidebar-cta {
		grid-column: 1 / -1;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-navigation {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.site-shell {
		width: min(calc(100% - 30px), var(--site-width));
	}

	.topbar__inner {
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		padding-block: 7px;
		text-align: center;
	}

	.topbar p {
		flex-basis: auto;
		height: auto;
	}

	.social-links {
		flex: 0 0 auto;
	}

	.breadcrumbs-bar {
		font-size: 11px;
	}

	.site-header {
		top: 0;
	}

	.site-header__inner {
		min-height: 66px;
	}

	.brand img {
		max-height: 48px;
	}

	.main-navigation {
		top: 124px;
	}

	.header-actions {
		min-height: 58px;
	}

	.header-actions a {
		font-size: 11px;
	}

	.blog-hero {
		min-height: 390px;
		background-position: 62% center;
	}

	.blog-hero h1,
	.archive-hero h1,
	.single-hero h1 {
		font-size: clamp(39px, 13vw, 58px);
	}

	.blog-hero__content > p:last-child {
		font-size: 16px;
	}

	.section-space {
		padding-block: 55px 64px;
	}

	.clients-section {
		padding-block: 42px;
	}

	.clients-heading p {
		font-size: 18px;
	}

	.clients-heading h2 {
		font-size: 32px;
	}

	.clients-carousel {
		padding-inline: 0;
	}

	.clients-arrow {
		display: none;
	}

	.client-logo {
		flex-basis: 150px;
	}

	.section-heading {
		margin-bottom: 27px;
	}

	.section-heading h2 {
		font-size: 34px;
	}

	.section-heading__line {
		display: none;
	}

	.post-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.post-card__content {
		padding: 22px 21px 24px;
	}

	.blog-sidebar {
		grid-template-columns: minmax(0, 1fr);
	}

	.sidebar-cta {
		grid-column: auto;
	}

	.archive-hero,
	.single-hero {
		padding-block: 60px 56px;
	}

	.single-hero {
		min-height: 450px;
	}

	.single-layout {
		padding-block: 52px 60px;
	}

	.entry-content {
		font-size: 17px;
	}

	.entry-content > p:first-of-type {
		padding-left: 18px;
		font-size: 19px;
	}

	.ai-summary {
		align-items: flex-start;
		gap: 12px;
		padding-bottom: 24px;
	}

	.entry-content .ai-summary__title {
		width: 100%;
	}

	.ai-summary__links {
		display: flex;
		width: 100%;
		flex-wrap: nowrap;
		overflow: visible;
	}

	.entry-content a.ai-summary__link {
		width: 40px;
		flex: 0 0 auto;
		justify-content: center;
		padding: 0;
	}

	.ai-summary__name {
		display: none;
	}

	.post-navigation {
		grid-template-columns: minmax(0, 1fr);
	}

	.post-navigation__next {
		text-align: left;
	}

	.related-posts {
		padding-block: 52px 60px;
	}

	.related-posts__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.post-share__links span {
		display: none;
	}

	.post-share__links a,
	.post-share__links button {
		width: 40px;
		padding: 0;
		justify-content: center;
		font-size: 16px;
	}

	.whatsapp-float {
		right: max(10px, env(safe-area-inset-right));
		bottom: max(8px, env(safe-area-inset-bottom));
		transform: scale(0.9);
		transform-origin: right bottom;
	}

	.cookie-banner {
		right: 10px;
		bottom: 10px;
		left: 10px;
		padding: 18px;
	}

	.cookie-banner__content {
		align-items: stretch;
		flex-direction: column;
		gap: 15px;
	}

	.cookie-banner__actions button {
		flex: 1;
	}

	.footer-grid,
	.footer-navigation__columns {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-grid {
		margin-block: 28px;
	}

	.footer-grid > * {
		padding-inline: 0;
	}

	.footer-contact,
	.footer-navigation {
		padding-top: 24px;
	}

	.footer-logo {
		width: min(72%, 280px);
	}

	.fsc-logo {
		width: 110px;
	}

	.footer-navigation {
		grid-column: auto;
	}

	.legal-bar__inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		padding-block: 12px;
		text-align: center;
	}

	.legal-bar p:last-child {
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
