/* =========================================================
   CARANDCAB — PREMIUM BLOG HUB
   Locked CC Architecture
========================================================= */

.ccBlogPage {

    --cc-teal: #0F766E;
    --cc-teal-dark: #0B5F59;
    --cc-teal-soft: #E8F5F3;

    --cc-black: #111827;
    --cc-dark: #1F2937;
    --cc-muted: #667085;

    --cc-white: #FFFFFF;
    --cc-bg: #F7F8F8;
    --cc-border: #E5E7EB;

    --cc-radius-lg: 22px;
    --cc-radius-md: 16px;
    --cc-radius-sm: 12px;

    --cc-shadow:
        0 12px 35px rgba(15, 23, 42, .08);

    background: var(--cc-bg);
    color: var(--cc-black);
}


/* =========================================================
   CONTAINER
========================================================= */

.ccBlogContainer {

    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.ccBlogHero {

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(15,118,110,.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0B1F1D 0%,
            #102B28 55%,
            #0F766E 100%
        );

    color: #fff;
    padding: 72px 0 76px;
}


.ccBlogHeroInner {

    width: min(1180px, calc(100% - 32px));
    margin: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    gap: 60px;
    align-items: center;
}


.ccBlogHeroCopy {
    max-width: 760px;
}


.ccBlogEyebrow,
.ccBlogSectionEyebrow {

    display: inline-flex;
    align-items: center;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;

    text-transform: uppercase;

    color: #69C7BE;

    margin-bottom: 15px;
}


.ccBlogHero h1 {

    margin: 0;
    max-width: 800px;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;

    font-weight: 800;
    letter-spacing: -.035em;

    color: #fff;
}


.ccBlogHeroCopy > p {

    max-width: 690px;

    margin: 22px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.ccBlogHeroActions {

    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 30px;
}


.ccBlogPrimaryBtn,
.ccBlogSecondaryBtn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;
    padding: 0 19px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.ccBlogPrimaryBtn {

    background: #fff;
    color: var(--cc-teal-dark);
}


.ccBlogPrimaryBtn:hover {

    color: var(--cc-teal-dark);
    transform: translateY(-2px);
}


.ccBlogSecondaryBtn {

    color: #fff;
    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.07);
}


.ccBlogSecondaryBtn:hover {

    color: #fff;
    background: rgba(255,255,255,.13);
    transform: translateY(-2px);
}


/* =========================================================
   HERO PANEL
========================================================= */

.ccBlogHeroPanel {

    padding: 25px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 20px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(14px);
}


.ccBlogHeroPanelIcon {

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: rgba(255,255,255,.13);

    color: #8BE1D8;

    font-size: 22px;

    margin-bottom: 22px;
}


.ccBlogHeroPanelContent span {

    display: block;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;

    color: #7DD3CB;

    margin-bottom: 9px;
}


.ccBlogHeroPanelContent strong {

    display: block;

    font-size: 22px;
    line-height: 1.3;

    color: #fff;
}


.ccBlogHeroPanelContent small {

    display: block;

    margin-top: 13px;

    color: rgba(255,255,255,.65);

    line-height: 1.6;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.ccBlogBreadcrumbWrap {

    background: #fff;
    border-bottom: 1px solid var(--cc-border);
}


.ccBlogBreadcrumb {

    min-height: 54px;

    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 13px;
}


.ccBlogBreadcrumb a {

    color: var(--cc-teal);
    text-decoration: none;
    font-weight: 650;
}


.ccBlogBreadcrumb span {

    color: var(--cc-muted);
}


.ccBlogBreadcrumb i {

    color: #98A2B3;
    font-size: 9px;
}


/* =========================================================
   INTRO
========================================================= */

.ccBlogIntro {

    padding: 70px 0 72px;
}


.ccBlogSectionHeading {

    max-width: 720px;
    margin-bottom: 34px;
}


.ccBlogSectionHeading h2 {

    margin: 0;

    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;

    letter-spacing: -.025em;
    font-weight: 800;
}


.ccBlogSectionHeading p {

    margin: 14px 0 0;

    color: var(--cc-muted);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   BLOG GRID
========================================================= */

.ccBlogGrid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.ccBlogCard {

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--cc-border);

    border-radius: var(--cc-radius-lg);

    box-shadow: var(--cc-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.ccBlogCard:hover {

    transform: translateY(-5px);

    border-color: rgba(15,118,110,.28);

    box-shadow:
        0 18px 45px rgba(15,23,42,.12);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.ccBlogCardImage {

    position: relative;

    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #E5E7EB;
}


.ccBlogCardImage img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .45s ease;
}


.ccBlogCard:hover
.ccBlogCardImage img {

    transform: scale(1.045);
}


.ccBlogCardImageBadge {

    position: absolute;

    left: 14px;
    bottom: 14px;

    padding: 7px 10px;

    border-radius: 999px;

    background: rgba(17,24,39,.82);

    color: #fff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .07em;
    text-transform: uppercase;
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.ccBlogCardBody {

    padding: 21px 21px 19px;
}


.ccBlogCardMeta {

    display: flex;
    align-items: center;

    color: var(--cc-teal);

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 10px;
}


.ccBlogCardMeta span {

    display: inline-flex;
    align-items: center;

    gap: 6px;
}


.ccBlogCardTitle {

    margin: 0;

    font-size: 20px;
    line-height: 1.35;

    font-weight: 760;

    letter-spacing: -.015em;
}


.ccBlogCardTitle a {

    color: var(--cc-black);
    text-decoration: none;
}


.ccBlogCardTitle a:hover {

    color: var(--cc-teal-dark);
}


.ccBlogCardFooter {

    display: flex;
    align-items: center;

    margin-top: 20px;

    padding-top: 15px;

    border-top: 1px solid #EEF0F2;
}


.ccBlogReadMore {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--cc-teal);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}


.ccBlogReadMore i {

    transition: transform .2s ease;
}


.ccBlogReadMore:hover {

    color: var(--cc-teal-dark);
}


.ccBlogReadMore:hover i {

    transform: translateX(4px);
}


/* =========================================================
   EMPTY
========================================================= */

.ccBlogEmpty {

    grid-column: 1 / -1;

    text-align: center;

    padding: 70px 20px;

    background: #fff;

    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius-lg);
}


.ccBlogEmptyIcon {

    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--cc-teal-soft);

    color: var(--cc-teal);

    font-size: 25px;
}


.ccBlogEmpty h2 {

    margin: 0;

    font-size: 24px;
}


.ccBlogEmpty p {

    margin: 10px 0 0;

    color: var(--cc-muted);
}


/* =========================================================
   TRAVEL CTA
========================================================= */

.ccBlogTravelCta {

    padding: 0 0 72px;
}


.ccBlogTravelCtaInner {

    display: grid;

    grid-template-columns: auto 1fr auto;

    gap: 22px;

    align-items: center;

    padding: 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #0F766E,
            #0B5F59
        );

    color: #fff;

    box-shadow:
        0 15px 40px rgba(15,118,110,.18);
}


.ccBlogTravelCtaIcon {

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(255,255,255,.13);

    font-size: 22px;
}


.ccBlogTravelCtaContent span {

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;

    color: #A5F3EC;
}


.ccBlogTravelCtaContent h2 {

    margin: 5px 0 4px;

    font-size: 24px;
    line-height: 1.25;
}


.ccBlogTravelCtaContent p {

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 14px;
}


.ccBlogTravelCtaBtn {

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 17px;

    border-radius: 11px;

    background: #fff;

    color: var(--cc-teal-dark);

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}


.ccBlogTravelCtaBtn:hover {

    color: var(--cc-teal-dark);
}


/* =========================================================
   CARS
========================================================= */

.ccBlogCars {

    padding: 0 0 80px;
}


.ccBlogCarsHeading {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}


.ccBlogCarsHeading span {

    color: var(--cc-teal);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
}


.ccBlogCarsHeading h2 {

    margin: 6px 0 0;

    font-size: 30px;
    font-weight: 800;
}


.ccBlogViewCars {

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--cc-teal);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}


