/* ==========================================
   INSPECTIONS PAGE CONTENT ONLY
   Uses styles.css for header/nav/footer
========================================== */

.insp-page {
    background: #f6f4ef;
    padding: 42px 0 55px 0;
}

.insp-wrap {
    max-width: 1120px;
    background: #ffffff;
    border: 2px solid #c2b8aa;
    padding: 36px;
    overflow: hidden;
    box-sizing: border-box;
}

/* ================= MAIN CONTENT ================= */

.insp-main {
    float: left;
    width: 68%;
    font-size: 18px;
    line-height: 1.85em;
    color: #2f2f2f;
}

.insp-side {
    float: right;
    width: 28%;
}

.insp-clear {
    clear: both;
}

/* ================= BREADCRUMBS ================= */

.insp-breadcrumbs {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d3d3d3;
}

.insp-breadcrumbs a {
    color: #3b2a11;
    font-weight: 700;
    text-decoration: underline;
}

.insp-breadcrumbs a:hover,
.insp-breadcrumbs a:focus {
    color: #2a1d0b;
}

/* ================= TITLES ================= */

.insp-title {
    font-size: 48px;
    line-height: 1.1em;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 26px 0;
}

.insp-intro {
    font-size: 20px;
    line-height: 1.7em;
    margin-bottom: 30px;
    color: #2f2f2f;
}

.insp-subtitle {
    font-size: 20px;
    color: #444444;
    font-weight: 600;
    margin: 34px 0 22px 0;
}

.insp-main p {
    margin: 0 0 22px 0;
}

/* ================= SIDEBAR ================= */

.insp-side-card {
    background: #f8f8f8;
    border: 1px solid #d7d7d7;
    padding: 22px;
    box-sizing: border-box;
}

.insp-side-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 22px 0;
}

.insp-side-line {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #8a6a45;
    margin-right: 10px;
    position: relative;
    top: -6px;
}

.insp-side-highlight {
    color: #6f5437;
}

/* ================= SERVICE BOXES ================= */

.insp-link-box {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #d9d4cc;
    padding: 16px 55px 16px 16px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #2f2f2f;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    box-sizing: border-box;
    text-decoration: none;
}

.insp-link-box span {
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -14px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 14px;
    background: #3f4345;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

.insp-link-box:hover,
.insp-link-box:focus {
    border-color: #8a6a45;
}

.insp-link-box:hover span,
.insp-link-box:focus span {
    background: #000000;
}

/* ================= CTA BUTTON ================= */

.insp-cta-btn {
    display: block;
    margin-top: 24px;
    background: #3f4345;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.insp-cta-btn:hover,
.insp-cta-btn:focus {
    background: #000000;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 1100px) {
    .insp-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 900px) {
    .insp-main,
    .insp-side {
        float: none;
        width: 100%;
    }

    .insp-side {
        margin-top: 30px;
    }
}

@media screen and (max-width: 800px) {
    .insp-wrap {
        padding: 26px;
    }

    .insp-title {
        font-size: 32px;
    }

    .insp-intro {
        font-size: 18px;
    }

    .insp-main {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .insp-page {
        padding: 34px 0 40px 0;
    }

    .insp-wrap {
        padding: 20px;
    }

    .insp-title {
        font-size: 28px;
    }

    .insp-subtitle {
        font-size: 18px;
    }

    .insp-breadcrumbs {
        font-size: 14px;
    }
}