/* =============================================
   RAJVEER BLOG ARTICLE TEMPLATE - v4.0
   Theme handles layout. We style content only.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ─────────────────────────────────────────
   ENTRY CONTENT WRAPPER
───────────────────────────────────────── */

.rjv-entry-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 30px;
}

.rjv-entry-content p,
.rjv-entry-content span,
.rjv-entry-content div {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 30px;
}

/* ─────────────────────────────────────────
   HEADINGS
───────────────────────────────────────── */

.rjv-entry-content h1,
.rjv-entry-content h2,
.rjv-entry-content h3,
.rjv-entry-content h4,
.rjv-entry-content h5,
.rjv-entry-content h6 {
    font-family: 'Cabin', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111111;
    margin-bottom: 12px;
    margin-top: 35px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.rjv-entry-content h1 { font-size: 38px; font-weight: 700; }
.rjv-entry-content h2 { font-size: 32px; font-weight: 600; }
.rjv-entry-content h3 { font-size: 26px; font-weight: 600; text-transform: uppercase; }
.rjv-entry-content h4 { font-size: 22px; font-weight: 500; }
.rjv-entry-content h5 { font-size: 18px; font-weight: 500; }
.rjv-entry-content h6 { font-size: 15px; font-weight: 400; }

/* ─────────────────────────────────────────
   BLOCKQUOTE
───────────────────────────────────────── */

.rjv-entry-content blockquote {
    background-color: #f0f4f8;
    border-left: 4px solid #E25B2A;
    margin: 30px 0;
    padding: 20px 25px;
    border-radius: 0 4px 4px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    font-style: normal;
}

.rjv-entry-content blockquote p {
    margin: 0 0 8px;
}

.rjv-entry-content blockquote h5 {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    color: #E25B2A;
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rjv-entry-content blockquote h5 a {
    color: #E25B2A;
    text-decoration: none;
}

.rjv-entry-content blockquote h5 a:hover {
    text-decoration: underline;
}

/* ─────────────────────────────────────────
   CUSTOM LIST  ul.custom-list-icon
───────────────────────────────────────── */

.rjv-entry-content ul.custom-list-icon {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 20px;
}

.rjv-entry-content ul.custom-list-icon li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

.rjv-entry-content ul.custom-list-icon li::before {
    position: absolute;
    color: #FF752E;
    content: "\f106";
    font-family: 'Flaticon';
    font-size: 12px;
    font-weight: 600;
    left: 0;
    top: 2px;
}

/* ─────────────────────────────────────────
   STANDARD UL / OL
───────────────────────────────────────── */

.rjv-entry-content ul:not(.custom-list-icon) {
    padding-left: 20px;
    margin: 15px 0 20px;
    list-style: disc;
}

.rjv-entry-content ol {
    padding-left: 20px;
    margin: 15px 0 20px;
}

.rjv-entry-content ul:not(.custom-list-icon) li,
.rjv-entry-content ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ─────────────────────────────────────────
   TABLE
───────────────────────────────────────── */

.rjv-entry-content .rjv-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px 0;
}

.rjv-entry-content table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.rjv-entry-content table th,
.rjv-entry-content table td {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    text-align: left;
    vertical-align: middle;
    word-wrap: break-word;
    color: #000000;
}

.rjv-entry-content table th {
    font-weight: 600;
    background-color: #f8f8f8;
    font-family: 'Cabin', sans-serif;
}

/* ─────────────────────────────────────────
   MARK / HIGHLIGHT
───────────────────────────────────────── */

.rjv-entry-content mark {
    background: none;
    color: #FF752E;
}

/* ─────────────────────────────────────────
   LINKS
───────────────────────────────────────── */

.rjv-entry-content a {
    color: #E25B2A;
    text-decoration: none;
}

.rjv-entry-content a:hover {
    text-decoration: underline;
}

/* ─────────────────────────────────────────
   RESPONSIVE TABLET ≤1024px
───────────────────────────────────────── */

@media (max-width: 1024px) {

    .rjv-entry-content h1 { font-size: 30px; }
    .rjv-entry-content h2 { font-size: 26px; }
    .rjv-entry-content h3 { font-size: 22px; }
    .rjv-entry-content h4 { font-size: 19px; }

    .rjv-entry-content table th,
    .rjv-entry-content table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* ─────────────────────────────────────────
   RESPONSIVE MOBILE ≤767px
───────────────────────────────────────── */

@media (max-width: 767px) {

    .rjv-entry-content h1 { font-size: 26px; }
    .rjv-entry-content h2 { font-size: 22px; }
    .rjv-entry-content h3 { font-size: 19px; }
    .rjv-entry-content h4 { font-size: 17px; }
    .rjv-entry-content h5 { font-size: 15px; }

    .rjv-entry-content table th,
    .rjv-entry-content table td {
        padding: 8px;
        font-size: 13px;
    }

    .rjv-entry-content blockquote {
        padding: 15px 18px;
        font-size: 15px;
    }
}
