:root {
    /* Colors pulled from your screenshot */
    --sjd-orange: #D97A48;      /* The exact button color from your header */
    --sjd-card-bg: #F4F7F0;     /* Light pastel green/beige for the card background */
    --sjd-text-dark: #2C3E50;   /* Dark grey for reading */
    --sjd-green-dark: #5C7A36;  /* Dark green for links/accents */
    --sjd-white: #ffffff;
}

/* Main Container */
.vd-feed-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

/* --- THE CARD --- */
/* Matches the "City News" block style */
.vd-card {
    background-color: var(--sjd-card-bg); 
    border-radius: 8px;
    padding: 30px; 
    margin-bottom: 40px; /* Big gap between articles */
    border: 1px solid #e6eadd; /* Subtle border */
    position: relative;
}

/* Article Title */
.vd-card-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--sjd-text-dark);
}

.vd-card-title a {
    text-decoration: none;
    color: var(--sjd-text-dark);
    transition: color 0.2s;
}

.vd-card-title a:hover {
    color: var(--sjd-orange);
}

/* Article Snippet */
.vd-card-snippet {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* "Read More" Text Link */
.vd-read-more-link {
    color: var(--sjd-green-dark);
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 25px;
}

.vd-read-more-link:hover {
    text-decoration: underline;
}

/* --- COMMENTS SECTION --- */
.vd-discussion-area {
    background-color: var(--sjd-white);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    margin-top: 15px;
}

.vd-discussion-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Individual Comment */
.vd-comment-block {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.vd-comment-block:last-child {
    border-bottom: none;
}

.vd-comment-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 8px;
}

.vd-author {
    font-weight: 700;
    color: var(--sjd-text-dark);
    font-size: 15px;
}

.vd-toggle-icon {
    font-weight: bold;
    color: var(--sjd-green-dark);
    font-size: 18px;
}

.vd-comment-content {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

/* --- BUTTONS --- */
/* Matches your "Get My Free Updates" button */
.vd-action-row {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.vd-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px; /* Slightly rounded */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
}

/* Primary Orange Button */
.vd-btn-primary {
    background-color: var(--sjd-orange);
    color: #fff;
    border: 1px solid var(--sjd-orange);
}

.vd-btn-primary:hover {
    background-color: #c06536; /* Darker orange */
    color: #fff;
    transform: translateY(-1px);
}

/* Secondary Button (Outline) */
.vd-btn-secondary {
    background-color: transparent;
    color: var(--sjd-text-dark);
    border: 1px solid #ccc;
}

.vd-btn-secondary:hover {
    border-color: var(--sjd-orange);
    color: var(--sjd-orange);
}

/* Pagination */
.vd-pagination {
    margin: 50px 0;
    text-align: center;
}

.vd-pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    background: var(--sjd-card-bg);
    color: var(--sjd-text-dark);
    text-decoration: none;
    border-radius: 4px;
}

.vd-pagination .current {
    background: var(--sjd-orange);
    color: #fff;
}