/* blog.css — Blog archive, single post, sidebar and pagination
   Loads only on blog/archive/single post contexts. */

.single-post .single-main,
.archive .blog-main {
	margin-inline: auto;
}

/* Layout: content + sidebar */
.blog-layout,
.layout--content-sidebar {
	align-items: flex-start;
}

.blog-layout__sidebar,
.layout__sidebar {
	align-self: flex-start !important;
	position: sticky;
	top: var(--wp--preset--spacing--32);
}

/* Blog grid */
.blog-grid {
	gap: var(--wp--preset--spacing--32) !important;
}

/* Blog list: horizontal cards */
body.has-blog-list .blog-grid {
	grid-template-columns: 1fr !important;
	gap: var(--wp--preset--spacing--24) !important;
}

body.has-blog-list .post-card--blog {
	display: grid;
	grid-template-columns: minmax(220px, 320px) 1fr;
	gap: var(--wp--preset--spacing--0);
	height: auto;
}

body.has-blog-list .post-card__image {
	height: 100%;
	aspect-ratio: auto;
}

body.has-blog-list .post-card__image,
body.has-blog-list .post-card__image .wp-block-post-featured-image,
body.has-blog-list .post-card__image a,
body.has-blog-list .post-card__image img {
	height: 100%;
}

body.has-blog-list .post-card__image img {
	min-height: 200px;
}

body.has-blog-list .post-card__body {
	padding: var(--wp--preset--spacing--28);
	justify-content: center;
	gap: var(--wp--preset--spacing--12);
}

body.has-blog-list:not(.archive) .post-card__title {
	font-size: var(--wp--preset--font-size--24) !important;
}

body.has-blog-list .post-card__excerpt {
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

@media (max-width: 640px) {
	body.has-blog-list .post-card--blog {
		grid-template-columns: 1fr;
	}

	body.has-blog-list .post-card__image img {
		min-height: 0;
		aspect-ratio: 3 / 2;
	}

	body.has-blog-list .post-card__body {
		padding: var(--wp--preset--spacing--20);
	}
}

/* Archive header */
.archive__title {
	font-size: var(--wp--preset--font-size--36);
	margin-bottom: var(--wp--preset--spacing--16) !important;
	position: relative;
	padding-bottom: var(--wp--preset--spacing--20);
}

.archive__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2.5rem;
	height: 1px;
	background-color: var(--wp--preset--color--primary);
}

.archive__description {
	color: var(--wp--preset--color--text-muted);
	margin-bottom: var(--wp--preset--spacing--48) !important;
}

/* Archive list: editorial strip */
.archive__list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border-top: 1px solid var(--wp--preset--color--border);
}

/* Post card */
.post-card--blog {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--10);
	padding: 0 0 var(--wp--preset--spacing--40);
	border-radius: 0;
	border-bottom: 1px solid var(--wp--preset--color--border);
	background: transparent;
	box-shadow: none;
	overflow: visible;
	transition: none;
}

.post-card--blog:hover {
	box-shadow: none;
	transform: none;
}

/* Date / Meta */
.post-card__meta,
.post-card__date {
	font-size: var(--wp--preset--font-size--11) !important;
	font-weight: var(--fw-medium);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--text-muted);
	margin: 0 !important;
	padding-top: 0 !important;
}

/* Category badge */
.post-card__category {
	font-size: var(--wp--preset--font-size--11) !important;
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--primary);
	margin: 0;
}

.post-card__category a {
	color: inherit;
	text-decoration: none;
}

.post-card__category a:hover {
	color: var(--wp--preset--color--primary-dark);
}

/* Title */
.post-card__title {
	font-size: var(--wp--preset--font-size--18) !important;
	line-height: var(--lh-tight);
	margin: 0 !important;
	color: var(--wp--preset--color--text-heading);
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: baseline;
	gap: 0.5em;
	transition: color var(--wp--custom--motion--duration--fast) ease;
}

.post-card__title a::after {
	content: "→";
	font-size: 0.8em;
	font-weight: 300;
	opacity: 0;
	transform: translateX(-8px);
	transition:
		opacity var(--wp--custom--motion--duration--base) ease,
		transform var(--wp--custom--motion--duration--base) ease;
}

.post-card--blog:hover .post-card__title a {
	color: var(--wp--preset--color--primary);
}

.post-card--blog:hover .post-card__title a::after {
	opacity: 1;
	transform: translateX(0);
}

/* Excerpt */
.post-card__excerpt {
	margin: 0;
}

