/* ==========================================================
   CALIBRE JOURNAL
   WATCH DETAIL / REVIEW
========================================================== */

.cj-watch-detail {
    background: #f6f3ec;
    color: #1d1d1d;
}

.cj-review-container {
    width: min(100% - 80px, 1460px);
    margin: 0 auto;
}

.cj-reading-width {
    width: min(100% - 80px, 820px);
    margin: 0 auto;
}

/* ==========================================================
   BACK TO GUIDE
========================================================== */

.cj-review-back {
    padding-top: 24px;
}

.cj-back-button {
    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;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cj-back-button:hover {
    background: #35402f;
    transform: translateX(-2px);
}

/* ==========================================================
   HERO
========================================================== */

.cj-review-hero {
    padding: 14px 0 50px;
}

.cj-review-kicker,
.cj-section-kicker,
.cj-small-label {
    color: #b38b3c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
}


/* ==========================================================
   HERO GRID
========================================================== */

.cj-review-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    height: 550px;
    overflow: hidden;

    border: 1px solid #ded9cf;
    border-radius: 3px;

    background: #ffffff;

    box-shadow: 0 12px 35px rgba(20, 20, 20, 0.05);
}

/* ==========================================================
   MAIN IMAGE
========================================================== */

.cj-review-main-image {
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #ebe8df;
}

.cj-review-main-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}


/* ==========================================================
   REVIEW OVERVIEW
========================================================== */

.cj-review-overview {
    display: grid;
    grid-template-rows: 220px 210px 1fr;

    min-width: 0;
    height: 100%;

    padding: 34px 36px 26px;
}

/* ==========================================================
   INTRO + QUICK TAKE
========================================================== */

.cj-review-overview-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);

    height: 100%;
    padding-bottom: 26px;

    border-bottom: 1px solid #e4e0d8;
}

.cj-watch-intro {
    padding-right: 32px;
}

.cj-watch-intro h1 {
    margin: 10px 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.2vw, 52px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -1.5px;

    overflow-wrap: anywhere;
}

.cj-watch-intro-text {
    max-width: 280px;
    margin: 0;

    color: #666;
    font-size: 14px;
    line-height: 1.65;
}


/* QUICK TAKE */

.cj-quick-take {
    display: block;

    padding: 0 0 0 32px;

    border-left: 1px solid #e4e0d8;
}

.cj-rating {
    display: flex;
    align-items: baseline;

    margin: 10px 0 10px;
}

.cj-rating strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.cj-rating span {
    margin-left: 5px;

    color: #777;
    font-size: 13px;
}

.cj-quick-take > p {
    max-width: 280px;
    margin: 0;

    color: #666;
    font-size: 12px;
    line-height: 1.65;
}


/* ==========================================================
   6 KEY SPECS
========================================================== */

.cj-key-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 0;

    border-bottom: 1px solid #e4e0d8;
}

.cj-key-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 105px;
    padding: 15px 10px;

    text-align: center;
}

.cj-key-spec:nth-child(1),
.cj-key-spec:nth-child(2),
.cj-key-spec:nth-child(3) {
    border-bottom: 1px solid #e4e0d8;
}

.cj-key-spec:not(:nth-child(3n)) {
    border-right: 1px solid #e4e0d8;
}

.cj-spec-icon {
    display: block;

    margin-bottom: 7px;

    color: #252525;
    font-size: 18px;
    line-height: 1;
}

.cj-key-spec small {
    display: block;

    margin-bottom: 5px;

    color: #969188;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cj-key-spec strong {
    color: #252525;
    font-size: 11px;
    font-weight: 700;
}


/* ==========================================================
   HERO BOTTOM
========================================================== */

.cj-review-overview-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: auto;
    padding-top: 20px;
}


/* ==========================================================
   PROS / CONS
========================================================== */

.cj-review-points {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 24px;

    margin: 0;
}

.cj-review-points p {
    margin: 0;

    color: #5f5f5f;
    font-size: 9px;
    white-space: nowrap;
}

.cj-review-points span {
    display: inline-block;

    width: 18px;

    font-size: 12px;
    font-weight: 700;
}

.cj-review-points .positive {
    color: #46523d;
}

.cj-review-points .negative {
    color: #a56f5c;
}


/* ==========================================================
   BUTTON
========================================================== */

.cj-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 15px 24px;

    background: #46523d;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cj-review-button:hover {
    background: #35402f;
    transform: translateY(-1px);
}

