/**
 * Blog Single Post — Detail Stylesheet
 * Theme: astra-child
 
 * -----------------------------------------------------------------
 */

/* --------------------------------------------------------------------
   1. Design Tokens
-------------------------------------------------------------------- */

@import url('https://googleapis.com');

.blog-detail-page { 
    --color-heading: #0E101A;
    --color-body: #332115;
    --color-body-alt: #333333;
    --color-text-secondary: #454A53;
    --color-text-muted: #53545C;
    --color-border: #D9DCDF;
    --color-border-light: #E5E7EB;
    --color-border-soft: rgba(51, 51, 51, 0.4);

    --color-bg: #FFFFFF;
    --color-bg-light: #F5F6F7;
    --color-bg-lighter: #F4F4F7;
    --color-bg-dark: #0E101A;
    --color-pill-bg: rgba(217, 217, 217, 0.2);

    --color-accent: #994F67;
    --color-accent-dark: #79193E;
    --color-accent-warm: #DE6F5E;
    --gradient-primary: linear-gradient(121.05deg, #994F67 30.11%, #994F67 56.96%, #DE6F5E 85.2%, #DE6F5E 98.44%);

    --container-max: 1320px;
    --container-padding: 30px;
    --content-max: 950px;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-pill: 100px;

    background: var(--color-bg);
    color: var(--color-body); 
}

/* --------------------------------------------------------------------
   2. Container / Layout Base
-------------------------------------------------------------------- */
.blog-detail-page .blog-hero {
    padding-top: 45px !important;
}
 
.blog-detail-page .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0px var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

.blog-detail-page section {
    padding-top: 72px;
    position: relative;
}

.blog-detail-page .section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 48px;
}

.blog-detail-page .section-heading .heading-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.blog-detail-page .section-label { 
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.blog-detail-page .section-heading h2 { 
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--color-body);
    margin: 0;
}

/* --------------------------------------------------------------------
   3. Blog Hero
-------------------------------------------------------------------- */

.blog-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 32px; */
}

.blog-hero__image {
    width: 100%;
    max-width: 1248px;
    height: 592px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.blog-hero__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 78 / 37 !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: var(--content-max);
    text-align: center;
    padding-block: 70px;
}

.blog-hero__categories {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; */
    display: none;

}

.blog-hero__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-pill);
     font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-heading);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-hero__category:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #FFFFFF;
}

.blog-hero__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--color-body-alt);
    margin: 0;
    max-width: 1010px;
}

.blog-hero__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: var(--color-body);
}

.blog-hero__meta time {
    color: var(--color-body);
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.blog-hero__meta time svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.blog-hero__meta .separator {
    color: var(--color-heading);
    font-size: 16px;
    margin-left: 5px;
}

/* --------------------------------------------------------------------
   4. Blog Content / Article Body
-------------------------------------------------------------------- */

.blog-content-section {
    padding: 0px !important;
}

.blog-content-wrapper {
    display: flex;
    justify-content: center;
}

.blog-article {
    /* max-width: var(--content-max); */
    width: 100%;
    margin: 0 auto;
}

/* Lead / intro paragraph — first paragraph after the title */
.blog-article > p:first-of-type {
     font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--color-body);
    margin: 0 0 40px;
}

/* Default body copy */
.blog-article p {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -2%;
    color: var(--color-body);
    /* margin: 0 0 32px; */
    text-justify: newspaper;
}

.blog-article h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: var(--color-body-alt);
    margin: 56px 0 24px;
}

.blog-article h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: var(--color-body-alt);
    /* margin: 40px 0 20px; */
}

.blog-article h4,
.blog-article h5,
.blog-article h6 {
    font-weight: 600;
    color: var(--color-body-alt);
    margin: 32px 0 16px;
}

.blog-article ul,
.blog-article ol {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: var(--color-body);
    margin: 0 0 32px;
    padding-left: 24px;
}

.blog-article li {
    margin-bottom: 12px;
}

.blog-article a {
    color: var(--color-accent);
    text-decoration: underline;
}

