.home-products-section {
    padding: 20px 0 0;
}

.home-products-section--new {
    padding-top: 40px;
    padding-bottom: 10px;
}

.home-products-title {
    margin-bottom: 20px;
}

.home-products-title,
.section-title,
.block-title {
    margin: 0 0 32px;
    color: #54595f;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
}

h1.home-products-title {
    margin-bottom: 2px;
    font-size: 36px;
    font-weight: 300;
}

.home-products-subtitle {
    margin: 0 0 12px;
    color: #ff7d95;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

.home-products-section:not(.home-products-section--new) .home-products-title {
    color: #000;
}

.home-products-more-wrap {
    margin-top: 20px;
    text-align: center;
}

.home-products-more {
    display: inline-flex;
    min-width: 189px;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border: 1px solid var(--cf-pink);
    border-radius: 3px;
    background: #fff;
    color: var(--cf-pink);
    font-weight: 600;
}

.home-products-more:hover,
.home-products-more:focus-visible {
    background: var(--cf-pink);
    color: #fff;
}

.front-teddy-banner-section {
    width: min(calc(100% - 40px), var(--cf-container));
    margin: 0 auto;
}

.teddy-banner-overlay {
    display: flex;
    align-items: center;
    min-height: 346px;
    background-image: linear-gradient(rgba(37, 25, 29, .32), rgba(37, 25, 29, .32)), var(--teddy-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.teddy-banner-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.teddy-subtitle {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

.teddy-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
}

.teddy-desc {
    max-width: 680px;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.teddy-btn {
    display: inline-flex;
    min-width: 140px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 30px;
    background: var(--cf-pink);
    color: #fff;
    font-weight: 700;
}

.teddy-btn:hover {
    background: #fff;
    color: #555;
}

.front-why-us-yandex-section {
    padding: 78px 0 84px;
    background: #fff;
}

.front-why-us-yandex-section .block-title {
    margin-bottom: 30px;
    color: #555;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
}

.why-us-yandex-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: start;
}

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

.feature-card {
    min-height: 176px;
    padding: 24px 18px 20px;
    border: 1px solid #f4e0e4;
    background: linear-gradient(145deg, #fff 0%, #fff8fa 100%);
    box-shadow: 0 8px 24px rgba(93, 55, 65, .045);
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(93, 55, 65, .09);
}

.feature-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    place-items: center;
    border: 1px solid var(--cf-pink);
    border-radius: 50%;
    color: var(--cf-pink-strong);
    background: #fff;
    font-size: 27px;
}

.feature-card h3 {
    margin: 0 0 5px;
    color: #555;
    font-size: 16px;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

.yandex-reviews-widget-wrap {
    overflow: hidden;
    border: 1px solid var(--cf-border);
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
}

.yandex-reviews-widget-wrap iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

.yandex-map-link {
    display: block;
    padding: 12px 18px;
    border-top: 1px solid var(--cf-border);
    color: #777;
    font-size: 12px;
    text-align: center;
}

.front-faq-section {
    padding: 68px 0 0;
}

.front-faq-section .container {
    width: min(calc(100% - 40px), 860px);
}

.front-faq-section .section-title {
    margin-bottom: 20px;
    font-size: 26.6667px;
    font-weight: 500;
    line-height: 1.27;
}

.front-customer-gallery-section {
    padding: 66px 0 40px;
}

.front-customer-gallery-section .section-title {
    margin-bottom: 18px;
}

.customer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.customer-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    border-radius: 3px;
    background: #f7f7f7;
    aspect-ratio: 1;
    cursor: zoom-in;
}

.customer-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.customer-gallery-item:hover .customer-gallery-image {
    transform: scale(1.035);
}

.customer-gallery-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(20, 15, 17, .25);
    color: #fff;
    font-size: 34px;
    opacity: 0;
    transition: opacity .2s ease;
}

.customer-gallery-item:hover .customer-gallery-zoom,
.customer-gallery-item:focus-visible .customer-gallery-zoom {
    opacity: 1;
}

.customer-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: 64px minmax(0, 900px) 64px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 55px 20px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.customer-gallery-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.customer-lightbox-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(14, 11, 12, .9);
}

.customer-lightbox-figure {
    position: relative;
    z-index: 1;
    display: grid;
    max-height: calc(100vh - 90px);
    place-items: center;
    margin: 0;
}

.customer-lightbox-figure img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 90px);
    object-fit: contain;
}

