.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: #777;
    border-bottom: 1px solid #eee;
    margin-top: 5rem;
}

.breadcrumb a {
    color: #777;
}

.breadcrumb span {
    margin: 0 6px;
}

/* HERO */
.hero-post {
    padding: 30px 0 24px;
}

.badge {
    display: inline-block;
    background: #EAF2FF;
    color: #1E5EFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.hero-post h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 860px;
}

.hero-excerpt {
    font-size: 17px;
    color: #555;
    max-width: 760px;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* META */
.meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E5EFF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex: none;
}

.meta-name {
    font-size: 14px;
    font-weight: 700;
    color: #0A1F44;
}

.meta-role {
    font-size: 12px;
    color: #888;
}

.meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-left: auto;
}

.meta-item {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* SHARE */
.share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    cursor: pointer;
}

.share-btn:hover {
    background: #EAF2FF;
    border-color: #c5d9ff;
}

.share-btn svg {
    width: 15px;
    height: 15px;
    stroke: #555;
    fill: none;
    stroke-width: 2;
}

.share-btn:hover svg {
    stroke: #1E5EFF;
}

/* FEATURED IMAGE */
.featured-img {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* LAYOUT */
.layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding-top: 40px;
    align-items: start;
}

@media(max-width:900px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .article-main {
        order: 1;
    }
}

/* ARTICLE CONTENT */
.prose {
    max-width: 100%;
}

.prose p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.prose h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0A1F44;
    margin: 40px 0 14px;
    padding-top: 8px;
}

.prose h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0A1F44;
    margin: 28px 0 12px;
}

.prose ul,
.prose ol {
    margin: 0 0 20px 20px;
}

.prose li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.prose strong {
    color: #0A1F44;
    font-weight: 700;
}

/* STAT BOX */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0 28px;
}

.stat-box {
    background: #f7f9ff;
    border: 1px solid #e3ebff;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}

.stat-num {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1E5EFF;
}

.stat-lbl {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

@media(max-width:600px) {
    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* CALLOUT */
.callout {
    background: #f7f9ff;
    border-left: 4px solid #1E5EFF;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0 28px;
}

.callout p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* TIP */
.tip-box {
    background: #f0faf5;
    border: 1px solid #b8e4cc;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0;
}

.tip-box .tip-label {
    font-size: 12px;
    font-weight: 700;
    color: #157A4A;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.tip-box p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* WARNING */
.warn-box {
    background: #fffbf2;
    border: 1px solid #f0d9a0;
    border-left: 4px solid #B4690E;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0;
}

.warn-box .warn-label {
    font-size: 12px;
    font-weight: 700;
    color: #B4690E;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.warn-box ul {
    margin: 0;
    padding: 0 0 0 16px;
}

.warn-box li {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
}

/* QUOTE */
.blockquote {
    border-left: 3px solid #1E5EFF;
    padding: 10px 20px;
    margin: 24px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A1F44;
    line-height: 1.4;
}

/* CHECKLIST */
.checklist {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.checklist h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0A1F44;
}

.checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.chk {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #1E5EFF;
    flex: none;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
}

.chk svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    opacity: 0;
}

.checklist li.done .chk {
    background: #1E5EFF;
}

.checklist li.done .chk svg {
    opacity: 1;
}

.checklist li.done span {
    color: #aaa;
    text-decoration: line-through;
}

/* TABLE */
.tbl-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 420px;
}

thead th {
    background: #0A1F44;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    padding: 12px 16px;
}

tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background: #fafafa;
}

tbody td:first-child {
    color: #0A1F44;
    font-weight: 600;
}

/* KEY TAKEAWAYS */
.takeaways {
    background: #0A1F44;
    border-radius: 12px;
    padding: 26px 28px;
    margin: 36px 0;
}

.takeaways h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}

.takeaways ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.takeaways li {
    color: #d0daf0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.takeaways li::before {
    content: "✓";
    color: #5B8CFF;
    font-weight: 700;
    flex: none;
}

