/* ==========================================================
   TOP 5 BUYING GUIDE
========================================================== */

.cj-top-guide {
    background: #f6f3ec;
    color: #1d1d1d;
}


/* ==========================================================
   COMPACT HERO
========================================================== */

.cj-top-guide-hero {
    padding: 34px 0 30px;
    text-align: center;
}

.cj-top-guide-hero h1 {
    max-width: 900px;
    margin: 8px auto 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.5px;
}

.cj-top-guide-hero p {
    max-width: 720px;
    margin: 0 auto;

    color: #625e56;

    font-size: 15px;
    line-height: 1.6;
}


/* ==========================================================
   TOP 5 LIST
========================================================== */

.cj-top-five {
    padding: 10px 0 80px;
}

.cj-top-five-list {
    display: grid;
    gap: 18px;

    max-width: 1400px;
    margin: 0 auto;
}


/* ==========================================================
   WATCH CARD
========================================================== */

.cj-top-watch-card {
    display: grid;
    grid-template-columns: 38% 62%;

    height: 300px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(29, 29, 29, 0.1);
}


/* IMAGE */

.cj-top-watch-image {
    height: 300px;
    overflow: hidden;

    background: #e9e6dc;
}

.cj-top-watch-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.cj-top-watch-card:hover .cj-top-watch-image img {
    transform: scale(1.025);
}


/* CONTENT */

.cj-top-watch-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 28px 40px;
}

.cj-top-watch-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.cj-top-watch-number {
    color: #b38b3c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1;
}

.cj-top-watch-label {
    display: block;

    margin-bottom: 6px;

    color: #b38b3c;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.cj-top-watch-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
}

.cj-top-watch-content > p {
    max-width: 680px;

    margin: 16px 0;

    color: #625e56;

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   SPECS
========================================================== */

.cj-top-watch-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;

    margin-bottom: 18px;
    padding-top: 14px;

    border-top: 1px solid #ddd8cd;
}

.cj-top-watch-specs span {
    color: #625e56;

    font-size: 11px;
    font-weight: 600;
}


/* ==========================================================
   BUTTON
========================================================== */

.cj-top-watch-button {
    align-self: flex-start;

    padding: 11px 17px;

    background: #46523d;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;

    text-decoration: none;
}

.cj-top-watch-button:hover {
    background: #35402f;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 850px) {

    .cj-top-watch-card {
        grid-template-columns: 42% 58%;
    }

    .cj-top-watch-content {
        padding: 25px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .cj-top-guide-hero {
        padding: 30px 0 25px;
    }

    .cj-top-guide-hero h1 {
        font-size: 38px;
    }

    .cj-top-watch-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .cj-top-watch-image {
        height: 250px;
    }

    .cj-top-watch-content {
        padding: 25px 22px 28px;
    }

}
.cj-top-guide-hero {
    padding: 30px 0 !important;
    text-align: center !important;
}

.cj-top-guide-hero h1 {
    font-size: 50px !important;
    line-height: 1 !important;
}

.cj-top-watch-card {
    display: grid !important;
    grid-template-columns: 38% 62% !important;
    height: 280px !important;
}

.cj-top-watch-image {
    height: 280px !important;
}

.cj-top-watch-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ==========================================================
   HONORABLE MENTION - UNDER $150
========================================================== */

.cj-top-watch-card.cj-honorable-mention {
    border: 2px solid #46523d;
}

/* Groen label */
.cj-top-watch-card.cj-honorable-mention .cj-top-watch-label {
    display: inline-block;
    width: fit-content;

    margin-bottom: 8px;
    padding: 8px 13px;

    background: #46523d;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

/* Groen blok rondom het plusje */
.cj-top-watch-card.cj-honorable-mention .cj-top-watch-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    flex-shrink: 0;

    background: #46523d;
    color: #ffffff;

    font-size: 28px;
    line-height: 1;
}

.cj-top-watch-card.cj-honorable-mention .cj-top-watch-content {
    padding-bottom: 24px;
}

.cj-top-watch-card.cj-honorable-mention .cj-top-watch-button {
    margin-top: auto;
    transform: translateY(-14px);
}

.cj-top-watch-card.cj-honorable-mention {
    position: relative;
}

.cj-top-watch-card.cj-honorable-mention .cj-top-watch-label {
    position: absolute;
    top: 24px;
    right: 28px;
    margin: 0;
}

.cj-top-watch-card.cj-honorable-mention .cj-top-watch-heading {
    align-items: flex-start;
}

.cj-top-watch-card.cj-honorable-mention .cj-top-watch-heading > div {
    padding-top: 6px;
}

.cj-top-watch-card.cj-honorable-mention .cj-top-watch-label {
    top: 30px;
    right: 32px;
}

/* BACK TO BUYING GUIDES */

.cj-guide-back {
    padding-top: 24px;
    margin-bottom: -30px;
}

.cj-guide-back .cj-back-button {
    display: inline-block;
    padding: 13px 18px;

    background: #46543f;
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;

    transition: background 0.2s ease;
}

.cj-guide-back .cj-back-button:hover {
    background: #35402f;
}

/* BACK BUTTON BUYING GUIDES */
.cj-top-guide .cj-guide-back .cj-back-button {
    display: inline-block;
    padding: 13px 18px;
    background: #46543f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.cj-top-guide .cj-guide-back .cj-back-button:hover {
    background: #35402f;
}