.customer-lightbox-close-button,
.customer-lightbox-nav {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.customer-lightbox-close-button {
    position: absolute;
    top: 10px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 40px;
}

.customer-lightbox-nav {
    width: 56px;
    height: 70px;
    font-size: 58px;
    font-weight: 200;
}

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

.faq-accordion-wrapper {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--cf-border);
}

.faq-accordion-item {
    border-bottom: 1px solid var(--cf-border);
}

.faq-accordion-header {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 40px 18px 0;
    border: 0;
    background: transparent;
    color: #555;
    text-align: left;
    cursor: pointer;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.faq-toggle-icon {
    flex: 0 0 auto;
    color: #999;
    font-size: 22px;
}

.faq-accordion-content {
    padding: 0 40px 18px 0;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

.faq-accordion-content[hidden] {
    display: none;
}

.front-blog-section {
    padding: 118px 0 40px;
}

.front-blog-section .section-title {
    margin-bottom: 20px;
}

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

.blog-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.blog-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 170px;
    background: #f7f7f7;
}

.blog-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 2px;
    background: var(--cf-green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 30px 0;
}

.blog-card-title {
    margin: 0 0 25px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.27;
}

.blog-card-excerpt {
    flex: 1;
    margin-bottom: 16px;
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

.blog-card-read-more {
    color: var(--cf-green);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.entry-page,
.entry-single,
.entry,
.no-results {
    width: min(calc(100% - 40px), 900px);
    margin: 55px auto;
}

.entry-title,
.page-title {
    font-size: 36px;
}

.entry-thumbnail {
    margin: 25px 0;
}
.home-products-title,
.home-products-subtitle {
    line-height: 1;
}

/* Clean layout for pages that previously depended on a page builder. */
.internal-page-main {
    padding-bottom: 80px;
}

.internal-page-hero {
    padding: 30px 0 34px;
    border-top: 1px solid #f1d7dc;
    border-bottom: 1px solid #f2e6e8;
    background: linear-gradient(110deg, #fff9fa 0%, #fff 68%);
}

.internal-page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    color: #999;
    font-size: 13px;
}

.internal-page-breadcrumb a {
    color: #777;
}

.internal-page-title {
    margin: 0;
    color: #222;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.2;
}

.internal-page-hero p {
    max-width: 720px;
    margin: 13px 0 0;
    color: #777;
    font-size: 16px;
}

.internal-page-content {
    width: min(100%, 1040px);
    margin: 50px auto 0;
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

.internal-page-content::after {
    display: table;
    clear: both;
    content: '';
}

.internal-page-content h2,
.internal-page-content h3,
.internal-page-content h4 {
    margin: 1.45em 0 .6em;
    color: #222;
    font-weight: 400;
    line-height: 1.3;
}

.internal-page-content h2 {
    font-size: 30px;
}

.internal-page-content h3 {
    font-size: 23px;
}

.internal-page-content p,
.internal-page-content ul,
.internal-page-content ol {
    margin: 0 0 1.25em;
}

.internal-page-content img,
.internal-page-content iframe {
    max-width: 100%;
}

.internal-page-content .elementor,
.internal-page-content .elementor-section,
.internal-page-content .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
}

/* Contact page. */
.contact-details-section {
    padding: 58px 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-detail-card {
    min-height: 220px;
    padding: 30px 25px;
    border: 1px solid #f0e2e5;
    background: #fff;
    box-shadow: 0 10px 30px rgba(83, 52, 60, .055);
}

.contact-detail-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 21px;
    place-items: center;
    border: 1px solid #f0b9c4;
    border-radius: 50%;
    color: #dc8396;
    font-size: 20px;
}

.contact-detail-card h2 {
    margin: 0 0 12px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.contact-detail-card p {
    margin: 0 0 6px;
    color: #555;
    line-height: 1.55;
}

.contact-detail-card small {
    color: #999;
}

.contact-detail-card a:hover {
    color: var(--cf-pink-strong);
}

.contact-detail-card--legal p {
    font-size: 13px;
}

.contact-social-section {
    padding: 24px 0;
    background: #fff5f7;
}

.contact-social-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-social-inner div {
    display: grid;
    gap: 3px;
    color: #777;
}

.contact-social-inner strong {
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.contact-vk-link {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: #df96a5;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
}

.contact-map-section iframe {
    display: block;
    width: 100%;
    height: min(520px, 55vw);
    min-height: 360px;
    border: 0;
}

/* Teddy greeting landing page. */
.teddy-landing-hero {
    display: flex;
    min-height: 560px;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(35, 24, 28, .67), rgba(35, 24, 28, .12)), var(--teddy-hero-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.teddy-landing-hero__inner {
    padding-top: 55px;
    padding-bottom: 55px;
}

.teddy-landing-kicker,
.section-eyebrow {
    margin: 0 0 10px;
    color: #e996a8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.teddy-landing-hero h1 {
    max-width: 680px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(43px, 5vw, 70px);
    font-weight: 300;
    line-height: 1.03;
}

.teddy-landing-hero__inner > p:not(.teddy-landing-kicker) {
    max-width: 590px;
    margin: 0 0 30px;
    color: #fff;
    font-size: 18px;
    line-height: 1.65;
}

.teddy-landing-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    background: #efb7c1;
    color: #fff !important;
    text-transform: uppercase;
}

.teddy-benefits-section {
    padding: 55px 0;
}

.teddy-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.teddy-benefits-grid article {
    position: relative;
    padding: 29px 28px;
    border: 1px solid #f0e2e5;
    background: #fff;
}

.teddy-benefits-grid span {
    color: #efc2cb;
    font-size: 26px;
    font-weight: 300;
}

.teddy-benefits-grid h2 {
    margin: 12px 0 8px;
    font-size: 21px;
    font-weight: 500;
}

.teddy-benefits-grid p {
    margin: 0;
    color: #777;
}

.teddy-products-section {
    padding: 50px 0 80px;
    background: #fff9fa;
}

.teddy-products-section .section-eyebrow {
    text-align: center;
}

.teddy-products-section .section-title {
    color: #333;
    font-size: 34px;
}

.teddy-products-section .woocommerce ul.products {
    margin-top: 35px;
}

.teddy-occasions-section {
    padding: 80px 0;
}

.teddy-occasions-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 80px;
    align-items: start;
}

.teddy-occasions-layout h2,
.teddy-copy-content h2 {
    margin: 0 0 18px;
    color: #222;
    font-size: 34px;
    font-weight: 400;
}

.teddy-occasions-layout p,
.teddy-copy-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.75;
}

.teddy-occasions-layout ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.teddy-occasions-layout li {
    padding: 16px 18px;
    border: 1px solid #f0dce0;
    background: #fff9fa;
}

.teddy-copy-section {
    padding: 70px 0 85px;
    background: #fafafa;
}

.teddy-copy-content {
    width: min(calc(100% - 40px), 900px);
}

.teddy-copy-content h2:not(:first-child) {
    margin-top: 42px;
}

@media (max-width: 900px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .teddy-landing-hero {
        min-height: 470px;
    }

    .teddy-occasions-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .internal-page-hero {
        padding: 22px 0 27px;
    }

    .internal-page-content {
        margin-top: 32px;
    }

    .contact-details-section {
        padding: 35px 0;
    }

    .contact-details-grid,
    .teddy-benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-detail-card {
        min-height: 0;
    }

    .contact-social-inner {
        align-items: flex-start;
    }

    .teddy-landing-hero {
        min-height: 500px;
        background-position: 60% center;
    }

    .teddy-benefits-section,
    .teddy-occasions-section,
    .teddy-copy-section {
        padding: 45px 0;
    }

    .teddy-occasions-layout ul {
        grid-template-columns: 1fr;
    }
}

/* Salon gallery rebuilt from the former Elementor gallery. */
.salon-page-heading {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
    align-items: end;
    gap: 70px;
}

.salon-page-heading .section-eyebrow {
    margin-bottom: 8px;
}

.salon-page-heading > p {
    margin: 0 0 4px;
    color: #696269;
    font-size: 17px;
    line-height: 1.7;
}

.salon-gallery-section {
    padding: 58px 0 75px;
}

.salon-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.salon-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f7f4f5;
    box-shadow: 0 10px 30px rgba(60, 39, 45, .08);
}

.salon-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.salon-gallery-item:hover img {
    transform: scale(1.045);
}

.salon-gallery-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 17px 14px;
    background: linear-gradient(transparent, rgba(24, 19, 21, .74));
    color: #fff;
    font-size: 14px;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.salon-gallery-zoom {
    position: absolute;
    top: 13px;
    right: 13px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #333;
    font-size: 23px;
    opacity: 0;
    transition: opacity .25s ease;
}

.salon-gallery-item:hover .salon-gallery-caption,
.salon-gallery-item:focus-visible .salon-gallery-caption,
.salon-gallery-item:hover .salon-gallery-zoom,
.salon-gallery-item:focus-visible .salon-gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.salon-visit-section {
    padding: 45px 0;
    background: #fff4f6;
}

.salon-visit-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.salon-visit-inner span {
    color: #d98294;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.salon-visit-inner h2 {
    margin: 5px 0 4px;
    color: #282428;
    font-size: 28px;
    font-weight: 400;
}

.salon-visit-inner p {
    margin: 0;
    color: #777;
}

.salon-visit-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 25px;
    border: 1px solid #dfa2ae;
    color: #af6272;
    text-transform: uppercase;
}

.salon-visit-button:hover {
    background: #dfa2ae;
    color: #fff;
}

/* Blog index, archive cards and shared sidebar. */
.blog-page-hero,
.single-article-hero {
    padding: 42px 0 48px;
    border-bottom: 1px solid #f1e0e3;
    background: radial-gradient(circle at 88% 15%, rgba(241, 183, 196, .27), transparent 24%), linear-gradient(120deg, #fff7f8, #fff 70%);
}

.blog-page-hero h1 {
    margin: 0 0 12px;
    color: #262226;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 300;
}

.blog-page-hero > .container > p:last-child,
.blog-archive-description {
    max-width: 720px;
    margin: 0;
    color: #777;
    font-size: 17px;
    line-height: 1.65;
}

.blog-page-layout,
.single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 52px;
    padding-top: 58px;
    padding-bottom: 80px;
}

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

.blog-archive-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #eee7e9;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(57, 41, 46, .055);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 17px 42px rgba(57, 41, 46, .11);
}

