:root {
    --primary-teal: #1fa2b1;
    --primary-red: #9e0b0e;
    --theme-dark: #222222;
    --light-bg: #f8f9fa;
}



.blog-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 400ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-v2:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(158, 11, 14, 0.08);
}

.blog-card-v2 .blog-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #fff;
}

.blog-card-v2 .blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 1000ms ease;
}

.blog-card-v2:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card-v2 .blog-card__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-v2 .blog-card__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-v2 .blog-card__title a {
    color: var(--theme-dark);
    transition: 0.3s;
}

.blog-card-v2:hover .blog-card__title a {
    color: var(--primary-red);
}

.blog-card-v2 .blog-card__text {
    font-size: 16px !important;
    margin-bottom: 25px !important;
    color: #777 !important;
    line-height: 1.6 !important;
    flex: 1;
}

.blog-card-v2 .blog-card__link {
    color: var(--primary-red) !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.blog-card-v2 .blog-card__link i {
    transition: 0.3s;
}

.blog-card-v2:hover .blog-card__link i {
    transform: translateX(5px);
}





.blog-page-container {
    /* padding-top: 50px; */
    /* padding-bottom: 80px; */
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
}

.blog-hero-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid #eee;
    width: 100%;
}

/* Teal diagonal strokes top-left */
.blog-hero-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red) 15%, transparent 15%, transparent 25%, var(--primary-red) 25%, var(--primary-red) 40%, transparent 40%);
    transform: rotate(-15deg);
    z-index: 1;
    opacity: 0.8;
}

/* Red diagonal stroke bottom-right */
.blog-hero-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -80px;
    width: 400px;
    height: 250px;
    background: linear-gradient(315deg, var(--primary-red) 0%, var(--primary-red) 30%, transparent 30%, transparent 40%, var(--primary-red) 40%, var(--primary-red) 45%, transparent 45%);
    transform: rotate(-10deg);
    z-index: 1;
    opacity: 0.9;
}

