:root{
	--color-secondary: #D8CECB;
	--color-gray: #EEEEEE;
	--color-dark-gray: #5c5950;
    --swiper-theme-color: var(--bs-dark) !important;
}
body{
	
	
	font-family: "Tenor Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}
a{
	text-decoration: none;
	color: inherit;
}
img{
	max-width: 100%;
}
.container-fluid {
    max-width: 1400px;
}
p {
    margin-bottom: 0.5rem;
}
a:hover{
	color: var(--color-secondary);
}
a:hover svg,
a:hover path{
	fill: var(--color-secondary);
}
.heading {
    font-size: 27px;
    line-height: 120%;
}
.subheading{
	font-size: 19px;
	line-height: 120%;
}

.logo {

	font-size: 30px;

}
.logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 48px;
}

header .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header .menu ul {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.2s;
    top: 100%;
    background-color: white;
    width: 260px;
   
    box-shadow: 0px -1px 20px 3px #4b4b4b3d;
	padding: 10px 0;
}
header .menu ul li {
    padding: 0px 15px;
}
header .menu ul li a {
    display: flex;
    width: 100%;
}
header .menu li:hover ul{
	opacity: 1;
	visibility: visible;
}
header .menu li {
    padding: 13px 15px;
    display: flex;
    align-items: center;
}
header .menu li a {
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
}
header .menu svg{
	
}
.header-search__icon,
a:hover .header-search__icon,
a:hover .header-search__icon path {
	fill: none !important;
}
a:hover .header-search__icon circle,
a:hover .header-search__icon path {
	stroke: var(--color-secondary);
}

header .menu>li:first-child {
    padding-left: 0;
}
header .menu>li:last-child {
	padding-right: 0;
}
@media (max-width: 767px){
	header .menu li {
		padding: 13px 8px;
	}
	.logo {

		font-size: 20px;

	}
	.logo img {
		max-height: 32px;
	}
}
.btn {
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 0;
    box-shadow: none !important;
}
.btn-close{
	 box-shadow: none !important;
	 outline: none;
}
.btn-white{
	background-color: white;
	color: black;
	
}
.btn-white:hover{
	background-color: var(--color-secondary);
}


.product-card .images{
	position: relative;
}


.product-card .images .hidden-image{
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.4s;
}

.product-card .images:hover .hidden-image{
	opacity: 1;
	visibility: visible;
}
.swiper-pagination-bullet{
	transition-duration: 0.45s;
}
.swiper-pagination-bullet-active {
    width: 30px !important;
    border-radius: 10px !important;
}