/* EXPERT */
.expert {
    background: #f7f9ff;
    border: 1px solid #dce7fb;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    display: flex;
    gap: 18px;
}

.expert .photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1E5EFF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    flex: none;
}

.expert .eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #1E5EFF;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}

.expert .ename {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: #0A1F44;
    font-size: 16px;
}

.expert .equal {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.expert p {
    margin: 0;
    font-size: 15px;
    color: #444;
    font-style: italic;
    line-height: 1.6;
}

@media(max-width:560px) {
    .expert {
        flex-direction: column;
    }
}

/* INLINE CTA */
.inline-cta {
    background: #1E5EFF;
    border-radius: 12px;
    padding: 30px 28px;
    margin: 36px 0;
    text-align: center;
}

.inline-cta h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.inline-cta p {
    color: #ccd9ff;
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: opacity .15s;
}

.btn:hover {
    opacity: .88;
}

.btn-white {
    background: #fff;
    color: #1E5EFF;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0A1F44;
    cursor: pointer;
}

.faq-q svg {
    width: 18px;
    height: 18px;
    stroke: #1E5EFF;
    fill: none;
    flex: none;
    transition: transform .25s;
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a p {
    margin: 0 0 18px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* CONCLUSION */
.conclusion {
    background: #f7f9ff;
    border-radius: 10px;
    padding: 26px 28px;
    margin: 32px 0 0;
}

.conclusion h2 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 12px;
}

/* AUTHOR CARD */
.author-card {
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    margin: 36px 0;
}

.author-card .photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1E5EFF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    flex: none;
}

.author-card .aname {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: #0A1F44;
}

.author-card .arole {
    font-size: 13px;
    color: #1E5EFF;
    font-weight: 600;
    margin: 3px 0 10px;
}

.author-card .abio {
    font-size: 14.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.tag {
    background: #EAF2FF;
    color: #1E5EFF;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
}

.author-link {
    font-size: 13px;
    font-weight: 700;
    color: #1E5EFF;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media(max-width:560px) {
    .author-card {
        flex-direction: column;
    }
}

/* ENGAGEMENT */
.engage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 28px;
}

.helpful {
    display: flex;
    align-items: center;
    gap: 10px;
}

.helpful span {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    padding: 7px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    transition: .15s;
}

.vote-btn:hover,
.vote-btn.active {
    background: #1E5EFF;
    color: #fff;
    border-color: #1E5EFF;
}

.engage-facts {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #888;
}

/* ============ SIDEBAR ============ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 84px;
}

.s-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px;
}

.s-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0A1F44;
    margin-bottom: 14px;
}

/* TOC */
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: unset;
}

.toc-list a {
    display: block;
    padding: 7px 10px;
    font-size: 13.5px;
    color: #555;
    border-left: 2px solid #eee;
    transition: .15s;
    line-height: 1.4;
}

.toc-list a:hover {
    color: #1E5EFF;
    border-left-color: #1E5EFF;
    background: #f7f9ff;
    text-decoration: none;
}

.toc-list a.active {
    color: #1E5EFF;
    border-left-color: #1E5EFF;
    font-weight: 600;
    background: #f7f9ff;
}

.progress-bar {
    height: 3px;
    background: #eee;
    border-radius: 99px;
    margin-bottom: 14px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1E5EFF;
    width: 0%;
    transition: width .1s;
}

/* SEARCH */
.search-wrap {
    position: relative;
}

.search-wrap input {
    width: 100%;
    padding: 10px 14px 10px 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
}

.search-wrap input:focus {
    outline: none;
    border-color: #1E5EFF;
}

.search-wrap svg {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    stroke: #aaa;
    fill: none;
}

/* CATEGORIES */
.cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: unset;
}

.cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    transition: .15s;
}

.cat-list a:hover {
    background: #f0f5ff;
    color: #1E5EFF;
    text-decoration: none;
}