.blog-post-hero-image {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.blog-post-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-hero__header {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
    position: relative;
    z-index: 2;
}

.blog-hero__content {
    flex: 1.2;
    padding: 50px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.blog-hero__image-area {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.blog-hero__circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 10px solid #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.blog-hero__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero__logos {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-hero__logos img {
    height: 45px;
    width: auto;
}

.blog-hero__title {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.blog-hero__divider {
    width: 100px;
    height: 5px;
    background-color: var(--primary-red);
    margin-bottom: 25px;
}

.blog-hero__subtitle {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content Styling */
.blog-article {
    max-width: 100%;
    margin: 0;
    padding: 0 5px;
}

.container-full {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1300px;
}

.blog-article h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
    margin: 50px 0 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-article p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.blog-article ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-article li {
    font-size: 18px;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
}

.article-bold {
    color: var(--primary-red);
    font-weight: 700;
}

.blog-article li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -30px;
    color: var(--primary-red);
}

.highlight-box {
    background: #fffafa;
    border-left: 6px solid var(--primary-red);
    padding: 35px;
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.warning-card {
    background: #ffe9e9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.warning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.warning-card i {
    font-size: 30px;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
}

.warning-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 15px;
}

.warning-card p {
    font-size: 16px;
    margin-bottom: 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.comparison-table th {
    background: var(--primary-red);
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 20px;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eff2f5;
    font-size: 18px;
    color: #444;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9fbff;
}

/* Premium Medical Bullet List */
.medical-list {
    list-style: none !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px 40px;
    margin: 30px 0;
}

.medical-list li {
    position: relative;
    padding-left: 35px !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #444 !important;
    margin-bottom: 0 !important;
}

.medical-list li::before {
    content: '\f058' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-red);
    font-size: 22px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(158, 11, 14, 0.8), rgba(0, 0, 0, 0));
    margin: 60px 0;
    border: 0;
    display: block;
    width: 100%;
}

/* Redesigned Expert Footer */
.expert-footer {
    margin-top: 20px;
    padding-top: 20px;
}

.expert-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.expert-card__image {
    flex: 0 0 300px;
    background: var(--light-bg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 40px;
}

.expert-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.expert-card__content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-card__content h3 {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.expert-card__checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 35px;
    padding: 0;
    list-style: none !important;
}

.expert-card__checklist li {
    font-size: 16px !important;
    margin: 0 !important;
    padding-left: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555 !important;
}

.expert-card__checklist li::before {
    content: none !important;
}

.expert-card__checklist i {
    color: var(--primary-red);
    font-size: 18px;
}

.final-thoughts-box {
    background: #fff8f8;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    margin-bottom: 50px;
    border: 1px dashed var(--primary-red);
}

.final-thoughts-box h2 {
    margin-top: 0 !important;
    color: var(--primary-red);
    font-size: 28px !important;
}

.social-share-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    background: var(--theme-dark);
    border-radius: 50px;
    color: #fff;
}

.social-share-wrap span {
    font-weight: 700;
    font-size: 18px;
}

/* Open Pillar Redesign */
/* .prevention-open-pillar {
        margin: 80px 0;
        max-width: 900px;
        margin: 40px auto;
    } */

.pillar-item {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.pillar-item:last-child {
    border-bottom: none;
}

.pillar-left {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid var(--primary-red);
}

.pillar-number {
    display: none;
}

.pillar-icon {
    font-size: 24px;
    color: var(--primary-red);
    margin-top: 10px;
}

.pillar-content {
    flex: 1;
    padding-left: 50px;
}

.pillar-content h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-content p {
    font-size: 18px !important;
    color: #555 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}



.btn-premium {
    background-color: var(--primary-red);
    color: #fff;
    padding: 16px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 300ms ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(158, 11, 14, 0.25);
}

.btn-premium:hover {
    background-color: #7a080a;
    /* Slightly darker on hover */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(158, 11, 14, 0.35);
}

.btn-premium i {
    font-size: 22px;
}

.cta-btns {
    margin-top: 35px;
    display: flex;
    justify-content: flex-start;
}

/* New Grid Layouts for Heart Patient Guide */
.advantage-disadvantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-box, .limitations-box {
    padding: 30px;
    border-radius: 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    height: 100%;
}

.advantage-box {
    border-left: 5px solid #28a745;
}

.limitations-box {
    border-left: 5px solid var(--primary-red);
}

.advantage-box h4, .limitations-box h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.advantage-box h4 i { color: #28a745; margin-right: 10px; }
.limitations-box h4 i { color: var(--primary-red); margin-right: 10px; }

.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.choice-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.choice-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.choice-card h4 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 22px;
}

/* FAQ Section Styling */
.faq-section {
    margin: 60px 0;
    background: #fcfcfc;
    padding: 40px;
    border-radius: 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: #f8f9fa;
    color: var(--primary-red);
}

.faq-item.active .faq-toggle {
    background: var(--primary-red);
    color: #fff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-content p {
    font-size: 16px !important;
    margin: 0 !important;
    color: #555;
    line-height: 1.6;
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}


.social-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-share span {
    font-weight: 700;
    color: var(--theme-dark);
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-btn.fb {
    background: #3b5998;
}

.social-btn.tw {
    background: #1da1f2;
}

.social-btn.wa {
    background: #25d366;
}

.social-btn:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .blog-hero__circle {
        width: 260px;
        height: 260px;
    }

    .blog-hero__title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .blog-page-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .blog-hero__header {
        flex-direction: column;
    }

    .blog-hero__content {
        padding: 40px 10px 40px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .blog-hero__image-area {
        padding-bottom: 80px;
    }

    .blog-hero__logos {
        top: 20px;
        right: 20px;
        transform: scale(0.8);
    }

    .blog-hero-card::after {
        width: 200px;
        height: 150px;
    }

    .medical-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .blog-page-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
        padding-top: 30px;
    }

    /* Pillars Mobile */
    .pillar-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 30px 0;
        gap: 20px;
    }

    .pillar-left {
        flex: 0 0 50px;
        border-right: none;
        border-bottom: none;
        padding: 0;
        margin: 0;
    }

    .pillar-icon {
        margin: 0;
        font-size: 20px;
    }

    .pillar-content {
        padding-left: 0;
        text-align: left;
    }

    .pillar-content h4 {
        font-size: 18px;
        font-weight: 800;
        color: var(--theme-dark);
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .pillar-content p {
        font-size: 14px !important;
    }

    /* Rest of mobile styles */
    .blog-hero-card,
    .blog-post-hero-image {
        margin-top: 20px;
    }

    .blog-hero__header {
        min-height: auto !important;
    }

    .blog-hero__content {
        padding: 40px 10px 10px;
        text-align: center;
    }

    .blog-hero__title {
        font-size: 26px !important;
        line-height: 1.25;
        margin-bottom: 15px;
    }

    .blog-hero__title br {
        display: none;
    }

    .blog-hero__divider {
        margin: 0 auto 15px !important;
    }

    .blog-hero__subtitle {
        font-size: 17px !important;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .blog-hero__image-area {
        padding: 20px 0 60px;
    }

    .blog-hero__circle {
        width: 180px;
        height: 180px;
        border-width: 6px;
    }

    .blog-hero__logos {
        display: none;
    }

    .blog-article p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .blog-article li {
        font-size: 14px !important;
    }

    .blog-article h2 {
        font-size: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .medical-list {
        grid-template-columns: 1fr;
    }

    .medical-list li {
        font-size: 14px !important;
    }

    .warning-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .warning-card {
        padding: 20px;
        text-align: center;
    }

    .warning-card i {
        margin: 0 auto 15px;
    }

    .warning-card h4 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .warning-card p {
        font-size: 15px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .section-divider {
        margin: 40px 0;
    }

    .expert-card {
        flex-direction: column;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .expert-card__image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
        padding-top: 20px;
        overflow: hidden;
    }

    .expert-card__image img {
        width: auto;
        height: 100%;
        margin: 0 auto;
    }

    .expert-card__content {
        padding: 25px 15px;
        text-align: center;
    }

    .expert-card__content h3 {
        font-size: 24px !important;
        margin-bottom: 10px;
    }

    .expert-card__checklist {
        display: inline-block;
        text-align: left;
        margin: 15px auto 25px;
        padding: 0;
        width: auto;
    }

    .expert-card__checklist li {
        justify-content: flex-start;
        margin-bottom: 8px !important;
    }

    .cta-btns {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .btn-premium {
        padding: 10px 25px !important;
        font-size: 14px !important;
    }

    .final-thoughts-box h2 {
        font-size: 22px !important;
    }

    .social-share-wrap {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        border-radius: 20px;
    }

    .advantage-disadvantage-grid,
    .decision-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 20px 10px;
    }

    .faq-toggle {
        font-size: 15px;
        padding: 15px;
    }
}


@media (max-width: 767px) {
    .blog-card-v2 .blog-card__image {
        height: 200px;
    }

    .blog-card-v2 .blog-card__title {
        font-size: 20px;
    }
}