.subcategory-showcase {
    background: linear-gradient(180deg, #f8f6f5 0, #fff 100%);
    color: #14142b;
}

.subcategory-showcase__heading {
    max-width: 760px;
    margin: 0 auto 31px;
    text-align: center;
}

.subcategory-showcase__eyebrow {
    display: block;
    color: var(--color-dark-gray);
    font-size: 11px;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.subcategory-showcase__heading h1,
.subcategory-showcase__heading h2 {
    margin: 10px 0 0;
    color: #14142b;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 400;
    line-height: 1.12;
}

.subcategory-slider {
    padding: 3px 2px 0;
}

.subcategory-card {
    display: block;
    min-width: 0;
    color: #14142b;
}

.subcategory-card:hover {
    color: #14142b;
}

.subcategory-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #ede9e7;
}

.subcategory-card__image::after {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    content: "";
    pointer-events: none;
    transition: inset 0.35s, border-color 0.35s;
}

.subcategory-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.subcategory-card__number {
    position: absolute;
    right: 10px;
    bottom: 10px;
    min-width: 38px;
    padding: 6px 7px 5px;
    background: rgba(255, 255, 255, 0.92);
    color: #14142b;
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
}

.subcategory-card__body {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 1px 0;
}

.subcategory-card__title {
    font-size: 17px;
    line-height: 1.3;
}

.subcategory-card__arrow {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
}

.subcategory-card__arrow svg,
.subcategory-slider__button svg {
    fill: none !important;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.subcategory-card:hover .subcategory-card__image img {
    transform: scale(1.055);
}

.subcategory-card:hover .subcategory-card__image::after {
    inset: 15px;
    border-color: rgba(255, 255, 255, 0.92);
}

.subcategory-card:hover .subcategory-card__arrow {
    transform: translateX(4px);
}

.subcategory-slider__controls {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}

.subcategory-slider .swiper-pagination {
    position: static;
    width: auto;
    min-width: 56px;
    transform: none;
}

.subcategory-slider .swiper-pagination-bullet {
    margin: 0 4px;
}

.subcategory-slider__button {
    position: static;
    width: 42px;
    height: 42px;
    margin: 0;
    border: 1px solid rgba(20, 20, 43, 0.16);
    background: transparent;
    color: #14142b;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.subcategory-slider__button::after {
    display: none;
}

.subcategory-slider__button:hover {
    background: #14142b;
    border-color: #14142b;
    color: #fff;
}

.subcategory-slider__button.swiper-button-disabled {
    opacity: 0.32;
}

@media (max-width: 767px) {
    .subcategory-showcase__heading {
        margin-bottom: 24px;
    }

    .subcategory-showcase__heading h1,
    .subcategory-showcase__heading h2 {
        font-size: 31px;
    }

    .subcategory-card__title {
        font-size: 16px;
    }

    .subcategory-slider__controls {
        padding-top: 25px;
    }
}

.fitting-room {
    background: linear-gradient(180deg, #f8f6f5 0, #fff 360px);
}

.fitting-room__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: center;
    padding: 34px 0 48px;
}

.fitting-room__eyebrow {
    margin-bottom: 12px;
    color: #8f817d;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.fitting-room__hero h1 {
    max-width: 700px;
    margin-bottom: 16px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
}

.fitting-room__hero p {
    max-width: 680px;
    margin: 0;
    color: #5c5950;
    font-size: 18px;
    line-height: 1.6;
}

.fitting-room__summary {
    padding: 26px;
    background: #fff;
    border: 1px solid rgba(216, 206, 203, 0.82);
    box-shadow: 0 18px 45px rgba(52, 43, 40, 0.08);
    text-align: center;
}

.fitting-room__count {
    font-size: 56px;
    line-height: 1;
}

.fitting-room__note {
    margin-top: 12px;
    color: #8f817d;
    font-size: 13px;
    line-height: 1.45;
}

.fitting-room__toolbar {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #5c5950;
}

.fitting-room__clear,
.fitting-room__remove {
    color: #8f817d;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fitting-room__item {
    position: relative;
    height: 100%;
    background: #fff;
}

.fitting-room__remove {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.92);
}

.fitting-room__empty {
    max-width: 620px;
    padding: 54px 0 86px;
}

.fitting-room__empty-icon {
    margin-bottom: 12px;
    color: #d8cecb;
    font-size: 76px;
    line-height: 1;
}

.fitting-room__empty h2 {
    font-size: 34px;
}

.fitting-room__empty p {
    color: #5c5950;
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .fitting-room__hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 0 34px;
    }

    .fitting-room__hero h1 {
        font-size: 48px;
    }

    .fitting-room__hero p {
        font-size: 16px;
    }

    .fitting-room__toolbar {
        display: block;
    }

    .fitting-room__clear {
        display: inline-block;
        margin-top: 10px;
    }

    .fitting-room__remove {
        right: 8px;
        bottom: 8px;
        padding: 6px 8px;
        font-size: 11px;
    }
}

.bg-dominik{
	background-color: var(--color-secondary);
}
.bg-dominik-dark{
	background-color: var(--color-dark-gray);
}

