.adv-blogs-wrapper-5590910e {
    --bg: #0a0d13;
    --card: #0c1017;
    --edge: rgba(255,255,255,0.06);
    --text: #f4f6fb;
    --muted: #8b94a3;
    --accent: #5eead4;
    --radius-featured: 16px;
    font-family: "Inter", -apple-system, sans-serif;
    color: var(--text);
    padding: 0;
    width: 100%;
}

.adv-blogs-wrapper-5590910e * {
    box-sizing: border-box;
}

.adv-stage {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--edge);
    border-radius: var(--radius-featured);
    background: var(--card);
    overflow: hidden;
}

/* LEFT SIDE - FEATURED */
.adv-left {
    position: relative;
    border-right: 1px solid var(--edge);
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1.1;
    min-height: 480px;
}

.adv-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.08;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.adv-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end; /* Push content to bottom below chart */
}

.adv-pill {
    align-self: flex-start;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
    border: 1px solid color-mix(in srgb, var(--cat-color, var(--accent)) 25%, transparent);
    background: color-mix(in srgb, var(--cat-color, var(--accent)) 8%, transparent);
    color: var(--cat-color, var(--accent));
}

.adv-side-card .adv-pill {
    margin-bottom: 10px;
}

.adv-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px 0;
    color: #fff;
}

.adv-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.adv-btn {
    align-self: flex-start;
    background: var(--cat-color, var(--accent));
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.adv-btn:hover {
    opacity: 0.9;
    transform: translateX(4px);
}

/* SVG Chart in Featured */
.adv-chart {
    width: 100%;
    height: 160px;
    margin-bottom: auto; /* Push chart to top */
    overflow: visible;
}
.adv-chart path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* RIGHT SIDE - LIST */
.adv-right {
    display: flex;
    flex-direction: column;
    flex: 0.9;
}

.adv-side-card {
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--edge);
    background: transparent;
    opacity: 0.5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adv-side-card:last-child {
    border-bottom: none;
}

.adv-side-card:hover {
    opacity: 0.8;
    background: rgba(255,255,255,0.01);
}

.adv-side-card.active-preview {
    /* Optional state if we want to show it's selected */
}

.adv-side-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #fff;
}

.adv-side-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    .adv-stage {
        flex-direction: column;
    }
    .adv-left {
        border-right: none;
        border-bottom: 1px solid var(--edge);
        min-height: auto;
    }
}
@media (max-width: 600px) {
    .adv-left, .adv-side-card {
        padding: 20px;
    }
    .adv-title {
        font-size: 22px;
    }
}