.ccBlogCarGrid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.ccBlogCarCard {

    position: relative;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--cc-border);

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(15,23,42,.06);
}


.ccBlogCarPrice {

    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 2;

    padding: 7px 10px;

    border-radius: 9px;

    background: #111827;

    color: #fff;

    font-size: 12px;
    font-weight: 800;
}


.ccBlogCarPrice span {

    color: #CBD5E1;

    font-weight: 600;
}


.ccBlogCarImage {

    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;

    background:
        linear-gradient(
            180deg,
            #F8FAFA,
            #EEF4F3
        );
}


.ccBlogCarImage img {

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.ccBlogCarInfo {

    padding: 18px;
}


.ccBlogCarInfo h3 {

    margin: 0;

    font-size: 19px;
    font-weight: 800;
}


.ccBlogCarType {

    display: block;

    margin-top: 4px;

    color: var(--cc-muted);

    font-size: 12px;
}


.ccBlogCarSpecs {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 15px 0;
}


.ccBlogCarSpecs span {

    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 6px 8px;

    border-radius: 8px;

    background: #F5F7F7;

    color: #475467;

    font-size: 11px;
}


.ccBlogCarSpecs i {

    color: var(--cc-teal);
}


.ccBlogCarBtn {

    width: 100%;

    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    background: var(--cc-teal);

    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition: background .2s ease;
}


.ccBlogCarBtn:hover {

    color: #fff;

    background: var(--cc-teal-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ccBlogHeroInner {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .ccBlogHeroPanel {

        max-width: 560px;
    }


    .ccBlogGrid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .ccBlogCarGrid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ccBlogContainer {

        width: min(100% - 24px, 600px);
    }


    .ccBlogHero {

        padding: 46px 0 42px;
    }


    .ccBlogHeroInner {

        width: min(100% - 24px, 600px);

        gap: 24px;
    }


    .ccBlogHero h1 {

        font-size: 36px;
        line-height: 1.06;
    }


    .ccBlogHeroCopy > p {

        font-size: 15px;

        line-height: 1.65;
    }


    .ccBlogHeroActions {

        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .ccBlogPrimaryBtn,
    .ccBlogSecondaryBtn {

        width: 100%;
    }


    .ccBlogHeroPanel {

        padding: 19px;
    }


    .ccBlogHeroPanelContent strong {

        font-size: 19px;
    }


    .ccBlogIntro {

        padding: 45px 0 48px;
    }


    .ccBlogSectionHeading {

        margin-bottom: 24px;
    }


    .ccBlogSectionHeading h2 {

        font-size: 29px;
    }


    .ccBlogSectionHeading p {

        font-size: 14px;
    }


    .ccBlogGrid {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .ccBlogCard {

        border-radius: 17px;
    }


    .ccBlogCardBody {

        padding: 17px;
    }


    .ccBlogCardTitle {

        font-size: 18px;
    }


    .ccBlogTravelCta {

        padding-bottom: 48px;
    }


    .ccBlogTravelCtaInner {

        grid-template-columns: 1fr;

        gap: 15px;

        padding: 23px;

        border-radius: 17px;
    }


    .ccBlogTravelCtaContent h2 {

        font-size: 21px;
    }


    .ccBlogTravelCtaBtn {

        width: 100%;

        justify-content: center;
    }


    .ccBlogCars {

        padding-bottom: 55px;
    }


    .ccBlogCarsHeading {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .ccBlogCarsHeading h2 {

        font-size: 27px;
    }


    .ccBlogCarGrid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    .ccBlogCarImage {

        height: 175px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .ccBlogHero h1 {

        font-size: 32px;
    }


    .ccBlogHero {

        padding-top: 38px;
    }


    .ccBlogBreadcrumb {

        min-height: 48px;

        font-size: 12px;
    }

}

/*----blog_full.php css------*/

 /* =========================================================
    BLOG ARTICLE PAGE
 ========================================================= */

.ccBlogArticlePage {

    --cc-teal: #0F766E;
    --cc-teal-dark: #0B5F59;
    --cc-teal-soft: #E8F5F3;

    --cc-black: #111827;
    --cc-dark: #1F2937;
    --cc-muted: #667085;

    --cc-white: #fff;
    --cc-bg: #F7F8F8;
    --cc-border: #E5E7EB;

    background: var(--cc-bg);
    color: var(--cc-black);
}


/* =========================================================
   ARTICLE HERO
 ========================================================= */

.ccBlogArticleHero {

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(15,118,110,.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0B1F1D,
            #102B28 60%,
            #0F766E
        );

    color: #fff;

    padding: 44px 0 58px;
}


.ccBlogArticleHeroInner {

    max-width: 900px;
}


.ccBlogArticleBreadcrumb {

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 38px;

    font-size: 12px;
}


.ccBlogArticleBreadcrumb a {

    color: #9FE4DE;
    text-decoration: none;
    font-weight: 700;
}


.ccBlogArticleBreadcrumb span {

    color: rgba(255,255,255,.62);

    max-width: 500px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.ccBlogArticleBreadcrumb i {

    font-size: 8px;
    color: rgba(255,255,255,.4);
}


.ccBlogArticleEyebrow {

    display: inline-flex;

    margin-bottom: 14px;

    color: #7DD3CB;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .13em;
}


.ccBlogArticleHero h1 {

    margin: 0;

    max-width: 900px;

    font-size: clamp(34px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -.035em;

    font-weight: 800;

    color: #fff;
}


.ccBlogArticleMeta {

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 22px;

    color: rgba(255,255,255,.68);

    font-size: 12px;
}


.ccBlogArticleMeta span {

    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.ccBlogArticleMeta i {

    color: #7DD3CB;
}


.ccBlogArticleMetaDivider {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);
}


/* =========================================================
   MAIN LAYOUT
 ========================================================= */

.ccBlogArticleMain {

    padding: 52px 0 75px;
}


.ccBlogArticleLayout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 32px;

    align-items: start;
}


/* =========================================================
   ARTICLE
 ========================================================= */

.ccBlogArticleContent {

    min-width: 0;

    background: #fff;

    border: 1px solid var(--cc-border);

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(15,23,42,.07);
}


.ccBlogArticleFeatured {

    margin: 0;

    width: 100%;

    aspect-ratio: 16 / 8.2;

    background: #E5E7EB;

    overflow: hidden;
}


.ccBlogArticleFeatured img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.ccBlogArticleBody {

    padding: 38px 42px 42px;

    color: #344054;

    font-size: 16px;

    line-height: 1.85;
}


.ccBlogArticleBody > *:first-child {

    margin-top: 0;
}


.ccBlogArticleBody h2 {

    margin-top: 38px;
    margin-bottom: 14px;

    color: var(--cc-black);

    font-size: 28px;
    line-height: 1.25;

    font-weight: 800;
}


.ccBlogArticleBody h3 {

    margin-top: 30px;
    margin-bottom: 10px;

    color: var(--cc-black);

    font-size: 22px;

    font-weight: 800;
}


.ccBlogArticleBody p {

    margin-bottom: 20px;
}


.ccBlogArticleBody ul,
.ccBlogArticleBody ol {

    padding-left: 24px;

    margin-bottom: 22px;
}


.ccBlogArticleBody li {

    margin-bottom: 9px;
}


.ccBlogArticleBody a {

    color: var(--cc-teal);

    font-weight: 700;

    text-decoration: underline;
}


.ccBlogArticleBody img {

    max-width: 100%;
    height: auto;

    border-radius: 14px;

    margin: 20px 0;
}


.ccBlogArticleBody blockquote {

    margin: 28px 0;

    padding: 20px 22px;

    border-left: 4px solid var(--cc-teal);

    border-radius: 0 12px 12px 0;

    background: var(--cc-teal-soft);

    color: #344054;
}


/* =========================================================
   ARTICLE FOOTER
 ========================================================= */

.ccBlogArticleFooter {

    margin: 0 42px 38px;

    padding-top: 22px;

    border-top: 1px solid var(--cc-border);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.ccBlogArticleFooterLabel {

    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--cc-dark);

    font-size: 13px;
    font-weight: 750;
}


.ccBlogArticleFooterLabel i {

    color: var(--cc-teal);
}


.ccBlogArticleBookBtn {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border-radius: 10px;

    background: var(--cc-teal);

    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}


.ccBlogArticleBookBtn:hover {

    background: var(--cc-teal-dark);

    color: #fff;
}


/* =========================================================
   SIDEBAR
 ========================================================= */

.ccBlogArticleSidebar {

    position: sticky;

    top: 90px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.ccBlogArticleSideCard {

    background: #fff;

    border: 1px solid var(--cc-border);

    border-radius: 18px;

    padding: 21px;

    box-shadow:
        0 8px 25px rgba(15,23,42,.06);
}


/* BOOKING CARD */

.ccBlogArticleBookingCard {

    background:
        linear-gradient(
            145deg,
            #0F766E,
            #0B5F59
        );

    color: #fff;

    border: none;
}


.ccBlogArticleSideIcon {

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 13px;

    background: rgba(255,255,255,.13);

    color: #A5F3EC;
}


.ccBlogArticleBookingCard > span {

    display: block;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    color: #A5F3EC;
}


.ccBlogArticleBookingCard h2 {

    margin: 7px 0 9px;

    font-size: 21px;

    line-height: 1.3;

    color: #fff;
}


.ccBlogArticleBookingCard p {

    margin: 0 0 18px;

    color: rgba(255,255,255,.70);

    font-size: 13px;

    line-height: 1.6;
}


.ccBlogSidePrimaryBtn {

    width: 100%;

    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    background: #fff;

    color: var(--cc-teal-dark);

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
}


.ccBlogSidePrimaryBtn:hover {

    color: var(--cc-teal-dark);

    background: #F8FAFA;
}


/* =========================================================
   RELATED BLOGS
 ========================================================= */

.ccBlogRelatedHeader {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--cc-border);
}


.ccBlogRelatedHeader span {

    color: var(--cc-teal);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;
}


.ccBlogRelatedHeader i {

    color: var(--cc-teal);
}


.ccBlogRelatedList {

    display: flex;

    flex-direction: column;
}


.ccBlogRelatedItem {

    display: grid;

    grid-template-columns: 74px 1fr;

    gap: 11px;

    padding: 14px 0;

    border-bottom: 1px solid #EEF0F2;

    text-decoration: none;
}


.ccBlogRelatedItem:last-child {

    border-bottom: none;

    padding-bottom: 0;
}


.ccBlogRelatedImage {

    width: 74px;
    height: 58px;

    overflow: hidden;

    border-radius: 9px;

    background: #EEF2F2;
}


.ccBlogRelatedImage img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.ccBlogRelatedContent h3 {

    margin: 0;

    color: var(--cc-black);

    font-size: 13px;

    line-height: 1.35;

    font-weight: 750;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


.ccBlogRelatedContent span {

    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 6px;

    color: var(--cc-teal);

    font-size: 10px;

    font-weight: 750;
}


/* =========================================================
   BOTTOM CTA
 ========================================================= */

.ccBlogArticleCta {

    padding-bottom: 75px;
}


.ccBlogArticleCtaInner {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 30px;

    border-radius: 20px;

    background: #111827;

    color: #fff;
}


.ccBlogArticleCtaInner > div > span {

    color: #7DD3CB;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;
}


.ccBlogArticleCtaInner h2 {

    margin: 5px 0 5px;

    color: #fff;

    font-size: 25px;

    line-height: 1.25;
}


.ccBlogArticleCtaInner p {

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;
}


.ccBlogArticleCtaBtn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 45px;

    padding: 0 17px;

    border-radius: 10px;

    background: var(--cc-teal);

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;
}


.ccBlogArticleCtaBtn:hover {

    background: #13877F;

    color: #fff;
}


/* =========================================================
   TABLET
 ========================================================= */

@media (max-width: 991px) {

    .ccBlogArticleLayout {

        grid-template-columns: 1fr;
    }


    .ccBlogArticleSidebar {

        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
 ========================================================= */

@media (max-width: 767px) {

    .ccBlogArticleHero {

        padding: 30px 0 40px;
    }


    .ccBlogArticleBreadcrumb {

        margin-bottom: 28px;

        font-size: 11px;
    }


    .ccBlogArticleHero h1 {

        font-size: 34px;
    }


    .ccBlogArticleMeta {

        margin-top: 17px;

        font-size: 11px;
    }


    .ccBlogArticleMain {

        padding: 22px 0 48px;
    }


    .ccBlogArticleLayout {

        gap: 16px;
    }


    .ccBlogArticleContent {

        border-radius: 17px;
    }


    .ccBlogArticleFeatured {

        aspect-ratio: 16 / 9;
    }


    .ccBlogArticleBody {

        padding: 26px 20px 28px;

        font-size: 15px;

        line-height: 1.78;
    }


    .ccBlogArticleBody h2 {

        font-size: 24px;

        margin-top: 31px;
    }


    .ccBlogArticleBody h3 {

        font-size: 20px;
    }


    .ccBlogArticleFooter {

        margin: 0 20px 25px;

        flex-direction: column;

        align-items: stretch;

        gap: 13px;
    }


    .ccBlogArticleBookBtn {

        justify-content: center;
    }


    .ccBlogArticleSidebar {

        display: flex;

        flex-direction: column;

        gap: 14px;
    }


    .ccBlogArticleSideCard {

        border-radius: 16px;

        padding: 18px;
    }


    .ccBlogArticleCta {

        padding-bottom: 50px;
    }


    .ccBlogArticleCtaInner {

        flex-direction: column;

        align-items: stretch;

        padding: 22px;

        border-radius: 17px;
    }


    .ccBlogArticleCtaInner h2 {

        font-size: 21px;
    }


    .ccBlogArticleCtaBtn {

        width: 100%;
    }

}


/* =========================================================
   CARANDCAB BLOG — FINAL MICRO POLISH
   Works with existing ccBlogPage + ccBlogArticlePage
========================================================= */


/* =========================================================
   ARTICLE HERO — MORE EDITORIAL / PREMIUM
========================================================= */

.ccBlogArticleHeroInner {
    width: 100%;
}

.ccBlogArticleHero h1 {
    max-width: 850px;
    text-wrap: balance;
}

.ccBlogArticleMeta {
    flex-wrap: wrap;
}


/* =========================================================
   ARTICLE FEATURED IMAGE
========================================================= */

.ccBlogArticleFeatured {
    position: relative;
}

.ccBlogArticleFeatured::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,0)
        );
}


/* =========================================================
   ARTICLE BODY — BETTER EDITORIAL RHYTHM
========================================================= */

.ccBlogArticleBody {
    max-width: 850px;
}

.ccBlogArticleBody p {
    max-width: 780px;
}

.ccBlogArticleBody strong {
    color: var(--cc-black);
    font-weight: 800;
}

.ccBlogArticleBody h2 {
    position: relative;
    padding-left: 15px;
}

.ccBlogArticleBody h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: .15em;

    width: 4px;
    height: calc(100% - .3em);

    border-radius: 4px;

    background: var(--cc-teal);
}

.ccBlogArticleBody h3 {
    letter-spacing: -.01em;
}

.ccBlogArticleBody ul li::marker,
.ccBlogArticleBody ol li::marker {
    color: var(--cc-teal);
    font-weight: 800;
}

.ccBlogArticleBody blockquote {
    position: relative;

    box-shadow:
        inset 0 0 0 1px rgba(15,118,110,.04);
}


/* =========================================================
   ARTICLE FOOTER
========================================================= */

.ccBlogArticleFooter {
    align-items: center;
}

.ccBlogArticleFooterLabel {
    min-width: 0;
}

.ccBlogArticleFooterIcon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--cc-teal-soft);
    color: var(--cc-teal);

    font-size: 13px;
}


/* =========================================================
   RELATED BLOG HEADER
========================================================= */

.ccBlogRelatedHeader {
    align-items: flex-start;
}

.ccBlogRelatedHeaderText {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ccBlogRelatedHeaderText strong {
    color: var(--cc-black);

    font-size: 14px;
    line-height: 1.3;
}

.ccBlogRelatedHeader > i {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--cc-teal-soft);

    font-size: 12px;
}


/* =========================================================
   RELATED BLOG HOVER
========================================================= */

.ccBlogRelatedItem {
    transition:
        background .2s ease,
        transform .2s ease;
}

.ccBlogRelatedItem:hover {
    background: #FAFCFC;
}

.ccBlogRelatedItem:hover
.ccBlogRelatedContent h3 {
    color: var(--cc-teal-dark);
}

.ccBlogRelatedContent span i {
    transition: transform .2s ease;
}

.ccBlogRelatedItem:hover
.ccBlogRelatedContent span i {
    transform: translateX(3px);
}


/* =========================================================
   SIDEBAR BOOKING CARD
========================================================= */

.ccBlogArticleBookingCard {
    position: relative;
    overflow: hidden;
}

.ccBlogArticleBookingCard::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    pointer-events: none;
}

.ccBlogArticleBookingCard > * {
    position: relative;
    z-index: 1;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ccBlogArticleCtaInner {
    position: relative;
    overflow: hidden;
}

.ccBlogArticleCtaInner::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -120px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    pointer-events: none;
}

.ccBlogArticleCtaCopy,
.ccBlogArticleCtaBtn {
    position: relative;
    z-index: 1;
}

.ccBlogArticleCtaBtn {
    transition:
        transform .2s ease,
        background .2s ease;
}

.ccBlogArticleCtaBtn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE READING EXPERIENCE
========================================================= */

@media (max-width: 767px) {

    .ccBlogArticleBody {
        font-size: 16px;
        line-height: 1.82;
    }

    .ccBlogArticleBody p {
        max-width: none;
    }

    .ccBlogArticleBody h2 {
        font-size: 23px;
        line-height: 1.28;
    }

    .ccBlogArticleBody h3 {
        font-size: 19px;
        line-height: 1.35;
    }

    .ccBlogArticleBody blockquote {
        margin-left: 0;
        margin-right: 0;

        padding: 17px 17px;
    }

    .ccBlogArticleFooter {
        padding-top: 18px;
    }

    .ccBlogArticleFooterLabel {
        font-size: 12px;
    }

    .ccBlogRelatedHeaderText strong {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .ccBlogArticleBody {
        font-size: 15.5px;
    }

    .ccBlogArticleFooter {
        gap: 14px;
    }

}

