@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
	--app-surface-1: rgba(255, 255, 255, 0.78);
	--app-surface-2: rgba(255, 255, 255, 0.9);
	--app-surface-3: rgba(245, 248, 255, 0.88);
	--app-border: rgba(15, 23, 42, 0.08);
	--app-border-strong: rgba(15, 23, 42, 0.14);
	--app-text: #172033;
	--app-muted: #5f6c86;
	--app-accent: #0f766e;
	--app-accent-2: #2563eb;
	--app-accent-3: #14b8a6;
	--app-shadow-sm: 0 14px 32px rgba(15, 23, 42, 0.08);
	--app-shadow-md: 0 20px 60px rgba(15, 23, 42, 0.12);
	--app-shadow-lg: 0 30px 80px rgba(37, 99, 235, 0.18);
	--theme-font-family: 'Manrope', 'Segoe UI', sans-serif;
	--theme-heading-font-family: 'Sora', 'Aptos', sans-serif;
	--theme-link-initial-color: var(--app-text);
	--theme-link-hover-color: var(--app-accent-2);
	--theme-button-background-initial-color: linear-gradient(135deg, var(--app-accent), var(--app-accent-2));
	--theme-button-background-hover-color: linear-gradient(135deg, #0b5f59, #1d4ed8);
	--theme-button-text-initial-color: #ffffff;
	--theme-button-text-hover-color: #ffffff;
	--theme-form-field-border-initial-color: rgba(148, 163, 184, 0.24);
	--theme-form-field-border-focus-color: rgba(37, 99, 235, 0.45);
}

body {
	color: var(--app-text);
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 30%),
		radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 28%),
		linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
	background-attachment: fixed;
}

body,
input,
textarea,
select,
button {
	font-family: var(--theme-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
[class*='entry-title'],
.page-title {
	font-family: var(--theme-heading-font-family);
	letter-spacing: -0.03em;
}

body:before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
	z-index: -1;
}

[data-header*='type'] [data-row],
.ct-sticky-container [data-row],
#offcanvas {
	backdrop-filter: saturate(160%) blur(18px);
	-webkit-backdrop-filter: saturate(160%) blur(18px);
}

[data-header*='type'] [data-row] {
	background: rgba(255, 255, 255, 0.74);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.ct-container,
[data-container='boxed'] {
	position: relative;
}

.hero-section[data-type='type-1'],
.page-title[data-type='type-1'],
.ct-page-title {
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(37, 99, 235, 0.92)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
	border-radius: 0 0 28px 28px;
	box-shadow: var(--app-shadow-lg);
	overflow: hidden;
}

.hero-section[data-type='type-1'] .ct-container,
.page-title[data-type='type-1'] .ct-container,
.ct-page-title .ct-container {
	position: relative;
	z-index: 1;
}

.hero-section[data-type='type-1']:before,
.page-title[data-type='type-1']:before,
.ct-page-title:before {
	content: '';
	position: absolute;
	inset: auto -10% -40% auto;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 68%);
}

.entry-card,
.ct-related-posts .related-entry-card,
.widget,
.ct-sidebar .ct-widget,
.wp-block-group:is(.has-background, .is-style-section-1, .is-style-section-2),
.woocommerce ul.products li.product,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .summary,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .col2-set,
.author-box,
.ct-comments,
.ct-share-box,
.ct-post-nav,
.ct-newsletter-subscribe {
	background: var(--app-surface-1);
	border: 1px solid var(--app-border);
	border-radius: 24px;
	box-shadow: var(--app-shadow-sm);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.entry-card,
.woocommerce ul.products li.product,
.widget,
.ct-sidebar .ct-widget,
.ct-related-posts .related-entry-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.entry-card:hover,
.woocommerce ul.products li.product:hover,
.widget:hover,
.ct-sidebar .ct-widget:hover,
.ct-related-posts .related-entry-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--app-shadow-md);
	border-color: rgba(37, 99, 235, 0.16);
}

.entry-card .ct-image-container,
.woocommerce ul.products li.product .ct-image-container,
.woocommerce ul.products li.product a img {
	border-radius: 20px;
	overflow: hidden;
}

.entry-card .entry-meta,
.entry-card .entry-excerpt,
.widget,
.ct-sidebar .ct-widget,
.ct-comments,
.author-box,
.ct-share-box {
	color: var(--app-muted);
}

