/* ==========================================================
   CALIBRE JOURNAL — EDITORIAL ARTICLE
========================================================== */


/* ==========================================================
   PAGE
========================================================== */

.cj-article-page {
    width: 100%;

    background: #f6f3ec;
    color: #1d1d1d;
}

.cj-article-container {
    width: min(calc(100% - 100px), 1280px);
    margin: 0 auto;
}

.cj-article-reading-width {
    width: min(calc(100% - 100px), 720px);
    margin: 0 auto;
}

.cj-article-back {
    width: min(calc(100% - 100px), 1280px);
    margin: 22px auto 0;
}

.cj-article-back a {
    display: inline-flex;
    align-items: center;

    padding: 10px 15px;

    background: #46523d;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.9px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cj-article-back a:hover {
    background: #35402f;
    color: #ffffff;
    transform: translateX(-2px);
}

/* ==========================================================
   HERO
========================================================== */

.cj-article-hero {
    padding: 35px 0 50px;
}

.cj-article-hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    height: 390px;
    min-height: 0;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #ded9cf;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.cj-article-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px 50px;
}

.cj-article-category,
.cj-article-label {
    display: block;

    color: #b38b3c;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.cj-article-category {
    margin-bottom: 15px;
}

.cj-article-hero-content h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 2.8vw, 46px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -1.3px;
}

.cj-article-intro {
    max-width: 450px;

    margin: 20px 0 0;

    color: #656565;

    font-size: 14px;
    line-height: 1.6;
}

.cj-article-author {
    display: block;

    margin-top: 18px;

    color: #8a887f;

    font-size: 10px;
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.cj-article-hero-image {
    min-width: 0;
    min-height: 0;
    height: 390px;

    overflow: hidden;
}

.cj-article-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center 60%;
}

.cj-article-hero-image img.rolex-hero-image {
    object-fit: contain;
    object-position: right center;
    transform: scale(2,02);
    transform-origin: right center;
}

/* ==========================================================
   NORMAL ARTICLE TEXT
========================================================== */

.cj-article-section {
    padding: 25px 0 80px;
}

.cj-article-reading-width {
    width: min(calc(100% - 100px), 760px);
    margin: 0 auto;
}

.cj-article-reading-width > p {
    margin: 0 0 20px;

    color: #55534f;

    font-size: 15px;
    line-height: 1.75;
}

.cj-article-reading-width > p:last-child {
    margin-bottom: 0;
}

.cj-article-lead {
    margin: 0 0 26px !important;

    color: #252525 !important;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px !important;
    font-weight: 400;
    line-height: 1.5 !important;
}


/* Headings in normal reading sections */

.cj-article-reading-width > .cj-article-label + h2 {
    margin: 14px 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* ==========================================================
   FEATURE SECTION
========================================================== */

.cj-article-feature-section {
    padding: 90px 0;

    border-top: 1px solid #ded9cf;
    border-bottom: 1px solid #ded9cf;
}

.cj-article-feature-grid {
    width: min(calc(100% - 100px), 1050px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.75fr);

    gap: 90px;

    align-items: center;
}


/* ==========================================================
   HEADINGS
========================================================== */

.cj-article-feature-text h2,
.cj-article-image-text h2,
.cj-article-final-section h2 {
    margin: 15px 0 27px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 39px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.7px;
}


/* ==========================================================
   QUOTE
========================================================== */

.cj-article-quote {
    padding: 45px;

    background: #ebe5da;
}

.cj-article-quote-mark {
    display: block;

    height: 40px;

    color: #b38b3c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 70px;
    line-height: 1;
}

.cj-article-quote blockquote {
    margin: 15px 0 0;

    color: #282828;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
}


/* ==========================================================
   IMAGE + TEXT SECTION
========================================================== */

.cj-article-image-section {
    padding: 90px 0;

    background: #ffffff;
}

.cj-article-image-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    gap: 70px;

    align-items: center;
}

.cj-article-secondary-image {
    height: 450px;

    overflow: hidden;
}

.cj-article-hero-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* ==========================================================
   FINAL SECTION
========================================================== */

.cj-article-final-section {
    padding: 90px 0 110px;
}

.cj-article-final-section .cj-article-label {
    margin-bottom: 0;
}

