

/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;background:#f5f5f5;color:#333;line-height:1.6;}

/* PAGE LAYOUT */
.content-well{max-width:720px;margin:0 auto;background:#fff;padding:0;}

/* HEADER (your existing) */
.article-header{padding:20px 20px 0;}
.article-category{color:#c72822;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;}
.article-headline{font-size:42px;font-weight:800;line-height:1.2;margin-bottom:15px;color:#222;}
.article-meta{display:flex;align-items:center;gap:15px;margin-bottom:20px;font-size:14px;color:#666;}
.author-avatar{width:32px;height:32px;border-radius:50%;background:#c72822; margin-right: 12px;}

/* INTRO TEXT */
.intro-text{font-size:18px;line-height:1.7;margin-bottom:25px !important;color:#444;}
.intro-text p {
    margin-bottom: 15px !important;
}
.list-text p{
margin-bottom: 10px !important;
}
.latest-listicle-featured {
    width:100%;
    height:400px;
    object-fit:cover;
    margin: 0 0 20px 0 !important;
}
.latest-listicle-featured img
{
      width:100%;
    height:100%;
    object-fit:cover;
}

.list-item{margin-bottom:50px;padding:0 20px;}

/* TITLE WITH NUMBER */
.list-number-headline{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
    color:#222;
    line-height:1.3;
}
.list-number{color:#c72822;}
/* BULLETS */
.bullet-points{
        list-style: none !important;
    background:#f9f9f9;
    padding:15px 20px;
    margin-bottom:15px;
    border-left:3px solid #c72822;
}
.bullet-item{
    font-size:15px;
    margin-bottom:8px;
    padding-left:20px;
    position:relative;
    color:#444;
    font-weight:500;
}
.bullet-item:before{
    content:"•";
    position:absolute;
    left:0;
    color:#c72822;
    font-weight:bold;
}
.listicle-featured-wrapper {
    max-width: 800px;      
    margin: 0 auto;
    padding: 0 15px;
}
/* PARAGRAPH */
.list-text{
    font-size:17px;
    line-height:1.7;
    color:#444;
    margin-bottom:15px;
}
/* Make all links red by default */
.content-well a {
    color: #c72822 !important; /* red */
    text-decoration: none;      /* optional: remove underline */
}

/* Optional: links remain red on hover */
.content-well a:hover {
    color: #c72822 !important;
    text-decoration: none; /* optional: underline on hover */
}
.wp-caption-text {
    font-size: 12px;
    font-style: italic;
    line-height: 18px;
    color: #737373;
    margin-top: 3px;
    margin-bottom:10px;
}

@media (max-width: 768px) {

    .article-headline { font-size: 22px !important; }
    .list-number-headline { font-size: 20px; }
    .article-meta { font-size: 10px; gap: 10px; }
    .bullet-item { font-size: 14px; padding-left: 15px; }
    .list-text { font-size: 15px; }
    .content-well { padding: 0 10px; max-width: 100%; }
    .author-avatar { width: 16px; height: 16px; }
    .latest-listicle-featured { height: 190px; }
    .list-item{margin-bottom:20px;}
    .intro-text p {
    margin-bottom: 8px !important;
}
.list-text p{
margin-bottom: 10px !important;
}

} /* <-- closing media query */