.blog-article a:hover {
    color: var(--color-accent-dark);
}

.blog-article blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    border-left: 3px solid var(--color-accent);
    background: var(--color-bg-light);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    line-height: 150%;
    color: var(--color-body);
}

.blog-article img {
    max-width: 100%;
    height: auto;
    display: block; 
    border-radius: var(--radius-sm);
}

/* .blog-article figure {
    margin: 40px 0;
} */

.blog-article figcaption {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 12px;
}

.blog-article .wp-block-columns {
    display: flex;
    gap: 32px;
}

.blog-article strong {
    font-weight: 700;
    color: var(--color-body-alt);
}

/* --------------------------------------------------------------------
   5. Tags
-------------------------------------------------------------------- */

.blog-tags-section {
    padding: 0;
    padding-top: 48px !important;
    border-top: none;
}
.blog-tags-section .container {
    padding-inline: 36px !important;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    max-width: var(--content-max);
    margin: 0 auto;
}

.blog-tags__label {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-heading);
    margin-right: 8px;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 12px 20px;
    background: var(--color-pill-bg);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #000000;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.blog-tag:hover {
    opacity: 1;
    background: var(--gradient-primary);
    color: #FFFFFF;
}

/* Static Article Tags Section (3 Category Headers + 4 columns × 2 rows Grid) */
.blog-tags-section {
    padding: 0px 0px 60px;
    background: #ffffff;
}

.article-tags-headers {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.article-tag-category-header {
    margin: 0;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.15;
    color: #222222;
    letter-spacing: -0.01em;
    font-family: inherit;
}

.article-tags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.article-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    background: #F7F7F7;
    border-radius: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #222222;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    min-height: 52px;
    box-sizing: border-box;
}

.article-tag:hover {
    background: #EBEBEB;
    color: #121212;
}

/* --------------------------------------------------------------------
   6. Share
-------------------------------------------------------------------- */

.blog-share-section {
    padding: 24px 0 48px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: var(--content-max);
    margin: 0 auto;
}

.blog-share__label {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-heading);
}

.blog-share__list {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-share__list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--color-heading);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-share__list a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #FFFFFF;
}

/* --------------------------------------------------------------------
   7. Related Products (Slider / "Shop the Look")
-------------------------------------------------------------------- */

.related-products {
    padding: 64px 0;
    background: var(--color-bg);
}

.related-products .section-heading {
    align-items: center;
    text-align: center;
}

.slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.slider::-webkit-scrollbar {
    height: 6px;
}

.slider::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-pill);
}

.slide {
    flex: 0 0 auto;
    width: 294px;
    scroll-snap-align: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 8px 16px;
    gap: 16px;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    height: 100%;
    box-sizing: border-box;
}

.product-image {
    display: block;
    width: 100%;
    aspect-ratio: 294 / 416;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 8px;
}

.product-brand {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.product-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-title a {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: var(--color-body-alt);
    text-decoration: none;
}

/* mimics the Figma "arrow" vector affordance on category/product cards */
.product-title::after {
    content: "";
    flex: none;
    width: 20px;
    height: 2px;
    background: rgba(51, 51, 51, 0.6);
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background: var(--gradient-primary);
    border-radius: 64px;
    font-weight: 600;
    font-size: 13px;
    line-height: 135%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    align-self: flex-start;
    transition: opacity 0.2s ease;
}

.product-button:hover {
    opacity: 0.85;
}

/* --------------------------------------------------------------------
   8. Blog Navigation (Previous / Next)
-------------------------------------------------------------------- */

.blog-navigation {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
}

.blog-navigation__wrapper {
    display: flex;
    gap: 24px;
}

.blog-navigation__item {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-navigation__item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(153, 79, 103, 0.12);
}

.blog-navigation__next {
    flex-direction: row-reverse;
    text-align: right;
}

.blog-navigation__image {
    flex: none;
    width: 96px;
    height: 96px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.blog-navigation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-navigation__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.blog-navigation__label {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.blog-navigation__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-heading);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-navigation__date {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------
   9. Related Articles
-------------------------------------------------------------------- */

.related-articles {
    padding: 64px 0 96px;
    background: var(--color-bg-light);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-article {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.related-article:hover {
    box-shadow: 0 8px 24px rgba(14, 16, 26, 0.08);
    transform: translateY(-2px);
}

.related-article-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.related-article:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.related-category {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.related-article-content h3 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: var(--color-heading);
}

.related-article-content h3 a {
    color: inherit;
    text-decoration: none;
}

.related-article-content h3 a:hover {
    color: var(--color-accent);
}

.related-article-content p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--color-text-secondary);
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-text-muted);
}

.related-article-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-accent);
    text-decoration: none;
}