.post-card__excerpt p,
.wp-block-post-excerpt__excerpt {
	font-size: var(--wp--preset--font-size--14);
	color: var(--wp--preset--color--text-body);
	line-height: 1.7;
	margin: 0;
	overflow: hidden;
}

.post-card__excerpt .wp-block-post-excerpt__more-text {
	display: none;
}

/* Body wrapper */
.post-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--10);
	flex: 1;
}

/* Image wrapper */
.post-card__image {
	margin: 0 !important;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wp--custom--motion--duration--base) ease;
}

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

/* Pagination */
.blog-pagination {
	margin-top: var(--wp--preset--spacing--64) !important;
	gap: var(--wp--preset--spacing--8) !important;
}

.blog-pagination .page-numbers,
.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 var(--wp--preset--spacing--8);
	border-radius: 0;
	font-size: var(--wp--preset--font-size--14);
	font-weight: var(--fw-regular);
	letter-spacing: 0.03em;
	color: var(--wp--preset--color--text-muted);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition:
		color var(--wp--custom--motion--duration--fast) ease,
		border-color var(--wp--custom--motion--duration--fast) ease;
}

.blog-pagination a:hover {
	background: transparent;
	color: var(--wp--preset--color--text-heading);
	border-bottom-color: var(--wp--preset--color--border);
}

.blog-pagination .current {
	background: transparent;
	color: var(--wp--preset--color--primary);
	font-weight: var(--fw-semibold);
	border-bottom-color: var(--wp--preset--color--primary);
}

.blog-pagination .wp-block-query-pagination-previous,
.blog-pagination .wp-block-query-pagination-next {
	font-size: var(--wp--preset--font-size--12);
	font-weight: var(--fw-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--text-body);
	min-width: auto;
	padding: 0 var(--wp--preset--spacing--12);
}

.blog-pagination .wp-block-query-pagination-previous:hover,
.blog-pagination .wp-block-query-pagination-next:hover {
	background: transparent;
	color: var(--wp--preset--color--primary);
	border-bottom-color: transparent;
}

/* No results */
.blog-no-results {
	padding: var(--wp--preset--spacing--64) 0;
	color: var(--wp--preset--color--text-muted);
	font-size: var(--wp--preset--font-size--18);
}

/* Sidebar */
.sidebar {
	padding: 0 !important;
}

/* Shared widget heading: used by .sidebar__heading and .post-related-list__heading */
.sidebar__heading,
.sidebar__related .post-related-list__heading {
	font-size: var(--wp--preset--font-size--11) !important;
	font-weight: var(--fw-semibold) !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--text-muted) !important;
	padding-bottom: var(--wp--preset--spacing--10);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

/* Form widget and legacy CTA widget share the same container style */
.sidebar__section,
.sidebar__cta {
	padding: var(--wp--preset--spacing--24);
	border: 1px solid var(--wp--preset--color--border);
	border-top: 3px solid var(--wp--preset--color--primary);
	border-radius: 0 0 var(--wp--custom--radius--4) var(--wp--custom--radius--4);
	background: var(--wp--preset--color--bg-secondary);
	max-width: none;
}

.sidebar__section .gform_wrapper {
	padding-bottom: 0;
}

.sidebar__section .gfield_consent_label {
	font-size: var(--wp--preset--font-size--12);
}

.sidebar__section .gfield_consent_label .gfield_required {
	margin-left: var(--wp--preset--spacing--4);
}

.sidebar__section .gform_button:hover {
	transform: translateY(-1px);
}

/* Legacy sidebar-cta block */
.sidebar__cta-title {
	font-size: var(--wp--preset--font-size--15) !important;
	font-weight: var(--fw-semibold) !important;
	color: var(--wp--preset--color--text-heading) !important;
	margin: 0 0 var(--wp--preset--spacing--10) 0 !important;
	line-height: 1.3;
	text-wrap: balance;
	letter-spacing: -0.01em;
}

.sidebar__cta-text {
	font-size: var(--wp--preset--font-size--14);
	color: var(--wp--preset--color--text-muted);
	line-height: var(--lh-base);
	margin-bottom: var(--wp--preset--spacing--16) !important;
}

.sidebar__cta-btn .wp-block-button__link {
	width: 100%;
	font-size: var(--wp--preset--font-size--14);
	border-radius: var(--wp--custom--radius--4);
	text-align: center;
}

