/* ============================================================
   SynthKernel — custom.css
   Template: 2085_neuron (Bootstrap 3, FA4)
   Accent: #f59e0b
   ============================================================ */

/* CSS Variables */
:root {
    --bg: #0d0f18;
    --surface: #151825;
    --surface2: #1c2033;
    --text: #e8eaf0;
    --text-muted: #8892a4;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fcd34d;
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
    --gap: 40px;
    --nav-height: 72px;
    --bg-rgb: 13,15,24;
}

/* ============================================================
   Base / Body
   ============================================================ */
body {
    color: var(--text) !important;
    background-color: var(--bg) !important;
    font-size: 18px;
    line-height: 1.9;
    font-family: 'Open Sans', sans-serif;
}

/* ============================================================
   Typography Overrides (R13: override template uppercase)
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    text-transform: none !important;
    letter-spacing: normal !important;
    color: var(--text);
}

h1 { font-size: 59px; font-weight: 700; line-height: 1.15; }
h2 { font-size: 41px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.4; }
p  { font-size: 18px; line-height: 1.9; }

/* ============================================================
   Navbar (Bootstrap 3 .navbar-default adaptation)
   ============================================================ */
.navbar.navbar-default {
    background-color: rgba(13,15,24,0.97) !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
}
.navbar-default .navbar-brand {
    color: var(--text) !important;
    font-size: 22px;
    font-weight: 700;
    padding: 0;
    line-height: var(--nav-height);
    display: flex;
    align-items: center;
}
.navbar-default .navbar-brand img {
    max-height: 40px;
    width: auto;
}
/* R70: no span brand-name text — logo only */
.navbar-brand span.brand-name { display: none; }

/* R77: nav-item cleanup */
.nav-item {
    margin-bottom: 0 !important;
    background-image: none !important;
}
.site-logo { max-width: none !important; }

/* Nav links */
.navbar-default .navbar-nav > li > a {
    color: var(--text-muted) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 26px 14px;
    line-height: 1;
    transition: color 0.2s;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li.active > a {
    color: var(--accent) !important;
    background: transparent !important;
}

/* Scroll-triggered nav */
.navbar.scrolled,
.navbar.active {
    background-color: rgba(var(--bg-rgb), 0.98) !important;
}
.navbar.active .navbar-nav > li > a,
.navbar.scrolled .navbar-nav > li > a {
    color: var(--text-muted) !important;
}

/* CTA button in nav */
.nav-cta a {
    background-color: var(--accent) !important;
    color: #1e293b !important;
    border-radius: 6px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
    margin-top: 18px !important;
    white-space: nowrap;
}
.nav-cta a:hover {
    background-color: var(--accent-dark) !important;
    color: #fff !important;
}
.btn-accent, .cta-primary, .cta-secondary { white-space: nowrap; }

/* ============================================================
   Hero / Home Section
   ============================================================ */
#home.main-home {
    min-height: 640px;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    position: relative;
}
#home .overlay {
    background-color: rgba(13,15,24,0.75);
    pointer-events: none !important;
}
/* R79: hero container transparent */
.header-thumb {
    background: transparent !important;
    border: none !important;
}
/* R89: overlay no pointer events */
.tm-bg-overlay,
[class*="overlay"] {
    pointer-events: none !important;
}
.hero-label {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(245,158,11,0.12);
    padding: 4px 12px;
    border-radius: 20px;
}
#home h1 {
    font-size: 59px;
    font-weight: 700;
    color: var(--text) !important;
    line-height: 1.15;
    margin-bottom: 24px;
}
#home p.hero-sub {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary-custom,
.btn-accent {
    display: inline-block;
    background-color: var(--accent);
    color: #1e293b !important;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.btn-primary-custom:hover,
.btn-accent:hover {
    background-color: var(--accent-dark);
    color: #fff !important;
    text-decoration: none;
}
.btn-secondary-custom,
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.btn-secondary-custom:hover,
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent) !important;
    text-decoration: none;
}

/* ============================================================
   General Sections
   ============================================================ */
section, .section {
    color: var(--text);
    padding: 90px 0;
}
.section-dark {
    background: var(--bg);
    color: var(--text);
}
.section-alt {
    background: var(--surface);
    color: var(--text);
}
.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-heading {
    font-size: 41px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 50px;
    text-align: center;
}
.section-intro {
    text-align: center;
    margin-bottom: 56px;
}