.related-article-read:hover {
    color: var(--color-accent-dark);
}

/* ====================================================================
   SHOP THE SS'26 STAPLES SECTION
   3-column product layout with article grid below
==================================================================== */

.shop-staples {
    padding: 48px 0;
}

.shop-staples__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: var(--color-body, #2B2523);
    margin: 0 0 24px;
}

.shop-staples__products {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
}

.shop-staples__products::-webkit-scrollbar {
    display: none;
}

.staple-product {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: transparent;
    text-decoration: none;
}

.staple-product__image {
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0;
}

.staple-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    aspect-ratio: 3 / 4;
    border-radius: 0;
}

.staple-product:hover .staple-product__image img {
    transform: scale(1.04);
}

.staple-product__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0 0;
    text-align: center;
}

.staple-product__name {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: var(--color-body, #2B2523);
    text-align: center;
}

.staple-product__arrow {
    display: none;
}

/* Article Grid Section */
.shop-staples__articles {
    border: 3px solid #FF0000;
    border-radius: 4px;
    padding: 32px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.article-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #F5F6F7;
    border-radius: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #666;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.article-link:hover {
    background: #E8E8E8;
    color: var(--color-body);
}

/* ====================================================================
   REFERENCE DESIGN OVERRIDES (Exact Style Matching)
   Ensures hero, content sections, and related articles match the 
   provided design spec precisely.
==================================================================== */

/* Hero: ensure clean typography and spacing */

.blog-hero__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
}

/* Product cards: maintain reference spacing and borders */
.product-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-soft);
    border-radius: 4px;
}

.product-image {
    border-radius: 2px;
}

/* Related articles grid: 3-column layout with proper spacing */
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-article {
    background: #FFFFFF;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
}

.related-article-image {
    aspect-ratio: 4 / 3;
}

.related-article-content {
    padding: 24px;
}

.related-article-content h3 {
    font-size: 20px;
    font-weight: 700;
}


/* .. 31/07*/
/* ==========================================================================
   SINGLE CATEGORY NAVIGATION
   Exact Figma Desktop Dimensions
   ========================================================================== */

.single-category-navigation {
    width: 100%;
    padding: 0;
    margin: 0;
}


/* --------------------------------------------------------------------------
   Container

   The Figma card wrapper is exactly 1250px wide.
   -------------------------------------------------------------------------- */

.single-category-navigation .container {
     width: 905px;
    max-width: 900px;
    padding: 0;
    margin: 0px 0px 0px 120px;

    box-sizing: border-box;
}


/* --------------------------------------------------------------------------
   Card Wrapper

   Figma:
   width: 1250px;
   height: 248.16px;
   gap: 8.07px;
   -------------------------------------------------------------------------- */

.single-category-navigation__grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;

    width: 1250px;
    height: 248.16px;

    padding: 0;
    margin: 0;

    gap: 8.07px;

    box-sizing: border-box;
}


/* --------------------------------------------------------------------------
   Categories Card

   Figma:
   width: 306.45px;
   height: 247.85px;

   padding:
   4.03252px
   4.03252px
   8.06504px;
   -------------------------------------------------------------------------- */

