/* ===========================================
   Gold Coast Page — CarAssure
   Extends sunshine-coast.css (loaded alongside)
   =========================================== */

/* ===========================================
   COMPREHENSIVE — image wrapper with right badge
   =========================================== */
.gc-comp-img-wrap {
    position: relative;
    padding-right: 16px;
    padding-bottom: 16px;
}

/* ===========================================
   MOBILE — image wrapper with left badge
   =========================================== */
.gc-mobile-img-wrap {
    position: relative;
    padding-left: 16px;
    padding-bottom: 16px;
}

/* ===========================================
   USED VEHICLES
   =========================================== */
.gc-used {
    background: var(--color-white);
}

.gc-used-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.gc-used-heading {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 24px;
    line-height: 1.3;
}

.gc-used-inner p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 16px;
}

.gc-used-inner p:last-child {
    margin-bottom: 0;
}

.gc-used-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gc-used-img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.gc-used-img--placeholder {
    background: #e5e7eb;
    border-radius: 20px;
    height: 420px;
}

/* ===========================================
   REPORTS — white card columns
   =========================================== */
.gc-reports-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 36px 32px;
}

.gc-reports-card h2 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 16px;
    line-height: 1.3;
}

.gc-reports-card p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 14px;
}

.gc-reports-card p:last-child {
    margin-bottom: 0;
}

/* ===========================================
   RESPONSIVE — tablet ≤1023px
   =========================================== */
@media (max-width: 1023px) {

    /* Comprehensive image wrapper */
    .gc-comp-img-wrap {
        padding-right: 12px;
        padding-bottom: 12px;
    }

    /* Mobile image wrapper */
    .gc-mobile-img-wrap {
        padding-left: 12px;
        padding-bottom: 12px;
    }

    /* Used vehicles */
    .gc-used-inner {
        margin-bottom: 32px;
    }

    .gc-used-imgs {
        gap: 16px;
    }

    .gc-used-img,
    .gc-used-img--placeholder {
        height: 300px;
    }

    /* Reports */
    .gc-reports-card {
        padding: 28px 24px;
    }
}

/* ===========================================
   RESPONSIVE — mobile ≤599px
   =========================================== */
@media (max-width: 599px) {

    /* Comprehensive image wrapper — badge stays right via sc-img-badge--right override */
    .gc-comp-img-wrap {
        padding-right: 10px;
        padding-bottom: 10px;
    }

    /* Mobile image wrapper — badge stays left via sc-img-badge override */
    .gc-mobile-img-wrap {
        padding-left: 10px;
        padding-bottom: 10px;
    }

    /* Used vehicles */
    .gc-used-inner {
        margin-bottom: 24px;
    }

    .gc-used-imgs {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gc-used-img,
    .gc-used-img--placeholder {
        height: 240px;
    }

    /* Reports */
    .gc-reports-card {
        padding: 24px 18px;
        border-radius: 12px;
    }
}