/* Booking CTA widget (acf/booking-cta + .sidebar__booking) */
.sidebar__booking {
	border: 1px solid var(--wp--preset--color--border);
	border-top: 3px solid var(--wp--preset--color--primary);
	border-radius: 0 0 var(--wp--custom--radius--4) var(--wp--custom--radius--4);
	padding: var(--wp--preset--spacing--24);
}

.sidebar__booking .booking-cta__title {
	font-size: var(--wp--preset--font-size--18);
	font-weight: var(--fw-semibold);
	color: var(--wp--preset--color--text-heading);
	margin: 0 0 var(--wp--preset--spacing--8) 0;
	line-height: 1.3;
}

.sidebar__booking .booking-cta__subtitle {
	font-size: var(--wp--preset--font-size--15);
	color: var(--wp--preset--color--text-muted);
	margin: 0;
	line-height: var(--lh-base);
}

.sidebar__booking .booking-cta__actions {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--8);
}

.sidebar__booking .booking-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wp--preset--spacing--8);
	padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--16);
	font-size: var(--wp--preset--font-size--14);
	font-weight: var(--fw-semibold);
	text-decoration: none;
	border-radius: var(--wp--custom--radius--4);
	transition:
		transform var(--wp--custom--motion--duration--fast) ease,
		background-color var(--wp--custom--motion--duration--fast) ease,
		color var(--wp--custom--motion--duration--fast) ease,
		border-color var(--wp--custom--motion--duration--fast) ease;
}

.sidebar__booking .booking-cta__btn:hover {
	transform: translateY(-1px);
}

.sidebar__booking .booking-cta__btn--whatsapp {
	background: #25d366;
	color: #fff;
	border: 1px solid transparent;
}

.sidebar__booking .booking-cta__btn--whatsapp:hover {
	background: #1db954;
	color: #fff;
}

.sidebar__booking .booking-cta__btn--phone {
	background: var(--wp--preset--color--bg);
	color: var(--wp--preset--color--text-heading);
	border: 1px solid var(--wp--preset--color--primary);
}

.sidebar__booking .booking-cta__btn--phone:hover {
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
}

.sidebar__booking .booking-cta__btn--link {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid transparent;
}

.sidebar__booking .booking-cta__btn--link:hover {
	background: var(--wp--preset--color--primary-dark);
	color: var(--wp--preset--color--white);
}

/* Categories widget */
.sidebar__categories-list {
	list-style: none !important;
	padding: 0 !important;
	margin: var(--wp--preset--spacing--8) 0 0 !important;
}

.sidebar__categories-list .cat-item {
	display: flex;
	align-items: center;
	gap: var(--wp--preset--spacing--8);
	font-size: var(--wp--preset--font-size--12);
	color: var(--wp--preset--color--text-muted);
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.sidebar__categories-list .cat-item:last-child {
	border-bottom: none;
}

.sidebar__categories-list .cat-item a {
	flex: 1;
	padding: var(--wp--preset--spacing--10) 0;
	color: var(--wp--preset--color--text-body);
	text-decoration: none;
	font-size: var(--wp--preset--font-size--14);
	line-height: 1.4;
	transition:
		color var(--wp--custom--motion--duration--fast) ease,
		padding-left var(--wp--custom--motion--duration--fast) ease;
}

.sidebar__categories-list .cat-item a:hover {
	color: var(--wp--preset--color--primary);
	padding-left: var(--wp--preset--spacing--8);
}

/* Related posts widget */

.sidebar__related .post-related-list__items {
	gap: 0;
}

.sidebar__related .post-related-list__link {
	padding: var(--wp--preset--spacing--8) 0;
	gap: var(--wp--preset--spacing--12);
	align-items: center;
}

.sidebar__related .post-related-list__link:hover {
	opacity: 1;
	text-decoration: none;
}

.sidebar__related .post-related-list__thumb {
	border-radius: var(--wp--custom--radius--4);
	flex-shrink: 0;
}

.sidebar__related .post-related-list__title {
	font-size: var(--wp--preset--font-size--14);
	font-weight: var(--fw-medium);
	color: var(--wp--preset--color--text-heading);
	transition: color var(--wp--custom--motion--duration--fast) ease;
}

.sidebar__related .post-related-list__link:hover .post-related-list__title {
	color: var(--wp--preset--color--accent);
}

.sidebar__related .post-related-list__link:hover .post-related-list__img {
	opacity: 0.75;
}

.sidebar__related .post-related-list__img {
	transition: opacity var(--wp--custom--motion--duration--fast) ease;
}

.sidebar__related .post-related-list__date {
	font-size: var(--wp--preset--font-size--11);
	color: var(--wp--preset--color--text-muted);
	opacity: 1;
}

/* Visibility flags set via body class */
body.has-blog-no-author .post-card__author,
body.has-blog-no-author .post-single__meta-author,
body.has-blog-no-date .post-card__date,
body.has-blog-no-date .post-single__meta-date {
	display: none;
}

/* Single post */

/* Pageheader: minimal centered variant */

body.single-post .is-style-minimal.pageheader--align-center .pageheader__inner {
	text-align: center;
}

body.single-post
	.is-style-minimal.pageheader--align-center
	.pageheader__inner
	.pageheader__body {
	color: var(--wp--preset--color--text-muted);
	font-size: var(--wp--preset--font-size--14);
	text-transform: none;
}

/* Category badge */
.taxonomy-category.post-single__category a {
	color: var(--wp--preset--color--primary);
	font-size: var(--wp--preset--font-size--12);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color var(--wp--custom--motion--duration--fast) ease;
}

.taxonomy-category.post-single__category a:hover {
	color: var(--wp--preset--color--primary-dark);
}

/* Post meta */
.post-single__meta {
	color: var(--wp--preset--color--text-muted);
	font-size: var(--wp--preset--font-size--14);
}

/* Hero image */
.post-single__hero.wp-block-post-featured-image {
	display: block;
	max-height: 28rem;
	overflow: hidden;
}

.post-single__hero.wp-block-post-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Table of Contents */
.post-single__toc-wrap {
	margin-inline: 0;
	margin-top: var(--wp--preset--spacing--32);
	margin-bottom: var(--wp--preset--spacing--32);
}

.toc {
	padding: var(--wp--preset--spacing--24);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--8);
	background: var(--wp--preset--color--bg-secondary);
}

