/* =============================================
   About Page –css
   ============================================= */

/* Page H1 title */
.page .entry-content h1,
.page .page-content h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1a2a38 !important;
    line-height: 1.4 !important;
    margin: 0 0 8px !important;
    text-transform: initial !important;
}

/* Last Updated italic text */
.page .entry-content p em {
    font-size: 16px;
    color: #000;
    font-style: italic;
}

/* H2 — Key Points, section headings */
.page .entry-content h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a2a38 !important;
    margin: 28px 0 12px !important;
    line-height: 1.3 !important;
    text-transform: initial !important;
}

/* H3 — ISO9001, Carbon Neutral etc */
.page .entry-content h3 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1a2a38 !important;
    margin: 24px 0 10px !important;
    line-height: 1.3 !important;
    text-transform: initial !important;
}

/* Body paragraphs */
.page .entry-content p {
    font-size: 15px;
    color: #000;
    line-height: 1.75;
    margin: 0 0 16px;
}

/* Bullet lists */
.page .entry-content ul {
    margin: 8px 0 20px 20px;
    padding: 0;
    list-style: disc;
}

.page .entry-content ul li {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Links */
.page .entry-content a {
    color: #f9a32f !important;
    text-decoration: none !important;
}

.page .entry-content a:hover {
    color: #000 !important;
    text-decoration: none !important;
}

/* Float right images — Team Photo */
.page .entry-content .wp-caption.alignright,
.page .entry-content figure.alignright {
    float: right;
    margin: 4px 0 20px 28px !important;
    max-width: 320px;
    width: 38% !important;
    clear: right;
}

.page .entry-content .wp-caption img,
.page .entry-content figure img {
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    display: block;
}

/* Caption text */
.page .entry-content .wp-caption-text,
.page .entry-content figcaption {
    font-size: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 10px;
    margin: 0;
    text-align: left;
    border-radius: 0 0 4px 4px;
}

/* Clearfix */
.page .entry-content::after {
    content: '';
    display: table;
    clear: both;
}

/* Responsive */
@media (max-width: 768px) {

    .page .entry-content .wp-caption.alignright,
    .page .entry-content figure.alignright {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px !important;
    }

    .page .entry-content h1 {
        font-size: 1.6rem !important;
    }

    .page .entry-content h2 {
        font-size: 1.3rem !important;
    }
}