/* Targets the container holding ALL news rows */
.news-border-wrapper .view-content {
    border: 2px solid #f27121; /* Matches the orange theme */
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    margin-top: 15px;
}

/* Adds a small separator line between news items so they don't blend too much */
.news-border-wrapper .views-row {
    border-bottom: 1px solid rgba(242, 113, 33, 0.3);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* Removes the separator line from the very last news item */
.news-border-wrapper .views-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}