/* ==========================================================
   ARTICLE SECTION
========================================================== */

.cj-review-section {
    padding: 65px 0;
    background: #ffffff;
}

.cj-review-section h2,
.cj-feature-copy h2,
.cj-brand-heading h2,
.cj-verdict h2 {
    margin: 12px 0 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.05;
}

.cj-review-section p,
.cj-feature-copy p,
.cj-brand-copy p,
.cj-verdict p {
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.85;
}


/* ==========================================================
   FEATURE + SPECS
========================================================== */

.cj-review-feature {
    padding: 65px 0;
}

.cj-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 100px;

    align-items: start;
}

.cj-feature-copy {
    max-width: 700px;
}


/* ==========================================================
   SPEC CARD
========================================================== */

.cj-spec-card {
    padding: 34px;

    border: 1px solid #dcd7cc;

    background: #ffffff;
}

.cj-spec-card > .cj-small-label {
    display: block;
    margin-bottom: 24px;
}

.cj-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 15px 0;

    border-top: 1px solid #e2ded5;
}

.cj-spec-row span {
    color: #777;
    font-size: 13px;
}

.cj-spec-row strong {
    font-size: 13px;
    text-align: right;
}


/* ==========================================================
   BRAND
========================================================== */

.cj-brand-section {
    padding: 80px 0;

    background: #e9e6dc;
}

.cj-brand-block {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;

    align-items: center;
}

.cj-brand-heading h2 {
    margin-bottom: 12px;
}

.cj-brand-meta {
    margin: 0;

    color: #777;
    font-size: 13px;
}


/* ==========================================================
   VERDICT
========================================================== */

.cj-verdict-section {
    padding: 65px 0;
    background: #ffffff;
}

.cj-verdict {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 100px;

    align-items: center;
}

.cj-verdict > div:first-child {
    max-width: 720px;
}

.cj-verdict-score {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 38px;

    border: 1px solid #ded9cf;

    text-align: center;
}

.cj-verdict-score > span {
    color: #b38b3c;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cj-verdict-score strong {
    margin: 12px 0 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 68px;
    font-weight: 400;
    line-height: 1;
}

.cj-verdict-score small {
    margin: 6px 0 26px;

    color: #888;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cj-verdict-score .cj-review-button {
    align-self: center;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {


.cj-review-hero-grid {
    height: auto;
}

.cj-review-overview {
    display: flex;
    height: auto;
}

.cj-review-main-image {
    height: 480px;
}

.cj-review-main-image img {
    min-height: 0;
}

    .cj-review-hero-grid,
    .cj-feature-grid,
    .cj-brand-block,
    .cj-verdict {
        grid-template-columns: 1fr;
    }

    .cj-feature-grid,
    .cj-brand-block,
    .cj-verdict {
        gap: 50px;
    }

    .cj-review-main-image img {
        min-height: 480px;
    }

    .cj-review-overview {
        padding: 36px;
    }

    .cj-verdict-score {
        max-width: 320px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

@media (max-width: 650px) {

    .cj-review-main-image {
        height: 340px;
    }

}

    .cj-review-container,
    .cj-reading-width {
        width: min(100% - 32px, 1460px);
    }

    .cj-review-hero {
        padding: 24px 0 40px;
    }

    .cj-review-main-image img {
        min-height: 340px;
    }

    .cj-review-overview {
        padding: 28px 22px 24px;
    }

    .cj-review-overview-top {
        grid-template-columns: 1fr;
    }

    .cj-watch-intro {
        padding: 0 0 26px;
    }

    .cj-watch-intro h1 {
        font-size: 44px;
    }

    .cj-quick-take {
        padding: 26px 0 0;

        border-top: 1px solid #e4e0d8;
        border-left: 0;
    }

    .cj-key-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .cj-key-spec {
        border-right: 0 !important;
        border-bottom: 1px solid #e4e0d8;
    }

    .cj-key-spec:nth-child(odd) {
        border-right: 1px solid #e4e0d8 !important;
    }

    .cj-key-spec:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .cj-review-overview-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .cj-review-points {
        grid-template-columns: 1fr;
    }

    .cj-review-points p {
        white-space: normal;
    }

    .cj-review-button {
        align-self: stretch;
    }

    .cj-review-section,
    .cj-review-feature,
    .cj-brand-section,
    .cj-verdict-section {
        padding: 65px 0;
    }

}