.entry-card .entry-title,
.entry-card .entry-title a,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.widget-title,
.ct-module-title {
	color: var(--app-text);
}

.ct-sidebar .ct-widget,
.widget,
.author-box,
.ct-comments,
.ct-share-box,
.ct-post-nav,
.woocommerce div.product .summary,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .col2-set {
	padding: clamp(1.25rem, 1.8vw, 2rem);
}

.ct-widget > * + *,
.widget > * + * {
	margin-top: 0.9rem;
}

button,
.button,
[type='button'],
[type='submit'],
.wp-element-button,
.ct-button,
.added_to_cart,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border: 0;
	border-radius: 999px;
	padding: 0.95rem 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

button:hover,
.button:hover,
[type='button']:hover,
[type='submit']:hover,
.wp-element-button:hover,
.ct-button:hover,
.added_to_cart:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(15, 118, 110, 0.24);
	filter: saturate(1.08);
}

input:not([type='checkbox']):not([type='radio']):not([type='range']),
textarea,
select,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
	min-height: 54px;
	border-radius: 18px;
	background: var(--app-surface-2);
	border-color: var(--theme-form-field-border-initial-color);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

input:not([type='checkbox']):not([type='radio']):not([type='range']):focus,
textarea:focus,
select:focus {
	box-shadow:
		0 0 0 4px rgba(37, 99, 235, 0.12),
		0 12px 24px rgba(37, 99, 235, 0.08);
}

table,
pre,
code,
blockquote,
.wp-block-quote,
.wp-block-code,
.wp-block-table {
	border-radius: 22px;
}

blockquote,
.wp-block-quote,
pre,
.wp-block-code,
.wp-block-table {
	background: var(--app-surface-3);
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow: var(--app-shadow-sm);
}

.ct-footer,
[data-footer*='type'] {
	position: relative;
	margin-top: 3rem;
}

.ct-footer [data-row] {
	background: rgba(19, 28, 48, 0.9);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.ct-footer,
.ct-footer a,
.ct-footer .widget-title,
.ct-footer .ct-footer-copyright {
	color: rgba(240, 244, 255, 0.9);
}

.ct-footer a:hover {
	color: #8be9df;
}

.ct-pagination a,
.ct-pagination span,
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	border-radius: 16px;
	background: var(--app-surface-2);
	border: 1px solid var(--app-border);
	box-shadow: var(--app-shadow-sm);
}

.ct-pagination .current,
.page-numbers.current {
	background: linear-gradient(135deg, var(--app-accent), var(--app-accent-2));
	color: #fff;
	border-color: transparent;
}

.ct-breadcrumbs,
.entry-tags a,
.tagcloud a,
.wp-block-tag-cloud a,
.ct-post-meta .ct-label {
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(15, 23, 42, 0.08);
}

.entry-tags a,
.tagcloud a,
.wp-block-tag-cloud a {
	padding-inline: 0.9rem;
}

.site-branding-container img,
.custom-logo {
	filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
}

.ct-menu > li > a,
[data-id='menu'] > ul > li > a {
	position: relative;
	border-radius: 999px;
	padding-inline: 0.95rem;
	padding-block: 0.65rem;
}

.ct-menu > li.current-menu-item > a,
.ct-menu > li > a:hover,
[data-id='menu'] > ul > li.current-menu-item > a,
[data-id='menu'] > ul > li > a:hover {
	background: rgba(37, 99, 235, 0.08);
	color: var(--app-accent-2);
}

.search-form,
.ct-search-box,
.ct-header-search {
	--theme-form-field-background-initial-color: rgba(255, 255, 255, 0.82);
}

.ct-drawer-canvas,
#offcanvas {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 245, 249, 0.95)),
		linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.08));
}

.ct-drawer-canvas .ct-menu a,
#offcanvas .ct-menu a {
	border-radius: 16px;
}

.ct-drawer-canvas .ct-menu a:hover,
#offcanvas .ct-menu a:hover {
	background: rgba(37, 99, 235, 0.08);
}

