/*==================================================*
* MAISON CINNAMONN
* JOURNAL ARTICLE
*==================================================*/


/*==================================================*
* ARTICLE HEADER
*==================================================*/

.article-header {
    width: min(1050px, 90%);
    margin: 0 auto;
    padding: 190px 0 100px;
    text-align: center;
}

.article-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    margin-bottom: 55px;

    font-family: var(--font-sans);
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--color-text-light);
}

.article-breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color .35s ease;
}

.article-breadcrumb a:hover {
    color: var(--color-text);
}

.article-category {
    display: block;
    margin-bottom: 18px;

    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;

    color: var(--color-accent);
}

.article-date {
    display: block;
    margin-bottom: 32px;

    font-family: var(--font-sans);
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--color-text-light);
}

.article-title {
    max-width: 1050px;
    margin: 0 auto;

    font-family: var(--font-serif);
    font-size: clamp(3.4rem, 6.5vw, 7rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.025em;

    color: var(--color-text);
}


/*==================================================*
* ARTICLE HEADER — FORCE VISIBLE
*==================================================*/

body.light-header .site-header {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    background: rgba(248, 246, 242, .97);

    border-bottom: 1px solid rgba(0, 0, 0, .06);

    backdrop-filter: blur(18px);
}

body.light-header .site-header .logo {
    display: flex;
    align-items: center;

    visibility: visible !important;
    opacity: 1 !important;
}

body.light-header .site-header .logo img {
    display: block !important;

    width: 185px;
    height: auto;

    visibility: visible !important;
    opacity: 1 !important;
}

body.light-header .site-header .main-navigation {
    visibility: visible !important;
    opacity: 1 !important;
}

body.light-header .site-header .main-navigation a {
    color: var(--color-text);
}

body.light-header .site-header .main-navigation a::after {
    background: var(--color-text);
}


/*==================================================*
* HERO IMAGE
*==================================================*/

.article-hero {
    width: min(1750px, 94%);
    margin: 0 auto 180px;

    overflow: hidden;
}

.article-hero img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;
    object-fit: cover;
}


/*==================================================*
* ARTICLE BODY
*==================================================*/

.article-body {
    width: 100%;
}

.article-section {
    width: min(760px, 88%);
    margin: 0 auto;

    padding: 100px 0;
}

.article-section h2 {
    max-width: 850px;
    margin: 0 0 45px;
}

.article-section p {
    margin: 0 0 28px;

    font-size: 1.08rem;
    line-height: 1.95;
}

.article-section p:last-child {
    margin-bottom: 0;
}


/*==================================================*
* OPENING
*==================================================*/

.article-opening {
    padding-top: 0;
    padding-bottom: 150px;
}

.article-opening p {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    line-height: 1.6;

    color: var(--color-text);
}


/*==================================================*
* ARTICLE IMAGES
*==================================================*/

.article-image {
    margin: 130px auto;
    overflow: hidden;
}

.article-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}

.article-image-wide {
    width: min(1500px, 92%);
}

.article-image-wide img {
    aspect-ratio: 16 / 10;
}

.article-image-medium {
    width: min(1050px, 86%);
}

.article-image-medium img {
    aspect-ratio: 4 / 3;
}

.article-image-full {
    width: 100%;
}

.article-image-full img {
    aspect-ratio: 16 / 9;
}


/*==================================================*
* EDITORIAL PAUSE
*==================================================*/

.article-pause {
    width: min(1100px, 90%);
    margin: 160px auto;

    padding: 100px 40px;

    text-align: center;
}

.article-pause p {
    max-width: 900px;
    margin: 0 auto;

    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;

    color: var(--color-text);
}


/*==================================================*
* ARTICLE CONCLUSION
*==================================================*/

.article-conclusion {
    width: 100%;

    padding: 190px 0;

    background: var(--color-background);
    color: var(--color-text);

    opacity: 1;

    text-align: center;
}

.article-conclusion-text {
    width: min(950px, 88%);
    margin: 0 auto;

    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 4.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -.02em;

    color: var(--color-text);

    opacity: 1;
}


/*==================================================*
* FAQ
*==================================================*/

.article-faq {
    padding: 180px 0;
    background: var(--color-surface);
}

.article-faq-heading {
    width: min(900px, 90%);
    margin: 0 auto 80px;

    text-align: center;
}

.article-faq-heading .section-label {
    display: block;
    text-align: center;
}

.article-faq-heading h2 {
    margin: 20px auto 0;
}