/* ==========================================================
   BUYING NOTE
========================================================== */

.cj-article-buying-note {
    margin-top: 60px;
    padding: 32px 35px;

    background: #ebe5da;
    border-left: 3px solid #46523d;
}

.cj-article-buying-note h3 {
    margin: 10px 0 16px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.cj-article-buying-note p {
    margin: 0 0 14px;

    color: #55534f;
    font-size: 14px;
    line-height: 1.7;
}

.cj-article-buying-note p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   END NOTE
========================================================== */

.cj-article-end-note {
    margin-top: 65px;
    padding: 38px 20px 0;

    border-top: 1px solid #b38b3c;

    text-align: center;
}

.cj-article-end-note span {
    color: #b38b3c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.cj-article-end-note p {
    max-width: 620px;

    margin: 17px auto 0 !important;

    color: #222222 !important;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px !important;
    line-height: 1.4 !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .cj-article-container {
        width: calc(100% - 60px);
    }

   .cj-article-hero-grid {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
   }
   
    .cj-article-hero-content {
        padding: 55px;
    }

    .cj-article-hero-content h1 {
        max-width: 700px;
    }

    .cj-article-hero-image {
        height: 500px;
        min-height: 0;
    }

    .cj-article-feature-grid {
        width: calc(100% - 60px);

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .cj-article-image-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .cj-article-container,
    .cj-article-reading-width,
    .cj-article-feature-grid {
        width: calc(100% - 32px);
    }


    /* HERO */

    .cj-article-hero {
        padding: 30px 0 55px;
    }

    .cj-article-hero-content {
        padding: 35px 25px;
    }

    .cj-article-hero-content h1 {
        font-size: 39px;

        line-height: 1.04;

        letter-spacing: -1px;
    }

    .cj-article-intro {
        font-size: 15px;
    }

    .cj-article-hero-image {
        height: 320px;
    }


    /* ARTICLE */

    .cj-article-section {
        padding-bottom: 60px;
    }

    .cj-article-lead {
        font-size: 24px !important;
    }


    /* FEATURE */

    .cj-article-feature-section {
        padding: 60px 0;
    }

    .cj-article-feature-text h2,
    .cj-article-image-text h2,
    .cj-article-final-section h2 {
        font-size: 32px;
    }


    /* QUOTE */

    .cj-article-quote {
        padding: 35px 28px;
    }

    .cj-article-quote blockquote {
        font-size: 22px;
    }


    /* IMAGE SECTION */

    .cj-article-image-section {
        padding: 60px 0;
    }

    .cj-article-secondary-image {
        height: 300px;
    }


    /* FINAL */

    .cj-article-final-section {
        padding: 60px 0 80px;
    }

    .cj-article-end-note {
        margin-top: 45px;
    }

    .cj-article-end-note p {
        font-size: 24px !important;
    }
}
    /* =====================================================
   RELATED REVIEWS
===================================================== */

.cj-article-related {
    padding: 90px 0;
    border-top: 1px solid #ded9cf;
}

.cj-article-related .cj-article-reading-width {
    margin-left: auto;
    margin-right: auto;
}

.cj-article-related h2 {
    margin-top: 14px;
    margin-bottom: 20px;
}

.cj-article-related > .cj-article-reading-width > p {
    margin-bottom: 32px;
}

.cj-article-related-links {
    border-top: 1px solid rgba(45, 45, 45, 0.18);
}

.cj-article-related-links a {
    display: flex;
    align-items: center;

    padding: 6px 12px;

    border-bottom: 1px solid rgba(45, 45, 45, 0.18);

    color: inherit;
    text-decoration: none;

    transition: opacity 0.2s ease;
}

.cj-article-related-links a:hover {
    opacity: 0.65;
}

.cj-article-related-links img {
    width: 100px;
    height: 75px;

    object-fit: cover;
    display: block;

    flex-shrink: 0;
}

.cj-related-title {
    flex: 1;

    padding-left: 18px;

    font-family: Georgia, serif;
    font-size: 1rem;
}

.cj-related-arrow {
    margin-left: 20px;

    font-size: 1.5rem;
    line-height: 1;

    color: #9b762f;
}

.cj-related-watch {
    display: block;
}

.cj-related-guide {
    display: block;

    margin-top: 5px;

    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #9b762f;
}