/* .container-narrow for long-text pages */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* ============================================================
   Feature Cards (3-col grid)
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    color: var(--text);
}
/* R87: uniform card structure */
.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(245,158,11,0.12);
    border-radius: 10px;
}
.feature-card .feature-icon .fa {
    font-size: 22px;
    color: var(--accent) !important;
}
/* R81: Force accent on all icons */
.feature-icon .fa, .card-icon .fa, .step-icon .fa {
    color: var(--accent) !important;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   Steps / How It Works (R80: CSS grid, NOT Bootstrap col-md-*)
   ============================================================ */
.steps-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .steps-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .steps-grid-3, .steps-grid-4 { grid-template-columns: 1fr; }
}
.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1;
}
.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   Blog/Listing Grid (R78: fixed 3-col CSS grid)
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text);
    text-decoration: none;
}
.blog-card:hover { text-decoration: none; border-color: var(--accent); }
.blog-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body time {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.blog-card-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Pricing Grid
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    align-items: start;
}
@media (max-width: 991px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    color: var(--text);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--accent);
    background: var(--surface2);
    transform: translateY(-8px);
}
.pricing-card .badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #1e293b;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.pricing-card .price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin: 16px 0 4px;
}
.pricing-card .price-amount span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-card .price-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-card ul.features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.pricing-card ul.features li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.pricing-card ul.features li:last-child { border-bottom: none; }
.pricing-card ul.features li::before {
    content: "\f00c";
    font-family: FontAwesome;
    color: var(--accent);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================================
   Team Grid
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 767px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; } }
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    color: var(--text);
}
.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 10%;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--accent);
}
.team-card h3 { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.team-bio { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.team-email a { font-size: 14px; color: var(--accent); text-decoration: none; }
.team-email a:hover { color: var(--accent-dark); }

/* Culture section */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 767px) { .culture-grid { grid-template-columns: 1fr; } }
.culture-stat {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
}
.culture-stat .stat-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.culture-stat p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ============================================================
   About Page
   ============================================================ */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 767px) { .about-story-grid { grid-template-columns: 1fr; } }
.about-story-img {
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 767px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    color: var(--text);
}
.value-card .fa {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}
.value-card h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.value-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Case study cards */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 767px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    color: var(--text);
}
.case-card .metric {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}
.case-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.case-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
}
.stat-card .stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ============================================================
   Contact Page
   ============================================================ */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-muted);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .fa {
    color: var(--accent);
    font-size: 18px;
    width: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-list a { color: var(--accent); }
.contact-form .form-control {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 16px;
}
.contact-form .form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: none;
    background: var(--surface);
    color: var(--text);
}
.contact-form textarea.form-control { resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .contact-form .form-row { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question .fa { color: var(--accent); font-size: 14px; }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    color: var(--text-muted);
    background: var(--surface);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 14px 24px 20px;
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
    background: var(--surface);
    color: var(--text);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 19px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--surface) !important;
    color: var(--text) !important;
    padding: 60px 0 0 !important;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
footer h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 16px;
}
footer p, footer li {
    font-size: 15px;
    color: var(--text-muted) !important;
    line-height: 1.7;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li { margin-bottom: 8px; }
footer a {
    color: var(--text-muted) !important;
    text-decoration: none;
}
footer a:hover { color: var(--accent) !important; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted) !important;
    margin: 0;
}
/* Remove template social icons */
.social-icon { display: none !important; }

/* ============================================================
   Cookie Banner
   ============================================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface2);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 9999;
    color: var(--text);
}
.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text strong { color: var(--text); font-size: 15px; }
.cookie-text p { color: var(--text-muted); font-size: 14px; margin: 4px 0 0; }
.cookie-text a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
#cookie-accept {
    background: var(--accent);
    color: #1e293b;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ============================================================
   Product Page — Specs Table
   ============================================================ */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 767px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    color: var(--text);
}
.spec-card h4 { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.spec-card .spec-value { font-size: 28px; font-weight: 800; color: var(--accent); display: block; margin-bottom: 6px; }
.spec-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Integration tags */
.integration-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.integration-tag {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* CTA section */
.cta-section {
    background: var(--surface);
    color: var(--text);
    padding: 90px 0;
    text-align: center;
}
.cta-section h2 { font-size: 41px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.cta-section p { font-size: 19px; color: var(--text-muted); margin-bottom: 36px; }

/* ============================================================
   Responsive / Mobile
   ============================================================ */
@media (max-width: 767px) {
    h1, #home h1 { font-size: 38px; }
    h2, .section-heading { font-size: 30px; }
    .page-hero h1 { font-size: 34px; }
    .pricing-card.featured { transform: none; }
    .about-story-grid { gap: 32px; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Preloader overrides
   ============================================================ */
.preloader { background-color: var(--bg) !important; }

/* === Article / Blog image sizing (R-IMG) === */
.img-fluid,
.blog-hero-img,
.article-thumbnail img,
.article-thumbnail,
article img,
.post-content img,
.container-narrow img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 8px;
    margin: 24px 0;
}