.bg-center {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.position-relative{
	z-index: 0;
}
.bg-absolute-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.bg-absolute-background img {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section{
	overflow-x: hidden;
}
.text-shadow{
	text-shadow: -3px 5px 11px #000
}

@media (max-width: 767px){
	.section-prems .banner-text {
		background-color: var(--color-gray);
		color: black !important;
		text-shadow: none;
		margin-bottom: 1rem;
		text-align: center;
	}
	.section-prems .banner-text p{
		margin: 0 auto;
		
	}
	.section-prems .bg-dominik-dark{
		background-color: transparent;
	}
	.w-mob-100{
		width: 100%;
	}
	
}



.nav-tabs{
	border: none;
}
.nav-link {
    border: none !important;
    text-transform: uppercase;
    outline: none;
    padding: 0 0 4px 0;
    border-bottom: 2px solid #000 !important;
    border-radius: 0;
	color: black;
	opacity: 0.4;
	text-wrap: nowrap;
}
.nav-link:hover,.nav-link.active{
	opacity: 1;
	color: black;
}
.nav-item{
	margin-right: 18px;
	margin-bottom: 10px;
}
.sw-thumb{
	
}
.sw-thumb:not(.swiper-slide-thumb-active){
	opacity: 0.5;
	cursor: pointer;
}

.offcanvas-wrap {
    position: fixed;
    z-index: 1100;
}
.toast-container{
	z-index: 1200;
}
.modal-backdrop {
    background-color: var(--color-secondary);
}
.modal-backdrop.show {
    opacity: .7;
}
.modal-header {
    border-bottom: 0;
}

.form-wrap {
    position: relative;
}
.form-wrap label {
    background-color: #ffffff;
    position: relative;
    display: inline-block;
    top: 1px;
    left: 15px;
}
.form-control {
    box-shadow: none !important;
    border-radius: 0;
    padding: 10px 13px;
}
.form-control:focus{
	border-color: #000
}

.search-modal__body {
	padding: 42px 46px 48px;
}
.search-modal__intro {
	max-width: 560px;
	margin-bottom: 28px;
}
.search-modal__eyebrow,
.search-page__eyebrow {
	display: block;
	color: var(--color-dark-gray);
	font-size: 11px;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
}
.search-modal__intro h2 {
	margin: 9px 0 8px;
	color: #14142b;
	font-size: clamp(30px, 4vw, 43px);
	font-weight: 400;
	line-height: 1.08;
}
.search-modal__intro p {
	margin: 0;
	color: rgba(20, 20, 43, 0.68);
}
.search-modal__field,
.search-page__form {
	display: flex;
	border-bottom: 1px solid #14142b;
}
.search-modal__field input,
.search-page__form input {
	width: 100%;
	padding: 13px 0;
	border: 0;
	background: transparent;
	color: #14142b;
	font: inherit;
	font-size: 18px;
	outline: 0;
}
.search-modal__field button,
.search-page__form button {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 9px;
	align-items: center;
	padding: 12px 0 12px 18px;
	border: 0;
	background: transparent;
	color: #14142b;
	font: inherit;
	text-transform: uppercase;
}
.search-modal__field button:hover,
.search-page__form button:hover {
	color: var(--color-dark-gray);
}

.search-page {
	min-height: 62vh;
	color: #14142b;
}
.search-page__hero {
	padding: 34px 0 54px;
	background: linear-gradient(180deg, #f8f6f5 0, #fff 100%);
}
.search-page__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 0;
	margin: 0 0 42px;
	list-style: none;
	color: rgba(20, 20, 43, 0.58);
	font-size: 14px;
}
.search-page__breadcrumb span {
	margin-left: 4px;
}
.search-page__intro {
	max-width: 760px;
}
.search-page__intro h1 {
	margin: 10px 0 12px;
	font-size: clamp(44px, 6.3vw, 88px);
	font-weight: 400;
	line-height: 1;
}
.search-page__intro p {
	margin: 0;
	color: rgba(20, 20, 43, 0.68);
	font-size: 18px;
	line-height: 1.55;
}
.search-page__form {
	max-width: 920px;
	margin-top: 37px;
}
.search-page__form input {
	padding: 17px 0;
	font-size: 21px;
}
.search-page__results {
	padding: 12px 0 76px;
}
.search-page__summary {
	display: flex;
	gap: 20px;
	align-items: end;
	justify-content: space-between;
	padding: 28px 0 32px;
}
.search-page__summary h2 {
	margin: 8px 0 0;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 400;
	line-height: 1.15;
}
.search-page__count {
	color: rgba(20, 20, 43, 0.58);
	white-space: nowrap;
}
.search-page__pagination {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
}
.search-page__empty {
	max-width: 740px;
	padding: 52px 0 24px;
}
.search-page__empty h2 {
	margin: 0 0 12px;
	font-size: clamp(27px, 3vw, 40px);
	font-weight: 400;
}
.search-page__empty p {
	margin: 0;
	color: rgba(20, 20, 43, 0.68);
	font-size: 18px;
	line-height: 1.55;
}
@media (max-width: 767px) {
	.search-modal__body {
		padding: 38px 24px 32px;
	}
	.search-modal__field input,
	.search-page__form input {
		font-size: 16px;
	}
	.search-page__hero {
		padding: 24px 0 38px;
	}
	.search-page__breadcrumb {
		margin-bottom: 29px;
	}
	.search-page__intro h1 {
		font-size: 50px;
	}
	.search-page__intro p,
	.search-page__empty p {
		font-size: 16px;
	}
	.search-page__form {
		margin-top: 27px;
	}
	.search-page__form button span {
		display: none;
	}
	.search-page__summary,
	.search-page__pagination {
		display: block;
	}
	.search-page__count,
	.search-page__pagination > div + div {
		margin-top: 12px;
	}
}

.fav-btn {
    position: absolute;
    top: 20px;
    right: 20px;
	opacity: 0;
	visibility: hidden;
	
}
.product-card:hover .fav-btn{
	opacity: 1;
	visibility: visible;
}
.fav-btn svg path{
	fill: #fff !important;
	transition-duration: 0.2s;
}
.fav-btn:hover svg path{
	fill: var(--color-secondary) !important;
}
@media (max-width: 767px){
	.fav-btn {
		opacity: 1;
		visibility: visible;
	}
}

.abs-loading.abs-loading-fixed {
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff61;
    display: flex;
    align-items: center;
    justify-content: center;
}
.abs-loading{
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	z-index: 10;
	background-color: #ffffff61;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-anim .abs-loading{
	display: none;
}
.offcanvas .left-menu {
    padding: 0 0 10px 0;
    list-style: none;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #dbdbdb;
}
.offcanvas .left-menu ul{
	padding: 0;
    list-style: none;
    margin: 0;
}
.offcanvas .left-menu>li>a {
    font-weight: bold;
    font-size: 20px;
}
.offcanvas .left-menu li {
    text-align: right;
}

.product-page .fav-btn {
    opacity: 1;
    visibility: visible;
    top: auto;
    bottom: 4px;
}
.product-page .fav-btn path {
    fill: #000 !important;
}

.service-category-page,
.service-page {
    background: linear-gradient(180deg, #f8f6f5 0, #fff 460px);
    color: #14142b;
}

.service-category-hero,
.service-hero {
    padding: 34px 0 76px;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0 0 38px;
    list-style: none;
    color: rgba(20, 20, 43, 0.58);
    font-size: 14px;
}

.service-breadcrumb span {
    margin-left: 4px;
}

.service-breadcrumb a:hover,
.service-text-link:hover,
.service-card__link:hover {
    color: var(--color-dark-gray);
}

.service-eyebrow {
    margin-bottom: 12px;
    color: var(--color-dark-gray);
    font-size: 13px;
    line-height: 1.25;
    text-transform: uppercase;
}

.service-category-hero__grid,
.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 360px);
    gap: 48px;
    align-items: end;
}

.service-category-hero h1,
.service-hero h1 {
    max-width: 870px;
    margin: 0;
    font-size: clamp(44px, 6.3vw, 88px);
    line-height: 1.02;
}

.service-category-hero__description,
.service-category-hero p,
.service-hero__copy p {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(20, 20, 43, 0.72);
    font-size: 18px;
    line-height: 1.65;
}

.service-category-hero__description p:last-child {
    margin-bottom: 0;
}

.service-category-hero__aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 210px;
    padding: 28px;
    background: var(--color-secondary);
    color: #14142b;
    font-size: 16px;
    line-height: 1.45;
}