.blog-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f6edef;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-archive-card:hover .blog-card-media img {
    transform: scale(1.035);
}

.blog-card-placeholder,
.related-post-image > span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: linear-gradient(135deg, #f7dce2, #fff5f7);
    color: #c17a8b;
    font-size: 21px;
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 24px 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
    color: #999;
    font-size: 12px;
}

.blog-card-meta a {
    color: #d17c8e;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.blog-archive-card .blog-card-title {
    margin: 0 0 13px;
    color: #2d292c;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
}

.blog-archive-card .blog-card-excerpt {
    display: -webkit-box;
    margin: 0 0 19px;
    overflow: hidden;
    color: #777;
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.blog-archive-card .blog-card-excerpt p {
    margin: 0;
}

.blog-card-read-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-read-link span {
    color: #d98294;
    font-size: 18px;
    transition: transform .2s ease;
}

.blog-card-read-link:hover span {
    transform: translateX(4px);
}

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

.blog-sidebar-card {
    padding: 27px;
    border: 1px solid #eee4e6;
    border-radius: 5px;
    background: #fff;
}

.blog-sidebar-card h2 {
    margin: 0 0 10px;
    color: #302a2e;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.blog-sidebar-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.65;
}

.blog-sidebar-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #d98294;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-sidebar-promo {
    position: relative;
    overflow: hidden;
    border: 0;
    background: linear-gradient(145deg, #f5cbd4, #f8dce2);
}

.blog-promo-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #ce7084;
    font-size: 20px;
    font-weight: 700;
}