.single-category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    flex: none;

    width: 306.45px;
    height: 247.85px;

    padding:
        4.03252px
        4.03252px
        8.06504px;

    margin: 0;

    gap: 8.07px;

    box-sizing: border-box;

    background: transparent;

    border: 0;

    border-radius: 2.01626px;

    color: #333333;

    text-decoration: none;

    overflow: hidden;
}


/* --------------------------------------------------------------------------
   Active Card

   Figma:
   background: #F2E8E8;
   -------------------------------------------------------------------------- */

.single-category-card.is-active {
    background: #f2e8e8;
}


/* --------------------------------------------------------------------------
   Image

   Figma:
   width: 298.39px;
   height: 209.69px;

   border:
   0.504065px solid rgba(51, 51, 51, 0.4);

   border-radius: 1.00813px;
   -------------------------------------------------------------------------- */

.single-category-card__image {
    box-sizing: border-box;

    flex: none;

    width: 298.39px;
    height: 209.69px;

    padding: 0;
    margin: 0;

    overflow: hidden;

    background: #ffffff;

    /* border:
        0.504065px solid
        rgba(51, 51, 51, 0.4); */

    border-radius: 1.00813px;
}


/* --------------------------------------------------------------------------
   Category Image

   The image fills the exact Figma image layer.
   -------------------------------------------------------------------------- */

.single-category-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    border: 0;

    border-radius: inherit;
}


/* --------------------------------------------------------------------------
   Empty Image

   Only used if an image is missing.
   -------------------------------------------------------------------------- */

.single-category-card__placeholder {
    width: 100%;
    height: 100%;

    background: #eeeeee;
}


/* --------------------------------------------------------------------------
   Headline Wrapper

   Figma:
   width: 298.39px;
   height: 18px;

   padding:
   0px 8.06504px 0px 0px;

   gap: 5.04px;
   -------------------------------------------------------------------------- */

.single-category-card__headline {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    flex: none;

    width: 298.39px;
    height: 18px;

    padding:
        0
        8.06504px
        0
        0;

    margin: 0;

    gap: 5.04px;

    box-sizing: border-box;
}


/* --------------------------------------------------------------------------
   Headline 3

   Figma:
   width: 290.32px;
   height: 18px;

   font-family: Manrope;
   font-weight: 600;
   font-size: 16.1301px;
   line-height: 112%;
   letter-spacing: -0.02em;
   -------------------------------------------------------------------------- */

.single-category-card__headline h3 {
    flex: none;

    width: 290.32px;
    height: 18px;

    padding: 0;
    margin: 0 auto;

    font-family:
        "Manrope",
        sans-serif;

    font-style: normal;

    font-weight: 600;

    font-size: 16.1301px;

    line-height: 112%;


    color: #333333;

    text-decoration: none;

    font-family: Manrope;

    letter-spacing: -2%;

}


/* --------------------------------------------------------------------------
   Active Headline

   Figma:
   color: #994F67;
   -------------------------------------------------------------------------- */

.single-category-card.is-active
.single-category-card__headline h3 {
    color: #994f67;
}


/* --------------------------------------------------------------------------
   Prevent Astra defaults from changing the card appearance
   -------------------------------------------------------------------------- */

.single-category-card:hover,
.single-category-card:focus,
.single-category-card:visited {
    text-decoration: none;
}

.single-category-card:hover
.single-category-card__headline h3 {
    color: #333333;
}

.single-category-card.is-active:hover
.single-category-card__headline h3 {
    color: #994f67;
}

.wp-block-uagb-container {
    padding-inline: 0px !important;
}


/* Bookmark and highlight styles for blog detail page */
#blog-detail-start {
    scroll-margin-top: 100px;
}

#blog-detail-start.blog-detail-bookmark-highlight {
    animation: blog-detail-bookmark-highlight 1.8s ease-out;
}

/* @keyframes blog-detail-bookmark-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(166, 93, 100, 0.35);
    }

    35% {
        box-shadow: 0 0 0 12px rgba(166, 93, 100, 0.12);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(166, 93, 100, 0);
    }
} */
 /* Bookmark and highlight styles for blog detail page */
 
