/* ==========================================================
   CALIBRE JOURNAL - BUYING GUIDES
========================================================== */


/* HERO */

.cj-guides-hero {
    padding: 8px 0 4px;
    background: #f6f3ec;
}

.cj-guides-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cj-guides-intro .cj-section-kicker {
    display: block;
    margin-bottom: 14px;

    color: #b38b3c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cj-guides-intro h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;

    color: #1d1d1d;
}

.cj-guides-intro p {
    max-width: 720px;
    margin: 10px auto 0;

    color: #69645c;

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================================
   GUIDES SECTION
========================================================== */

.cj-guides-section {
    padding: 15px 0 85px;

    background: #f6f3ec;
}

.cj-guides-heading {
    margin-bottom: 20px;

    text-align: center;
}

.cj-guides-heading .cj-section-kicker {
    display: block;
    margin-bottom: 8px;

    color: #b38b3c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cj-guides-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;

    color: #1d1d1d;
}

.cj-guides-heading-line {
    display: block;

    width: 38px;
    height: 2px;

    margin: 16px auto 0;

    background: #b38b3c;
}


/* ==========================================================
   GRID
========================================================== */

.cj-guides-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    max-width: 1180px;
    margin: 0 auto;
}


/* ==========================================================
   CARD
========================================================== */

.cj-guide-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e4dfd4;
    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 4px 12px rgba(29, 29, 29, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cj-guide-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 26px rgba(29, 29, 29, 0.10);
}


/* ==========================================================
   IMAGE
========================================================== */

.cj-guide-image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #e9e6dc;
}

.cj-guide-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.cj-guide-card:hover .cj-guide-image img {
    transform: scale(1.035);
}


/* ==========================================================
   CONTENT
========================================================== */

.cj-guide-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;

    padding: 20px 20px 22px;

    text-align: center;
}

.cj-guide-content > span {
    margin-bottom: 8px;

    color: #b38b3c;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.cj-guide-content h3 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;

    color: #1d1d1d;
}


/* ==========================================================
   BUTTON
========================================================== */

.cj-guide-button {
    margin-top: auto;

    padding: 11px 18px;

    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-guide-button:hover {
    background: #35402f;

    transform: translateY(-1px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

    .cj-guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 620px) {

    .cj-guides-hero {
        padding: 55px 0 42px;
    }

    .cj-guides-intro h1 {
        font-size: 46px;
        letter-spacing: -1px;
    }

    .cj-guides-intro p br {
        display: none;
    }

    .cj-guides-section {
        padding: 25px 0 60px;
    }

    .cj-guides-heading h2 {
        font-size: 32px;
    }

    .cj-guides-grid {
        grid-template-columns: 1fr;
    }

    .cj-guide-image {
        height: 230px;
    }

}