.service-category-hero__number {
    display: block;
    margin-bottom: 8px;
    font-size: 86px;
    line-height: 0.9;
}

.service-refine {
    padding: 0 0 34px;
}

.service-refine__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-refine__item {
    padding: 10px 16px;
    border: 1px solid rgba(20, 20, 43, 0.18);
    transition: background-color 0.2s, border-color 0.2s;
}

.service-refine__item:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #14142b;
}

.service-category-content,
.service-content-section,
.service-related-section {
    padding: 0 0 84px;
}

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(20, 20, 43, 0.1);
    transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
    box-shadow: 0 20px 44px rgba(20, 20, 43, 0.08);
    transform: translateY(-5px);
}

.service-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 305 / 409;
    background: var(--color-secondary);
}

.service-card__image img,
.service-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.service-card:hover .service-card__image img,
.service-related-card:hover .service-related-card__image img {
    transform: scale(1.035);
}

.service-card__number {
    position: absolute;
    right: 16px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 42px;
    line-height: 1;
}

.service-card__body {
    padding: 22px 20px 24px;
}

.service-card h2,
.service-related-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.16;
}

.service-card p,
.service-related-card p {
    margin: 14px 0 17px;
    color: rgba(20, 20, 43, 0.68);
    font-size: 15px;
    line-height: 1.55;
}

.service-card__link,
.service-text-link,
.service-module-card__link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #14142b;
    font-size: 13px;
    text-transform: uppercase;
}

.service-card__link span,
.service-text-link span,
.service-module-card__link span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s;
}

.service-card__link:hover span,
.service-text-link:hover span,
.service-module-card:hover .service-module-card__link span {
    transform: translateX(4px);
}

.service-category-pagination {
    margin-top: 30px;
}

.service-category-cta {
    padding-bottom: 84px;
}

.service-category-cta__inner {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 42px;
    background: var(--color-secondary);
}

.service-category-cta h2,
.service-related-head h2,
.service-sidebar h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.14;
}

.service-category-cta p {
    max-width: 700px;
    margin: 12px 0 0;
    line-height: 1.55;
}

.service-module-card {
    display: block;
    overflow: hidden;
    color: #14142b;
    transition: box-shadow 0.25s, transform 0.25s;
}

.service-module-card:hover {
    color: #14142b;
    box-shadow: 0 16px 38px rgba(20, 20, 43, 0.12);
    transform: translateY(-5px);
}

.service-module-card img {
    width: 100%;
}

.service-module-card__link {
    margin-top: 18px;
}

.service-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
}

.service-hero__grid--single {
    grid-template-columns: 1fr;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 32px;
}

.service-hero__visual {
    max-height: 570px;
    overflow: hidden;
    background: var(--color-secondary);
}

.service-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
    gap: 56px;
    align-items: start;
}