.faq-list {
    width: min(900px, 90%);
    margin: 0 auto;

    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    position: relative;

    padding: 30px 55px 30px 0;

    cursor: pointer;
    list-style: none;

    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1.4;

    color: var(--color-text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 5px;

    transform: translateY(-50%);

    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;

    transition: transform .35s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-width: 760px;
    padding: 0 0 30px;
}

.faq-answer p {
    margin: 0;

    font-size: 1rem;
    line-height: 1.8;
}


/*==================================================*
* RELATED JOURNAL
*==================================================*/

.related-journal {
    padding: 190px 0;
    background: var(--color-background);
}


/* Heading */

.related-heading {
    width: min(900px, 90%);
    margin: 0 auto 80px;

    text-align: center;
}

.related-heading .section-label {
    display: block;
    text-align: center;
}

.related-heading h2 {
    max-width: 850px;
    margin: 20px auto 0;
}


/* Grid */

.related-grid {
    width: min(1500px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 38px;

    align-items: start;
}


/* Story */

.related-story {
    min-width: 0;
    overflow: hidden;
}

.related-story a {
    display: block;

    color: inherit;
    text-decoration: none;
}


/* Image */

.related-story > a > img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    background: var(--color-surface);

    transition: transform 1.4s ease;
}

.related-story:hover > a > img {
    transform: scale(1.02);
}


/* Content */

.related-story-content {
    padding-top: 24px;
}

.related-story-content span {
    display: block;

    margin-bottom: 12px;

    font-family: var(--font-sans);
    font-size: .62rem;
    font-weight: 500;

    letter-spacing: .20em;
    text-transform: uppercase;

    color: var(--color-accent);
}

.related-story-content h3 {
    margin: 0;

    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;

    color: var(--color-text);
}


/*==================================================*
* PRIVATE CONSULTATION CTA
*==================================================*/

.article-cta {
    padding: 210px 0;

    background: var(--color-surface);

    text-align: center;
}

.article-cta .container-sm {
    width: min(900px, 90%);
    margin: 0 auto;

    text-align: center;
}

.article-cta .section-label {
    display: block;
    text-align: center;
}

.article-cta h2 {
    max-width: 850px;
    margin: 22px auto 30px;
}

.article-cta p {
    max-width: 600px;
    margin: 0 auto 48px;
}


/*==================================================*
* CONSULTATION BUTTON
*==================================================*/

.article-cta .consultation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 260px;

    padding: 17px 30px;

    border: 1px solid var(--color-text);

    background: transparent;
    color: var(--color-text);

    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 1.2;

    text-align: center;
    text-decoration: none;

    cursor: pointer;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}

.article-cta .consultation-button:hover {
    background: var(--color-text);
    color: var(--color-background);
    border-color: var(--color-text);
}


/*==================================================*
* ARTICLE LINKS
*==================================================*/

.article-body a {
    color: var(--color-text);
}

.article-body a:hover {
    opacity: .65;
}


/*==================================================*
* TABLET
*==================================================*/

@media (max-width: 1000px) {

    .article-header {
        padding-top: 150px;
    }

    .article-title {
        font-size: clamp(3.2rem, 7vw, 5.5rem);
    }

    .article-section {
        padding: 80px 0;
    }

    .article-image {
        margin: 100px auto;
    }

    .article-conclusion {
        padding: 150px 0;
    }

    .article-faq,
    .related-journal,
    .article-cta {
        padding: 150px 0;
    }

    body.light-header .site-header .logo img {
        width: 150px;
    }


    /* Related */

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 30px;
    }

}


/*==================================================*
* MOBILE
*==================================================*/

@media (max-width: 768px) {

    .article-header {
        width: 92%;
        padding: 120px 0 70px;
    }

    .article-breadcrumb {
        margin-bottom: 40px;

        font-size: .58rem;
        letter-spacing: .12em;
    }

    .article-category {
        font-size: .62rem;
        letter-spacing: .22em;
    }

    .article-date {
        font-size: .6rem;
    }

    .article-title {
        font-size: clamp(2.8rem, 11vw, 4.2rem);
        line-height: 1.04;
    }

    .article-hero {
        width: 92%;
        margin-bottom: 100px;
    }

    .article-hero img {
        aspect-ratio: 4 / 3;
    }

    .article-section {
        width: 90%;
        padding: 65px 0;
    }

    .article-section h2 {
        margin-bottom: 30px;
    }

    .article-section p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .article-opening {
        padding-bottom: 80px;
    }

    .article-opening p {
        font-size: 1.35rem;
        line-height: 1.55;
    }

    .article-image,
    .article-image-wide,
    .article-image-medium {
        width: 92%;
        margin: 80px auto;
    }

    .article-image-full {
        width: 100%;
    }

    .article-image-full img {
        aspect-ratio: 4 / 3;
    }

    .article-pause {
        width: 90%;
        margin: 100px auto;
        padding: 60px 20px;
    }

    .article-pause p {
        font-size: 2.2rem;
    }

    .article-conclusion {
        padding: 120px 0;
    }

    .article-conclusion-text {
        width: 90%;
        font-size: clamp(2rem, 8vw, 3rem);
    }


    /* FAQ */

    .article-faq {
        padding: 110px 0;
    }

    .article-faq-heading {
        width: 90%;
        margin-bottom: 55px;
    }

    .faq-list {
        width: 90%;
    }

    .faq-item summary {
        padding: 24px 40px 24px 0;
        font-size: 1.2rem;
    }

    .faq-answer p {
        font-size: .95rem;
        line-height: 1.75;
    }


    /* Related */

    .related-journal {
        padding: 110px 0;
    }

    .related-heading {
        width: 90%;
        margin-bottom: 55px;
    }

    .related-grid {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .related-story-content {
        padding-top: 20px;
    }

    .related-story-content h3 {
        font-size: 2rem;
    }


    /* CTA */

    .article-cta {
        padding: 130px 0;
    }

    .article-cta .container-sm {
        width: 90%;
    }

    .article-cta h2 {
        margin-top: 18px;
    }

    .article-cta p {
        margin-bottom: 38px;
    }

    .article-cta .consultation-button {
        min-width: 0;
        width: auto;
        max-width: 100%;

        padding: 16px 22px;

        font-size: .62rem;
        letter-spacing: .12em;
    }

}


/*==================================================*
* SMALL MOBILE
*==================================================*/

@media (max-width: 480px) {

    .article-header {
        padding-top: 105px;
    }

    .article-title {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .article-pause p {
        font-size: 2rem;
    }

    .related-story-content h3 {
        font-size: 1.8rem;
    }

}


/*==================================================*
* REDUCED MOTION
*==================================================*/

@media (prefers-reduced-motion: reduce) {

    .article-body *,
    .article-cta *,
    .related-journal *,
    .article-header * {
        animation: none !important;
        transition: none !important;
    }

}