.cat-list a.cur {
    background: #EAF2FF;
    color: #1E5EFF;
    font-weight: 700;
}

.cat-list .ct {
    font-size: 11px;
    color: #aaa;
}

/* POPULAR */
.pop-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: unset;
}

.pop-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pop-num {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ddd;
    flex: none;
    width: 26px;
}

.pop-item:nth-child(-n+3) .pop-num {
    color: #1E5EFF;
}

.pop-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.pop-title a {
    color: #333;
    text-decoration: none;
}

.pop-views {
    font-size: 11.5px;
    color: #aaa;
    margin-top: 3px;
}

/* CTA CARD */
.cta-card {
    background: #0A1F44;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.cta-card h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 13px;
    color: #8ea0c0;
    margin-bottom: 14px;
    line-height: 1.5;
}

.cta-card .btn {
    width: 100%;
    background: #1E5EFF;
    color: #fff;
    border-radius: 8px;
    padding: 11px;
}

/* NEWSLETTER CARD */
.news-card h4 {
    margin-bottom: 8px;
}

.news-card p {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.news-card input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 13.5px;
    font-family: inherit;
    margin-bottom: 8px;
}

.news-card .btn {
    width: 100%;
    background: #1E5EFF;
    color: #fff;
    border-radius: 7px;
    padding: 10px;
}

/* RELATED */
.section-block {
    padding: 50px 0 0;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media(max-width:860px) {
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

.rcard {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.rcard:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
}

.rcard-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcard-thumb svg {
    width: 40px;
    height: 40px;
    opacity: .7;
}

.rcard-body {
    padding: 16px;
}

.rcard-cat {
    font-size: 11px;
    font-weight: 700;
    color: #1E5EFF;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
}

.rcard-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0A1F44;
    margin-bottom: 7px;
    line-height: 1.4;
}

.rcard-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 12px;
}

.rcard-more {
    font-size: 13px;
    font-weight: 700;
    color: #1E5EFF;
}

/* TRENDING */
.trend-list {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.trend-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 18px;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}

.trend-row:last-child {
    border-bottom: none;
}

.trend-row:hover {
    background: #f7f9ff;
}

.trend-num {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ddd;
    flex: none;
    width: 28px;
}

.trend-row:nth-child(-n+3) .trend-num {
    color: #1E5EFF;
}

.trend-txt {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.trend-sub {
    font-size: 11.5px;
    color: #aaa;
    margin-top: 2px;
}

.trend-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    background: #eaf9f0;
    color: #157A4A;
    flex: none;
}

/* NEWSLETTER SECTION */
.newsletter-section {
    margin-top: 48px;
    background: #f7f9ff;
    border-radius: 14px;
    padding: 44px 40px;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.newsletter-section p {
    font-size: 16px;
    color: #666;
    max-width: 460px;
    margin: 0 auto 22px;
}

.news-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 540px;
    margin: 0 auto;
}

.news-form input {
    flex: 1;
    min-width: 160px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14.5px;
    font-family: inherit;
}

.news-form .btn {
    flex: none;
    background: #1E5EFF;
    color: #fff;
    border-radius: 8px;
    padding: 12px 22px;
}

.news-fine {
    font-size: 12px;
    color: #aaa;
    margin-top: 12px;
}

/* BOTTOM CTA */
.bottom-cta {
    background: #0A1F44;
    padding: 56px 0;
    text-align: center;
    margin-top: 56px;
}

.bottom-cta h2 {
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 12px;
}

.bottom-cta p {
    color: #8ea0c0;
    max-width: 480px;
    margin: 0 auto 26px;
    font-size: 15px;
    line-height: 1.6;
}

.bottom-cta .btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-cta .btn-blue {
    background: #1E5EFF;
    color: #fff;
}

.bottom-cta .btn-outline2 {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
}







.featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

p.my-paragraph {
    color: #212529 !important;
        font-size: 1rem !important;
}

.rcard-thumb img {
    width: 350px !important;
}