.blog-sidebar-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.blog-sidebar-socials a {
    padding: 8px 12px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .85);
    color: #5d4850;
    font-size: 12px;
    font-weight: 600;
}

.blog-sidebar-posts {
    display: grid;
    gap: 17px;
}

.blog-sidebar-post {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.blog-sidebar-post img,
.blog-sidebar-placeholder {
    width: 74px;
    height: 62px;
    object-fit: cover;
}

.blog-sidebar-placeholder {
    display: grid;
    place-items: center;
    background: #f8edf0;
    color: #d58798;
    font-size: 22px;
}

.blog-sidebar-post small {
    display: block;
    margin-bottom: 3px;
    color: #aaa;
    font-size: 11px;
}

.blog-sidebar-post strong {
    display: -webkit-box;
    overflow: hidden;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-page-content .navigation.pagination,
.blog-page-content .posts-navigation {
    margin-top: 46px;
}

.blog-page-content .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.blog-page-content .page-numbers,
.comments-area .page-numbers {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    padding: 0 10px;
    border: 1px solid #e9dfe1;
    border-radius: 4px;
    background: #fff;
    color: #555;
}

.blog-page-content .page-numbers.current,
.blog-page-content .page-numbers:hover,
.comments-area .page-numbers.current {
    border-color: #e7aeb9;
    background: #fff2f4;
    color: #222;
}

/* Single article. */
.single-article-hero__inner {
    max-width: none;
}

.single-article-category {
    display: inline-flex;
    margin-bottom: 15px;
    color: #cf788b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.single-article-hero h1 {
    max-width: 1180px;
    margin: 0 0 19px;
    color: #282328;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.12;
}

.single-article-meta {
    display: flex;
    gap: 20px;
    color: #938b90;
    font-size: 13px;
}

.blog-single-article {
    min-width: 0;
}

.blog-single-featured {
    margin: 0 0 38px;
    overflow: hidden;
    border-radius: 5px;
    background: #f7f4f5;
}

.blog-single-featured img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.blog-single-content {
    color: #514c50;
    font-size: 17px;
    line-height: 1.82;
}

.blog-single-content > p:first-child {
    color: #3c373b;
    font-size: 19px;
}

.blog-single-content h2,
.blog-single-content h3 {
    color: #292529;
    font-weight: 500;
    line-height: 1.28;
}

.blog-single-content h2 {
    margin: 1.7em 0 .65em;
    font-size: 31px;
}

.blog-single-content h3 {
    margin: 1.5em 0 .55em;
    font-size: 24px;
}

.blog-single-content p,
.blog-single-content ul,
.blog-single-content ol,
.blog-single-content blockquote,
.blog-single-content figure {
    margin: 0 0 1.35em;
}

.blog-single-content ul,
.blog-single-content ol {
    padding-left: 25px;
}

.blog-single-content li {
    margin-bottom: .45em;
}

.blog-single-content a {
    color: #ba6276;
    text-decoration: underline;
    text-decoration-color: #e7b4bf;
    text-underline-offset: 3px;
}

.blog-single-content blockquote {
    padding: 22px 26px;
    border-left: 4px solid #e8aebb;
    background: #fff6f8;
    color: #4f464b;
    font-size: 18px;
}

.blog-single-content img {
    height: auto;
    border-radius: 4px;
}

.blog-single-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 28px;
    margin-top: 46px;
    border-top: 1px solid #eee5e7;
}

.blog-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #888;
    font-size: 12px;
}