.woocommerce span.onsale,
.wc-block-components-product-badge {
	border-radius: 999px;
	padding: 0.45rem 0.8rem;
	background: linear-gradient(135deg, #f97316, #ef4444);
	box-shadow: 0 12px 24px rgba(239, 68, 68, 0.2);
}

.woocommerce div.product div.images img,
.wp-block-image img,
.ct-image-container img {
	border-radius: 24px;
}

body.single-post article,
body.page article,
body.single article {
	position: relative;
}

body.single-post article > .entry-content,
body.page article > .entry-content,
body.single article > .entry-content {
	position: relative;
	max-width: min(860px, calc(100vw - 2rem));
	margin-inline: auto;
	padding: clamp(1.5rem, 2vw, 2rem);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.84));
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 30px;
	box-shadow:
		0 24px 80px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

body.single-post article > .entry-content:before,
body.page article > .entry-content:before,
body.single article > .entry-content:before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 140px;
	border-radius: 30px 30px 0 0;
	background:
		radial-gradient(circle at top left, rgba(20, 184, 166, 0.18), transparent 46%),
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 42%);
	pointer-events: none;
}

body.single-post article > .entry-content > *,
body.page article > .entry-content > *,
body.single article > .entry-content > * {
	position: relative;
	z-index: 1;
}

body.single-post .hero-section[data-type='type-1'] .entry-meta,
body.single-post .page-title[data-type='type-1'] .entry-meta,
body.page .hero-section[data-type='type-1'] .entry-meta,
body.page .page-title[data-type='type-1'] .entry-meta {
	margin-top: 1rem;
}

body.single-post .entry-content,
body.page .entry-content,
body.single .entry-content {
	font-size: clamp(1rem, 0.92rem + 0.22vw, 1.08rem);
	line-height: 1.9;
	color: #31405d;
}

body.single-post .entry-content > * + *,
body.page .entry-content > * + *,
body.single .entry-content > * + * {
	margin-block-start: clamp(1.05rem, 1rem + 0.7vw, 1.6rem);
}

body.single-post .entry-content h2,
body.page .entry-content h2,
body.single .entry-content h2 {
	font-size: clamp(1.8rem, 1.45rem + 1vw, 2.5rem);
	line-height: 1.08;
	margin-top: clamp(2rem, 1.4rem + 1.2vw, 3.3rem);
	color: #142033;
}

body.single-post .entry-content h3,
body.page .entry-content h3,
body.single .entry-content h3 {
	font-size: clamp(1.35rem, 1.15rem + 0.65vw, 1.8rem);
	line-height: 1.18;
	margin-top: clamp(1.7rem, 1.25rem + 0.8vw, 2.5rem);
	color: #17263d;
}

body.single-post .entry-content p,
body.single-post .entry-content li,
body.page .entry-content p,
body.page .entry-content li,
body.single .entry-content p,
body.single .entry-content li {
	max-width: 70ch;
}

body.single-post .entry-content > p:first-of-type,
body.page .entry-content > p:first-of-type,
body.single .entry-content > p:first-of-type {
	font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
	line-height: 1.85;
	color: #4d5f7b;
}

body.single-post .entry-content a,
body.page .entry-content a,
body.single .entry-content a {
	text-decoration-color: rgba(37, 99, 235, 0.25);
	text-underline-offset: 0.2em;
	text-decoration-thickness: 0.08em;
}

body.single-post .entry-content hr,
body.page .entry-content hr,
body.single .entry-content hr {
	height: 1px;
	border: 0;
	background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.4), transparent);
	margin-block: clamp(1.8rem, 1.4rem + 1vw, 2.8rem);
}

body.single-post .entry-content ul,
body.single-post .entry-content ol,
body.page .entry-content ul,
body.page .entry-content ol,
body.single .entry-content ul,
body.single .entry-content ol {
	padding-left: 1.2rem;
}

body.single-post .entry-content li::marker,
body.page .entry-content li::marker,
body.single .entry-content li::marker {
	color: var(--app-accent-2);
}

body.single-post .entry-content blockquote,
body.single-post .entry-content .wp-block-quote,
body.page .entry-content blockquote,
body.page .entry-content .wp-block-quote,
body.single .entry-content blockquote,
body.single .entry-content .wp-block-quote {
	position: relative;
	padding: 1.4rem 1.5rem 1.4rem 1.75rem;
	border-left: 0;
	background:
		linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.06)),
		var(--app-surface-3);
}

