/* ========================================
   SINGLE POST TITLE
======================================== */

body.single h1 {
    color: #0f2027;

    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;

    margin: 16px 0 22px;
    padding: 10px 12px;

    background: linear-gradient(
        to right,
        rgba(255, 204, 0, 0.12),
        rgba(255, 204, 0, 0)
    );

    border-left: 6px solid #ffcc00;

    letter-spacing: -0.3px;
}

/* ========================================
   H2
======================================== */

.single-post .entry-content h2 {
    color: #2c5364;

    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;

    margin-top: 25px;
    margin-bottom: 8px;
}

.single-post .entry-content h2::after {
    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin-top: 6px;

    background-color: #ffcc00;
}

/* ========================================
   H3
======================================== */

.single-post .entry-content h3 {
    color: #0f2027;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;

    margin-top: 18px;
    margin-bottom: 5px;
}

.single-post .entry-content h3::after {
    content: "";

    display: block;

    width: 36px;
    height: 2px;

    margin-top: 5px;

    background-color: #ffcc00;
}

/* ========================================
   RESPONSIVE TYPOGRAPHY
======================================== */

@media (max-width: 768px) {

    body.single h1 {
        font-size: 24px;
    }

    .single-post .entry-content h2 {
        font-size: 22px;
    }

    .single-post .entry-content h3 {
        font-size: 18px;
    }
}