.service-content {
    min-width: 0;
    color: rgba(20, 20, 43, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.service-content .service-lead {
    margin-top: 0;
    color: #14142b;
    font-size: 23px;
    line-height: 1.55;
}

.service-content h2 {
    margin: 42px 0 15px;
    color: #14142b;
    font-size: 32px;
    line-height: 1.18;
}

.service-content ol {
    padding-left: 23px;
    margin-bottom: 0;
}

.service-content li {
    padding-left: 6px;
    margin-bottom: 9px;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
}

.service-benefits__item {
    padding: 20px;
    background: #f8f6f5;
    border-top: 2px solid var(--color-secondary);
}

.service-benefits__item strong,
.service-benefits__item span {
    display: block;
}

.service-benefits__item strong {
    margin-bottom: 10px;
    color: #14142b;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.service-benefits__item span {
    color: rgba(20, 20, 43, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.service-sidebar {
    position: sticky;
    top: 96px;
}

.service-sidebar__card {
    padding: 30px;
    background: #f8f6f5;
    border: 1px solid rgba(20, 20, 43, 0.1);
}

.service-sidebar p {
    margin: 14px 0 24px;
    color: rgba(20, 20, 43, 0.7);
    line-height: 1.55;
}

.service-sidebar .btn {
    width: 100%;
}

.service-related-section {
    padding-top: 72px;
    border-top: 1px solid rgba(20, 20, 43, 0.1);
}

.service-related-head {
    margin-bottom: 25px;
}

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

.service-related-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(20, 20, 43, 0.1);
}

.service-related-card__image {
    min-height: 250px;
    overflow: hidden;
    background: var(--color-secondary);
}

.service-related-card__body {
    padding: 19px;
}

@media (max-width: 991px) {
    .service-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-sidebar {
        position: static;
    }
    .service-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .service-category-hero,
    .service-hero {
        padding: 24px 0 50px;
    }
    .service-breadcrumb {
        margin-bottom: 28px;
        font-size: 13px;
    }
    .service-category-hero__grid,
    .service-hero__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .service-category-hero h1,
    .service-hero h1 {
        font-size: 46px;
    }
    .service-category-hero__aside {
        min-height: 0;
        padding: 22px;
    }
    .service-category-hero__number {
        font-size: 68px;
    }
    .service-category-content,
    .service-content-section,
    .service-related-section {
        padding-bottom: 58px;
    }
    .service-category-grid {
        grid-template-columns: 1fr;
    }
    .service-category-cta {
        padding-bottom: 58px;
    }
    .service-category-cta__inner {
        display: block;
        padding: 27px 22px;
    }
    .service-category-cta .btn {
        width: 100%;
        margin-top: 18px;
    }
    .service-hero__visual {
        max-height: 400px;
    }
    .service-content {
        font-size: 16px;
    }
    .service-content .service-lead {
        font-size: 20px;
    }
    .service-content h2 {
        margin-top: 34px;
        font-size: 27px;
    }
    .service-benefits {
        grid-template-columns: 1fr;
    }
    .service-related-section {
        padding-top: 52px;
    }
    .service-related-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }
    .service-related-card__image {
        min-height: 220px;
    }
    .service-related-card__body {
        padding: 15px;
    }
    .service-related-card h3 {
        font-size: 19px;
    }
    .service-related-card p {
        display: none;
    }
    .service-related-card .service-card__link {
        margin-top: 18px;
    }
}

.not-found-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.not-found-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 70px 0;
    border-top: 1px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
}
.not-found-copy {
    max-width: 620px;
}
.not-found-eyebrow {
    margin-bottom: 18px;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}
.not-found-copy .heading {
    margin-bottom: 20px;
    font-size: 46px;
}
.not-found-copy p {
    max-width: 540px;
}
.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.not-found-actions .btn-white {
    border: 1px solid var(--color-secondary);
}
.not-found-mark {
    width: min(38vw, 430px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    color: #fff;
}
.not-found-mark span {
    font-size: 170px;
    line-height: 1;
}
@media (max-width: 1199px){
    .not-found-mark span {
        font-size: 130px;
    }
}
@media (max-width: 767px){
    .not-found-page {
        min-height: auto;
    }
    .not-found-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 0;
    }
    .not-found-copy .heading {
        font-size: 34px;
    }
    .not-found-actions {
        flex-direction: column;
    }
    .not-found-actions .btn {
        width: 100%;
    }
    .not-found-mark {
        width: 100%;
        max-height: 220px;
    }
    .not-found-mark span {
        font-size: 96px;
    }
}

.contact-page {
    background: linear-gradient(180deg, #f8f6f5 0, #fff 420px);
    color: #14142b;
}

.contact-hero {
    padding: 34px 0 44px;
}

.contact-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
    color: rgba(20, 20, 43, 0.62);
    font-size: 14px;
}

.contact-breadcrumb a:hover {
    color: #14142b;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 32px;
    align-items: end;
}

.contact-hero__content h1,
.contact-store__body h2,
.contact-form__head h2,
.contact-locations h2 {
    margin: 0;
    color: #14142b;
    line-height: 1.12;
}

.contact-hero__content h1 {
    max-width: 720px;
    font-size: clamp(38px, 5.2vw, 78px);
}

.contact-hero__content p {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(20, 20, 43, 0.72);
    font-size: 18px;
    line-height: 1.55;
}

.contact-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--color-dark-gray);
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-quick {
    display: grid;
    gap: 12px;
}

.contact-quick__item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(20, 20, 43, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(20, 20, 43, 0.06);
    transition: border-color 0.2s, transform 0.2s;
}

.contact-quick__item:hover {
    color: #14142b;
    border-color: rgba(20, 20, 43, 0.28);
    transform: translateY(-2px);
}

.contact-quick__icon {
    display: inline-flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--color-secondary);
    border-radius: 50%;
    color: #14142b;
}

.contact-quick small,
.contact-detail__label {
    display: block;
    margin-bottom: 5px;
    color: rgba(20, 20, 43, 0.54);
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
}