.toc p:empty,
.toc a br {
	display: none;
}

.toc__title {
	display: block;
	margin-bottom: var(--wp--preset--spacing--16);
	font-size: var(--wp--preset--font-size--14);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wp--preset--color--text-muted);
}

.toc__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	counter-reset: toc-item;
}

.toc__item {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--wp--preset--color--border);
	counter-increment: toc-item;
}

.toc__item:first-child {
	border-top: 0;
}

.toc__item a {
	display: block;
	padding: var(--wp--preset--spacing--10) 0;
	padding-left: calc(
		var(--wp--preset--spacing--24) + var(--wp--preset--spacing--8)
	);
	font-family: var(--wp--preset--font-family--secondary);
	font-weight: var(--fw-medium);
	color: var(--wp--preset--color--text-heading);
	text-decoration: none !important;
	line-height: 1.5;
	font-size: var(--wp--preset--font-size--18);
	position: relative;
}

.toc__item a::before {
	content: counter(toc-item, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--wp--preset--font-family--monospace);
	font-size: var(--wp--preset--font-size--12);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--text-muted);
}

.toc__item a:hover {
	color: var(--wp--preset--color--primary);
	text-decoration: none;
}

.toc__item--h3 a {
	padding-left: calc(
		var(--wp--preset--spacing--32) + var(--wp--preset--spacing--16)
	);
	font-size: var(--wp--preset--font-size--14);
	color: var(--wp--preset--color--text);
}

.toc__item--h3 a::before {
	left: var(--wp--preset--spacing--16);
}

/* Post content: editorial typography */
.post-single__content {
	padding-top: var(--wp--preset--spacing--48);
}

.post-single .wp-block-post-content p,
.post-single .wp-block-post-content li {
	line-height: var(--lh-relaxed);
	color: var(--wp--preset--color--text-body);
}

.post-single__content > h1,
.single-post .wp-block-post-content h1,
.post-single .wp-block-post-content h1 {
	font-size: var(--wp--preset--font-size--40);
	margin-top: var(--wp--preset--spacing--40);
	margin-block-end: var(--wp--preset--spacing--16) !important;
	line-height: var(--lh-base);
}

.post-single__content > h2,
.single-post .wp-block-post-content h2,
.post-single .wp-block-post-content h2 {
	font-size: var(--wp--preset--font-size--30);
	margin-top: var(--wp--preset--spacing--40);
	margin-block-end: var(--wp--preset--spacing--8);
	line-height: var(--lh-base);
}

.post-single__content > h3,
.single-post .wp-block-post-content h3,
.post-single .wp-block-post-content h3 {
	font-size: var(--wp--preset--font-size--24);
	margin-top: var(--wp--preset--spacing--32);
	margin-block-end: var(--wp--preset--spacing--12) !important;
	line-height: 1.5;
}