body.single-post .entry-content blockquote:before,
body.single-post .entry-content .wp-block-quote:before,
body.page .entry-content blockquote:before,
body.page .entry-content .wp-block-quote:before,
body.single .entry-content blockquote:before,
body.single .entry-content .wp-block-quote:before {
	content: '';
	position: absolute;
	left: 0.9rem;
	top: 1rem;
	bottom: 1rem;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--app-accent-3), var(--app-accent-2));
}

body.single-post .entry-content .wp-block-group,
body.single-post .entry-content .wp-block-cover,
body.single-post .entry-content .wp-block-media-text,
body.single-post .entry-content .wp-block-columns,
body.page .entry-content .wp-block-group,
body.page .entry-content .wp-block-cover,
body.page .entry-content .wp-block-media-text,
body.page .entry-content .wp-block-columns,
body.single .entry-content .wp-block-group,
body.single .entry-content .wp-block-cover,
body.single .entry-content .wp-block-media-text,
body.single .entry-content .wp-block-columns {
	border-radius: 26px;
}

body.single-post .entry-content .has-background,
body.single-post .entry-content .wp-block-cover,
body.single-post .entry-content .wp-block-pullquote,
body.page .entry-content .has-background,
body.page .entry-content .wp-block-cover,
body.page .entry-content .wp-block-pullquote,
body.single .entry-content .has-background,
body.single .entry-content .wp-block-cover,
body.single .entry-content .wp-block-pullquote {
	padding: clamp(1.2rem, 1rem + 1vw, 2rem);
	border: 1px solid rgba(148, 163, 184, 0.14);
	box-shadow: var(--app-shadow-sm);
}

body.single-post .entry-content .wp-block-buttons,
body.page .entry-content .wp-block-buttons,
body.single .entry-content .wp-block-buttons {
	margin-top: 1.5rem;
}

body.single-post .entry-content .wp-block-button__link,
body.page .entry-content .wp-block-button__link,
body.single .entry-content .wp-block-button__link {
	border-radius: 999px;
	padding: 0.95rem 1.35rem;
	font-weight: 700;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

body.single-post .entry-content .wp-block-code,
body.single-post .entry-content pre,
body.page .entry-content .wp-block-code,
body.page .entry-content pre,
body.single .entry-content .wp-block-code,
body.single .entry-content pre {
	padding: 1.2rem 1.25rem;
	background: #0f172a;
	color: #e5eefc;
	border: 1px solid rgba(148, 163, 184, 0.12);
	box-shadow: 0 20px 50px rgba(2, 6, 23, 0.22);
}

body.single-post .entry-content code:not(pre code),
body.page .entry-content code:not(pre code),
body.single .entry-content code:not(pre code) {
	padding: 0.18rem 0.45rem;
	background: rgba(15, 23, 42, 0.06);
	border-radius: 0.5rem;
	color: #0f2a5a;
}

body.single-post .entry-content .wp-block-table table,
body.page .entry-content .wp-block-table table,
body.single .entry-content .wp-block-table table {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.82);
}

body.single-post .entry-content .wp-block-table th,
body.page .entry-content .wp-block-table th,
body.single .entry-content .wp-block-table th {
	background: rgba(15, 23, 42, 0.04);
	color: #142033;
}

body.single-post .entry-content .wp-block-image figcaption,
body.page .entry-content .wp-block-image figcaption,
body.single .entry-content .wp-block-image figcaption {
	margin-top: 0.85rem;
	font-size: 0.92rem;
	color: var(--app-muted);
}

body.single-post .entry-content > .wp-block-group.alignwide,
body.single-post .entry-content > .wp-block-cover.alignwide,
body.page .entry-content > .wp-block-group.alignwide,
body.page .entry-content > .wp-block-cover.alignwide,
body.single .entry-content > .wp-block-group.alignwide,
body.single .entry-content > .wp-block-cover.alignwide {
	max-width: min(1100px, calc(100vw - 2rem));
	margin-inline: calc(50% - min(550px, calc(50vw - 1rem)));
}

body.single-post .entry-tags,
body.page .entry-tags,
body.single .entry-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 2rem;
}

