html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex !important;
    flex-direction: column !important;
}

.main-content {
    flex: 1 0 auto !important;
}


/* New for summary page */
/* HERO CONTAINER */
.article-hero-band {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
    border-left: 6px solid #ebce09; /* left highlight line */
}

/* RESTORED BACKGROUND IMAGE */
.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.85); /* subtle blur, image visible */
    transform: scale(1.05); /* prevents blur edges */
}

/* SUMMARY BAND */
.article-summary-inner {
    position: relative;
    padding: 28px 32px;
    background: rgba(10, 12, 28, 0.75); /* translucent so image shows */
}

/* TITLE */
.article-summary-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

/* META */
.article-summary-meta {
    margin-bottom: 14px;
}

.article-summary-meta span {
    color: #ddd;
    margin-right: 18px;
    font-size: 14px;
}

/* SUMMARY LABEL + UNDERLINE */
.summary-block {
    margin-bottom: 14px;
}

.summary-label {
    display: inline-block;
    color: #ebce09;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
}

.summary-underline {
    height: 2px;
    width: 100%;
    background: rgba(255,255,255,0.25);
}

/* POINTS */
.article-summary-points {
    padding-left: 0;
    list-style: none;
}

.article-summary-points li {
    color: #e6e6e6;
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.article-summary-points .arrow {
    color: #ebce09;
    font-size: 18px;
    margin-right: 10px;
}

/* EDITORIAL QUOTE (dark, premium, near-black) */
.editorial-quote {
    margin: 32px 0;
    padding: 20px 24px;
    background:#020228; /* darker than before */
    border-left: 4px solid #ebce09; /* same yellow accent */
    border-radius: 4px;
}

.editorial-quote p {
    color: #e6e6e6;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

/* EDITORIAL BREAK (yellow lines like left border) */
.editorial-break {
    margin: 40px 0;
    text-align: center;
}

.break-line {
    width: 100%;
    height: 3px;
    background: #ebce09; /* same yellow as left border */
    margin: 14px 0;
    border-radius: 2px;
}

.break-text {
    color: #e6e6e6;
    font-size: 18px;
    line-height: 1.7;
    margin: 12px 0 4px 0;
}

.break-author {
    color: #ebce09;
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Force equal-height blog cards */
.blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item .p-4 {
    flex-grow: 1;
}

.blog-item h4 {
    min-height: 48px; /* keeps titles aligned */
}

.blog-item p {
    min-height: 60px; /* keeps descriptions aligned */
}

/* BLOG READABILITY IMPROVEMENTS */
.article-body p {
    line-height: 1.7;      /* better spacing */
    color: #dcdcdc;        /* softer than white */
}

/* BLOG TITLE TWEAKS */
.article-summary-title {
    color: #34AD54 !important;   /* softer than pure white */
    /*font-weight: 700 !important; /* reduce boldness */
}