.post-single__content > h4,
.single-post .wp-block-post-content h4,
.post-single .wp-block-post-content h4 {
	font-size: var(--wp--preset--font-size--24);
	margin-top: var(--wp--preset--spacing--32);
	margin-bottom: var(--wp--preset--spacing--12);
	line-height: 1.4;
}

.post-single .wp-block-post-content blockquote {
	border-left: 3px solid var(--wp--preset--color--primary);
	padding-left: var(--wp--preset--spacing--20);
	margin-inline: 0;
	color: var(--wp--preset--color--text-muted);
	font-style: italic;
}

.post-single .wp-block-post-content figure {
	margin-block-end: var(--wp--preset--spacing--32) !important;
}

.post-single .wp-block-post-content img {
	border-radius: var(--wp--custom--radius--4);
	max-height: 40rem;
	object-fit: cover;
}

.post-single a {
	color: var(--wp--preset--color--black);
	text-decoration: underline;
}

.post-single a:hover {
	color: var(--wp--preset--color--primary);
}

/* Tags footer */
.post-single__footer {
	border-top: 1px solid var(--wp--preset--color--border);
}

.post-single__tags {
	margin-top: var(--wp--preset--spacing--40);
}

.post-single__tags.wp-block-post-terms a {
	display: inline-flex;
	padding: var(--wp--preset--spacing--4) var(--wp--preset--spacing--14);
	background-color: var(--wp--preset--color--bg-secondary);
	border-radius: var(--wp--custom--radius--pill);
	font-size: var(--wp--preset--font-size--12);
	font-weight: var(--fw-medium);
	color: var(--wp--preset--color--text-muted);
	text-decoration: none;
	transition:
		background-color var(--wp--custom--motion--duration--base) ease,
		color var(--wp--custom--motion--duration--base) ease;
}

.post-single__tags.wp-block-post-terms a:hover {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

/* Previous / Next navigation */
.post-navigation-link-previous.wp-block-post-navigation-link a,
.post-navigation-link-next.wp-block-post-navigation-link a {
	color: var(--wp--preset--color--text-muted);
}

/* More posts */
.more-posts__item {
	border-top: none;
}

.more-posts__item:first-child {
	border-top: 1px solid var(--wp--preset--color--border) !important;
}

.more-posts__thumb.wp-block-post-featured-image {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: var(--wp--custom--radius--2);
}

.more-posts__thumb.wp-block-post-featured-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.more-posts__thumb.wp-block-post-featured-image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: transform var(--wp--custom--motion--duration--slow) ease;
}

.more-posts__item:hover .more-posts__thumb.wp-block-post-featured-image img {
	transform: scale(1.05);
}

.more-posts__item .wp-block-post-title a {
	color: var(--wp--preset--color--text-heading);
	text-decoration: none;
	transition: color var(--wp--custom--motion--duration--base) ease;
}

.more-posts__item:hover .wp-block-post-title a {
	color: var(--wp--preset--color--primary);
}

.more-posts__item .wp-block-post-date {
	color: var(--wp--preset--color--text-muted);
}

/* Post headings reset */
.post-single .wp-block-heading {
	color: var(--wp--preset--color--text-muted);
	text-transform: none;
	letter-spacing: 0;
}

.post-single li.wp-block-post .wp-block-post-title a {
	color: var(--wp--preset--color--text-heading);
}

/* Responsive */
@media (max-width: 1024px) {
	.blog-layout,
	.layout--content-sidebar {
		flex-direction: column !important;
	}

	.blog-layout__content,
	.blog-layout__sidebar,
	.layout__content,
	.layout__sidebar {
		flex-basis: 100% !important;
	}

	.blog-layout__sidebar,
	.layout__sidebar {
		position: static;
		margin-top: var(--wp--preset--spacing--48);
	}

	.sidebar {
		position: static;
		margin-top: var(--wp--preset--spacing--48);
	}

	.post-single__hero.wp-block-post-featured-image {
		max-height: 18rem;
	}
	.layout__sidebar {
		margin: 0 auto !important;
	}

	.post-card--blog {
		padding: 0 0 var(--wp--preset--spacing--16);
	}

	.post-card__title {
		font-size: var(--wp--preset--font-size--20) !important;
	}

	.post-card__body {
		padding: var(--wp--preset--spacing--20);
		margin-block-start: 0;
	}
}

@media (max-width: 781px) {
	.blog-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 768px) {
}