body.single-post .entry-tags a,
body.page .entry-tags a,
body.single .entry-tags a {
	padding-block: 0.45rem;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

body.single-post .ct-share-box,
body.single-post .author-box,
body.single-post .ct-post-nav,
body.single-post .ct-comments,
body.page .ct-share-box,
body.page .author-box,
body.page .ct-post-nav,
body.page .ct-comments,
body.single .ct-share-box,
body.single .author-box,
body.single .ct-post-nav,
body.single .ct-comments {
	max-width: min(860px, calc(100vw - 2rem));
	margin-inline: auto;
}

body.single-post .ct-share-box,
body.page .ct-share-box,
body.single .ct-share-box {
	padding: 1.1rem 1.25rem;
}

body.single-post .author-box,
body.page .author-box,
body.single .author-box {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.15rem;
	align-items: start;
}

body.single-post .author-box [class*='author-box-name'],
body.page .author-box [class*='author-box-name'],
body.single .author-box [class*='author-box-name'] {
	color: #142033;
}

body.single-post .ct-post-nav,
body.page .ct-post-nav,
body.single .ct-post-nav {
	padding: 0.75rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 255, 0.82));
}

body.single-post .ct-post-nav a,
body.page .ct-post-nav a,
body.single .ct-post-nav a {
	border-radius: 22px;
	padding: 1rem 1.1rem;
	background: rgba(255, 255, 255, 0.72);
}

body.single-post .ct-comments,
body.page .ct-comments,
body.single .ct-comments {
	padding: clamp(1.35rem, 1rem + 1vw, 2rem);
}

body.single-post .ct-comment-list .comment-body,
body.page .ct-comment-list .comment-body,
body.single .ct-comment-list .comment-body {
	padding: 1rem 1.1rem;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 22px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

body.single-post .ct-comment-content,
body.page .ct-comment-content,
body.single .ct-comment-content {
	color: #43526d;
}

body.single-post .comment-respond,
body.page .comment-respond,
body.single .comment-respond {
	margin-top: 1.5rem;
	padding: 1.25rem;
	background: rgba(245, 248, 255, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 24px;
}

body.page .entry-content > .wp-block-group:first-child.has-background,
body.page .entry-content > .wp-block-cover:first-child,
body.page .entry-content > .wp-block-columns:first-child,
body.single-post .entry-content > .wp-block-group:first-child.has-background,
body.single-post .entry-content > .wp-block-cover:first-child,
body.single-post .entry-content > .wp-block-columns:first-child {
	margin-top: 0.5rem;
}

@media (max-width: 999px) {
	body.single-post article > .entry-content,
	body.page article > .entry-content,
	body.single article > .entry-content,
	body.single-post .ct-share-box,
	body.single-post .author-box,
	body.single-post .ct-post-nav,
	body.single-post .ct-comments,
	body.page .ct-share-box,
	body.page .author-box,
	body.page .ct-post-nav,
	body.page .ct-comments,
	body.single .ct-share-box,
	body.single .author-box,
	body.single .ct-post-nav,
	body.single .ct-comments {
		max-width: calc(100vw - 1rem);
	}

	body.single-post .author-box,
	body.page .author-box,
	body.single .author-box {
		grid-template-columns: 1fr;
	}

	body.single-post .entry-content > .wp-block-group.alignwide,
	body.single-post .entry-content > .wp-block-cover.alignwide,
	body.page .entry-content > .wp-block-group.alignwide,
	body.page .entry-content > .wp-block-cover.alignwide,
	body.single .entry-content > .wp-block-group.alignwide,
	body.single .entry-content > .wp-block-cover.alignwide {
		max-width: 100%;
		margin-inline: 0;
	}
}

@media (max-width: 999px) {
	.hero-section[data-type='type-1'],
	.page-title[data-type='type-1'],
	.ct-page-title {
		border-radius: 0 0 22px 22px;
	}

	.entry-card,
	.widget,
	.ct-sidebar .ct-widget,
	.woocommerce ul.products li.product {
		border-radius: 20px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.entry-card,
	.widget,
	.ct-sidebar .ct-widget,
	.woocommerce ul.products li.product,
	.ct-related-posts .related-entry-card {
		animation: app-rise 0.6s ease both;
	}

	.entry-card:nth-child(2),
	.widget:nth-child(2),
	.woocommerce ul.products li.product:nth-child(2) {
		animation-delay: 0.06s;
	}

	.entry-card:nth-child(3),
	.widget:nth-child(3),
	.woocommerce ul.products li.product:nth-child(3) {
		animation-delay: 0.12s;
	}

	.entry-card:nth-child(4),
	.widget:nth-child(4),
	.woocommerce ul.products li.product:nth-child(4) {
		animation-delay: 0.18s;
	}
}

@keyframes app-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
