/* Main Blog Styles */
.blog-page-root {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-category-tag {
    color: #3C0145;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 15px;
}

.blog-main-title {
    font-size: 2.8rem;
    color: #3C0145;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
    border: 1px solid  #eee;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #3C0145;
    box-shadow: 0 30px 60px rgba(60, 1, 69, 0.08);
}

.blog-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    color: #3C0145;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.5rem;
    color: #3C0145;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-blog-btn {
    color: #3C0145;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.read-blog-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.read-blog-btn:hover svg {
    transform: translate(3px, -3px);
}

@keyframes revealBlog {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    view-timeline-name: --blog-reveal;
    view-timeline-axis: block;
    animation: revealBlog linear both;
    /* animation-timeline: --blog-reveal; */
    animation-range: entry 10% cover 30%;
}

@media (max-width: 768px) {
    .blog-main-title { font-size: 2.2rem; }
    .blog-grid { grid-template-columns: 1fr; }
}
/*  */
.stage-one-symptoms-light {
    background-color: #ffffff;
    padding: 20px 5%;
    font-family: 'Inter', sans-serif;
    color: #333333;
    overflow: hidden;
}

.stage-one-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & Pathology Section */
.stage-one-header {
    text-align: center;
    margin-bottom: 60px;
}

.pathology-badge {
    color: #3C0145; /* Brand Purple */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px;
    background: #f5e6f8;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.stage-one-title {
    font-size: 34px;
    color: #3C0145;
    font-weight: 800;
    margin-bottom: 30px;
}

.pathology-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fdfbff;
    border: 1px solid rgba(60, 1, 69, 0.05);
    padding: 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(60, 1, 69, 0.01);
}

.pathology-text p {
    font-size: 15.5px;
    line-height: 1.65;
    color: #444444;
}

.pathology-alert {
    border-left: 3px solid #d161ff;
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.pathology-alert p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
}

/* Split Content Grid Layout */
.stage-one-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Symptoms Side (Left) */
.side-heading {
    font-size: 20px;
    color: #3C0145;
    font-weight: 700;
    margin-bottom: 25px;
}

.symptoms-list-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.symptom-stagger-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 18px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.symptom-number {
    font-size: 13px;
    font-weight: 800;
    color: #d161ff;
    background: #fdfbff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(209, 97, 255, 0.2);
}

.symptom-stagger-card p {
    font-size: 14.5px;
    font-weight: 600;
    color: #444444;
}

/* Prognosis Side (Right) */
.prognosis-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prognosis-media-frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid #eeeeee;
    height: 240px;
}

.prognosis-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(60, 1, 65, 0.85);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prognosis-insight-box h3 {
    font-size: 22px;
    color: #3C0145;
    font-weight: 700;
    margin-bottom: 15px;
}

.prognosis-insight-box p {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
}

.doctor-perspective-callout {
    margin-top: 30px;
    background: #fdfbff;
    border-left: 4px solid #3C0145;
    padding: 25px;
    border-radius: 0 16px 16px 0;
    display: flex;
    gap: 20px;
}

.doctor-icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.doctor-quote h4 {
    font-size: 16px;
    font-weight: 700;
    color: #3C0145;
    margin-bottom: 6px;
}

.doctor-quote p {
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
}

/* --- Scroll Animations (Pure CSS) --- */
@keyframes scaleInElement {
    from { opacity: 0; transform: scale(0.96) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes cascadeSlideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-scale-up {
    view-timeline-name: --stage1-scale;
    view-timeline-axis: block;
    animation: scaleInElement linear both;
    animation-timeline: --stage1-scale;
    animation-range: entry 5% cover 25%;
}

.animate-cascade {
    view-timeline-name: --stage1-cascade;
    view-timeline-axis: block;
    animation: cascadeSlideLeft linear both;
    /* animation-timeline: --stage1-cascade; */
    animation-range: entry 5% cover 20%;
}

/* Responsiveness adjustments */
@media (max-width: 850px) {
    .pathology-card { grid-template-columns: 1fr; gap: 20px; }
    .stage-one-split-grid { grid-template-columns: 1fr; gap: 40px; }
    .prognosis-media-frame { display: none; } /* Focus entirely on symptoms on tablet/mobile */
    .stage-one-title { font-size: 28px; }
}