.contact-quick strong,
.contact-detail__value {
    display: block;
    color: #14142b;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

.contact-section {
    padding: 0 0 72px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.contact-info,
.contact-form {
    min-width: 0;
}

.contact-card,
.contact-detail,
.contact-form,
.contact-location {
    background: #fff;
    border: 1px solid rgba(20, 20, 43, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(20, 20, 43, 0.055);
}

.contact-card--store {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    overflow: hidden;
}

.contact-card--no-image {
    grid-template-columns: 1fr;
}

.contact-store__image {
    min-height: 210px;
    background: var(--color-gray);
}

.contact-store__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-store__body {
    padding: 26px;
}

.contact-store__body h2,
.contact-form__head h2,
.contact-locations h2 {
    font-size: 30px;
}

.contact-muted {
    margin: 10px 0 0;
    color: rgba(20, 20, 43, 0.68);
    line-height: 1.55;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.contact-detail {
    padding: 22px;
}

.contact-detail:first-child {
    grid-column: 1 / -1;
}

.contact-detail address {
    margin: 0;
    color: #14142b;
    font-size: 18px;
    line-height: 1.5;
}

.contact-detail__label--spaced {
    margin-top: 18px;
}

.contact-link {
    display: inline-flex;
    margin-top: 14px;
    color: #14142b;
    border-bottom: 1px solid currentColor;
}

.contact-link:hover {
    color: var(--color-dark-gray);
}

.contact-locations {
    margin-top: 28px;
}

.contact-locations h2 {
    margin-bottom: 16px;
}

.contact-location {
    overflow: hidden;
}

.contact-location + .contact-location {
    margin-top: 10px;
}

.contact-location .accordion-button {
    padding: 18px 20px;
    background: #fff;
    color: #14142b;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 18px;
}

.contact-location .accordion-button:not(.collapsed) {
    background: #f8f6f5;
    color: #14142b;
}

.contact-location .accordion-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-top: 1px solid rgba(20, 20, 43, 0.1);
}

.contact-location .contact-detail {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-location__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-form {
    position: sticky;
    top: 92px;
    padding: 30px;
}

.contact-form__head {
    margin-bottom: 24px;
}

.contact-form__head p {
    margin: 10px 0 0;
    color: rgba(20, 20, 43, 0.68);
    line-height: 1.55;
}

.contact-form .form-wrap {
    margin-bottom: 18px;
}

.contact-form .form-wrap label {
    margin-bottom: 0;
    color: rgba(20, 20, 43, 0.74);
}

.contact-form .form-control {
    min-height: 48px;
    border-color: rgba(20, 20, 43, 0.18);
    background-color: #fff;
    color: #14142b;
}

.contact-form textarea.form-control {
    min-height: 156px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: #14142b;
}

.contact-form .text-danger {
    margin-top: 7px;
    font-size: 14px;
}

.contact-captcha {
    margin-bottom: 18px;
}

.contact-submit {
    width: 100%;
    min-height: 52px;
    background: #14142b;
    border-color: #14142b;
    color: #fff;
}

.contact-submit:hover,
.contact-submit:focus {
    background: var(--color-dark-gray);
    border-color: var(--color-dark-gray);
    color: #fff;
}

@media (max-width: 991px) {
    .contact-hero__grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form {
        position: static;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 24px 0 32px;
    }

    .contact-breadcrumb {
        margin-bottom: 24px;
    }

    .contact-hero__content h1 {
        font-size: 38px;
    }

    .contact-hero__content p {
        font-size: 16px;
    }

    .contact-section {
        padding-bottom: 44px;
    }

    .contact-card--store,
    .contact-details,
    .contact-location .accordion-body {
        grid-template-columns: 1fr;
    }

    .contact-store__image {
        min-height: 190px;
    }

    .contact-store__body,
    .contact-detail,
    .contact-form {
        padding: 20px;
    }

    .contact-store__body h2,
    .contact-form__head h2,
    .contact-locations h2 {
        font-size: 25px;
    }

    .contact-quick__item {
        padding: 15px;
    }
}

.blog-category-page {
    background: linear-gradient(180deg, #f8f6f5 0, #fff 520px);
    color: #14142b;
}

.blog-category-hero {
    padding: 34px 0 64px;
}

.blog-category-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
    color: rgba(20, 20, 43, 0.58);
    font-size: 14px;
}

.blog-category-breadcrumb span {
    display: inline-block;
    margin: 0 8px;
    color: var(--color-secondary);
}

.blog-category-breadcrumb a:hover {
    color: #14142b;
}

.blog-category-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: clamp(32px, 6vw, 88px);
    align-items: center;
}

.blog-category-hero__grid--single {
    grid-template-columns: minmax(0, 780px);
}

.blog-category-eyebrow {
    display: block;
    color: var(--color-dark-gray);
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-category-hero h1 {
    max-width: 820px;
    margin: 14px 0 0;
    color: #14142b;
    font-size: clamp(42px, 5.8vw, 82px);
    font-weight: 400;
    line-height: 1.04;
}

.blog-category-hero__copy p,
.blog-category-hero__description {
    max-width: 700px;
    margin-top: 22px;
    color: rgba(20, 20, 43, 0.72);
    font-size: 18px;
    line-height: 1.65;
}

.blog-category-hero__description p:last-child {
    margin-bottom: 0;
}

.blog-category-hero__image {
    position: relative;
    min-height: 380px;
}

.blog-category-hero__image::before {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid var(--color-secondary);
    content: "";
}

.blog-category-hero__image img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.blog-category-refine {
    padding: 25px 0;
    background: #f4efed;
    border-top: 1px solid rgba(216, 206, 203, 0.82);
    border-bottom: 1px solid rgba(216, 206, 203, 0.82);
}

.blog-category-refine__head {
    margin-bottom: 14px;
}

.blog-category-refine__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category-refine__item {
    display: inline-flex;
    padding: 10px 17px;
    background: #fff;
    border: 1px solid rgba(20, 20, 43, 0.11);
    color: #14142b;
    font-size: 14px;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.blog-category-refine__item:hover {
    background: #14142b;
    border-color: #14142b;
    color: #fff;
}

.blog-category-content {
    padding: 72px 0 80px;
}

.blog-category-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.blog-category-heading h2,
.blog-category-empty h2 {
    margin: 9px 0 0;
    color: #14142b;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.15;
}

.blog-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 20px;
}

.blog-category-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(20, 20, 43, 0.1);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.blog-category-card:hover {
    border-color: rgba(20, 20, 43, 0.24);
    box-shadow: 0 20px 46px rgba(20, 20, 43, 0.09);
    transform: translateY(-5px);
}

.blog-category-card__image {
    display: block;
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    background: #f1eeed;
}

.blog-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}

.blog-category-card:hover .blog-category-card__image img {
    transform: scale(1.045);
}

.blog-category-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px 22px 20px;
}

.blog-category-card__meta {
    display: flex;
    min-height: 18px;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(20, 20, 43, 0.56);
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.blog-category-card__divider {
    width: 3px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.blog-category-card__views {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.blog-category-card__views svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.blog-category-card h3 {
    margin: 14px 0 0;
    color: #14142b;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.blog-category-card h3 a:hover {
    color: var(--color-dark-gray);
}

.blog-category-card p {
    margin: 13px 0 0;
    color: rgba(20, 20, 43, 0.68);
    font-size: 15px;
    line-height: 1.6;
}

.blog-category-card__footer {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding-top: 21px;
    margin-top: auto;
}

.blog-category-card__link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #14142b;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-category-card__link:hover {
    color: var(--color-dark-gray);
}

.blog-category-card__link svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blog-category-card__rating {
    display: flex;
    color: #b59b78;
    font-size: 14px;
    letter-spacing: 1px;
}

.blog-category-card__rating .is-empty {
    color: #ded9d4;
}

.blog-category-pagination {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding-top: 38px;
}

.blog-category-pagination ul.pagination {
    gap: 6px;
    margin: 0;
}

.blog-category-pagination .page-link {
    min-width: 42px;
    padding: 10px 13px;
    color: #14142b;
    text-align: center;
    border-color: rgba(20, 20, 43, 0.13);
    border-radius: 0 !important;
    box-shadow: none;
}

.blog-category-pagination .page-link:hover,
.blog-category-pagination .active .page-link {
    background: #14142b;
    border-color: #14142b;
    color: #fff;
}

.blog-category-pagination__results {
    color: rgba(20, 20, 43, 0.58);
    font-size: 14px;
}

.blog-category-empty {
    padding: 50px;
    background: #f8f6f5;
    border: 1px solid rgba(20, 20, 43, 0.1);
    text-align: center;
}

.blog-category-empty .btn {
    margin-top: 24px;
}

@media (max-width: 991px) {
    .blog-category-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 42px;
    }

    .blog-category-hero__image,
    .blog-category-hero__image img {
        min-height: 320px;
    }

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

@media (max-width: 767px) {
    .blog-category-hero {
        padding: 24px 0 42px;
    }

    .blog-category-breadcrumb {
        margin-bottom: 24px;
    }

    .blog-category-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-category-hero h1 {
        font-size: 42px;
    }

    .blog-category-hero__copy p,
    .blog-category-hero__description {
        margin-top: 16px;
        font-size: 16px;
    }

    .blog-category-hero__image {
        margin-left: 12px;
    }

    .blog-category-hero__image,
    .blog-category-hero__image img {
        min-height: 250px;
    }

    .blog-category-hero__image::before {
        top: 12px;
        right: 12px;
        bottom: -12px;
        left: -12px;
    }

    .blog-category-content {
        padding: 50px 0 56px;
    }

    .blog-category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-category-card h3 {
        font-size: 22px;
    }

    .blog-category-pagination {
        align-items: start;
        flex-direction: column;
        padding-top: 28px;
    }

    .blog-category-empty {
        padding: 34px 20px;
    }
}

.blog-article-page {
    background: #fff;
    color: #14142b;
}

.blog-article-hero {
    padding: 34px 0 72px;
    background: linear-gradient(180deg, #f8f6f5 0, #fff 100%);
}

.blog-article-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
}

.blog-article-hero__grid--single {
    grid-template-columns: minmax(0, 920px);
}

.blog-article-hero h1 {
    max-width: 760px;
    margin: 14px 0 0;
    color: #14142b;
    font-size: clamp(42px, 5.3vw, 76px);
    font-weight: 400;
    line-height: 1.06;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
    margin-top: 26px;
    color: rgba(20, 20, 43, 0.58);
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.blog-article-meta__divider {
    width: 3px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.blog-article-meta__views {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.blog-article-meta__views svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.blog-article-meta__rating {
    display: flex;
    color: #b59b78;
    font-size: 14px;
    letter-spacing: 1px;
}

.blog-article-meta__rating .is-empty {
    color: #ded9d4;
}

.blog-article-hero__image {
    position: relative;
    min-height: 520px;
}

.blog-article-hero__image::before {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid var(--color-secondary);
    content: "";
}

.blog-article-hero__image img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.blog-article-content {
    padding: 82px 0;
}

.blog-article-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 790px) minmax(250px, 330px);
    gap: clamp(40px, 7vw, 108px);
    justify-content: center;
    align-items: start;
}

.blog-article-copy {
    color: rgba(20, 20, 43, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.blog-article-copy > :first-child {
    margin-top: 0;
}

.blog-article-copy p {
    margin: 0 0 20px;
}

.blog-article-copy h2,
.blog-article-copy h3 {
    color: #14142b;
    font-weight: 400;
    line-height: 1.18;
}

.blog-article-copy h2 {
    margin: 46px 0 17px;
    font-size: 34px;
}

.blog-article-copy h3 {
    margin: 34px 0 14px;
    font-size: 25px;
}

.blog-article-copy blockquote {
    padding: 24px 0 24px 26px;
    margin: 34px 0;
    color: #14142b;
    border-left: 2px solid var(--color-secondary);
    font-size: 22px;
    line-height: 1.55;
}

.blog-article-copy img {
    width: 100%;
    margin: 18px 0 28px;
}

.blog-article-copy a {
    color: #14142b;
    border-bottom: 1px solid var(--color-secondary);
}

.blog-article-copy a:hover {
    color: var(--color-dark-gray);
}

.blog-article-aside {
    position: sticky;
    top: 94px;
    padding: 28px;
    background: #f4efed;
    border: 1px solid rgba(216, 206, 203, 0.9);
}

.blog-article-aside p {
    margin: 14px 0 0;
    color: rgba(20, 20, 43, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.blog-article-aside__link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-top: 22px;
    color: #14142b;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.blog-article-aside__link:hover {
    color: var(--color-dark-gray);
}

.blog-article-aside__link svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blog-article-downloads {
    max-width: 790px;
    padding-top: 24px;
    margin: 28px auto 0;
    border-top: 1px solid rgba(20, 20, 43, 0.12);
}

.blog-article-downloads a {
    display: block;
    color: #14142b;
}

.blog-article-downloads span {
    color: rgba(20, 20, 43, 0.58);
}

.blog-article-section {
    padding: 76px 0 84px;
}

.blog-article-section__head {
    margin-bottom: 30px;
}

.blog-article-section__head h2 {
    margin: 9px 0 0;
    color: #14142b;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.15;
}

.blog-article-products {
    background: #f8f6f5;
    border-top: 1px solid rgba(216, 206, 203, 0.72);
    border-bottom: 1px solid rgba(216, 206, 203, 0.72);
}

.blog-article-products .product-card {
    background: #fff;
}

.blog-article-products .product-card .images {
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    background: #eee;
}

.blog-article-products .product-card .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 991px) {
    .blog-article-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        gap: 44px;
    }

    .blog-article-hero__image,
    .blog-article-hero__image img {
        min-height: 430px;
    }

    .blog-article-content__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-article-aside {
        position: static;
    }

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

@media (max-width: 767px) {
    .blog-article-hero {
        padding: 24px 0 48px;
    }

    .blog-article-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-article-hero h1 {
        font-size: 42px;
    }

    .blog-article-hero__image {
        margin-left: 12px;
    }

    .blog-article-hero__image,
    .blog-article-hero__image img {
        min-height: 300px;
    }

    .blog-article-hero__image::before {
        top: 12px;
        right: 12px;
        bottom: -12px;
        left: -12px;
    }

    .blog-article-content {
        padding: 54px 0;
    }

    .blog-article-copy {
        font-size: 16px;
        line-height: 1.75;
    }

    .blog-article-copy h2 {
        margin-top: 38px;
        font-size: 28px;
    }

    .blog-article-copy blockquote {
        padding: 20px 0 20px 18px;
        margin: 28px 0;
        font-size: 19px;
    }

    .blog-article-aside {
        padding: 22px;
    }

    .blog-article-section {
        padding: 54px 0 60px;
    }

    .blog-article-related__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