.blog-single-tags a {
    padding: 5px 9px;
    border-radius: 3px;
    background: #fff2f4;
    color: #9d5667;
}

.blog-single-back {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.related-posts-section {
    padding: 68px 0 78px;
    background: #fff8f9;
}

.related-posts-section > .container > h2 {
    margin: 0 0 30px;
    color: #2e292d;
    font-size: 32px;
    font-weight: 400;
}

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

.related-post-card {
    overflow: hidden;
    border: 1px solid #eee3e6;
    background: #fff;
}

.related-post-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.04);
}

.related-post-card > div {
    padding: 18px 20px 22px;
}

.related-post-card time {
    color: #aaa;
    font-size: 11px;
}

.related-post-card h3 {
    margin: 7px 0 0;
    color: #3a3539;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

/* Comments. */
.article-comments-section {
    padding: 70px 0 85px;
}

.article-comments-inner {
    width: min(calc(100% - 40px), 900px);
}

.comments-title,
.comment-reply-title {
    margin: 0 0 22px;
    color: #2f2a2e;
    font-size: 30px;
    font-weight: 400;
}

.comment-list {
    padding: 0;
    margin: 0 0 48px;
    list-style: none;
}

.comment-list .comment-body {
    position: relative;
    padding: 22px 22px 22px 90px;
    margin-bottom: 16px;
    border: 1px solid #eee4e6;
    border-radius: 5px;
    background: #fff;
}

.comment-list .avatar {
    position: absolute;
    top: 23px;
    left: 22px;
    border-radius: 50%;
}

.comment-list .comment-author {
    color: #333;
}

.comment-list .comment-metadata {
    color: #aaa;
    font-size: 12px;
}

.comment-list .reply a {
    color: #c76e82;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-list .children {
    padding-left: 35px;
    list-style: none;
}

.comment-notes {
    color: #999;
}

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

.comment-form-comment,
.comment-form-cookies-consent,
.comment-notes,
.form-submit,
.logged-in-as {
    grid-column: 1 / -1;
}

.comment-form label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-size: 13px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfd7d9;
    border-radius: 3px;
    background: #fff;
}

.comment-form textarea {
    min-height: 145px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #dda1ae;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(226, 158, 173, .14);
}

.comment-form .submit {
    min-height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 3px;
    background: #252125;
    color: #fff;
    cursor: pointer;
}

.comments-closed-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 25px 28px;
    border: 1px solid #eedfe2;
    border-radius: 5px;
    background: #fff8f9;
}

.comments-closed-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #d47d90;
    font-size: 25px;
}

.comments-closed-card h2 {
    margin: 0 0 4px;
    color: #342f33;
    font-size: 24px;
    font-weight: 500;
}

.comments-closed-card p {
    margin: 0;
    color: #777;
}

@media (max-width: 1100px) {
    .blog-page-layout,
    .single-post-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 30px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .salon-page-heading,
    .blog-page-layout,
    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .salon-page-heading {
        gap: 18px;
    }

    .salon-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

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

    .blog-sidebar-recent {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .salon-gallery-section {
        padding: 35px 0 50px;
    }

    .salon-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .salon-gallery-caption {
        padding: 22px 10px 9px;
        font-size: 11px;
        opacity: 1;
        transform: none;
    }

    .salon-gallery-zoom {
        display: none;
    }

    .salon-visit-inner,
    .blog-single-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-page-hero,
    .single-article-hero {
        padding: 28px 0 33px;
    }

    .blog-page-layout,
    .single-post-layout {
        gap: 38px;
        padding-top: 35px;
        padding-bottom: 55px;
    }

    .blog-posts-grid {
        gap: 20px;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-recent {
        grid-column: auto;
    }

    .blog-single-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .blog-single-content h2 {
        font-size: 26px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .related-posts-section,
    .article-comments-section {
        padding: 48px 0 58px;
    }

    .comment-form {
        grid-template-columns: 1fr;
    }

    .comment-list .comment-body {
        padding: 72px 17px 18px;
    }

    .comment-list .avatar {
        top: 14px;
        left: 17px;
    }

    .comment-list .children {
        padding-left: 12px;
    }
}
