/* =========================================
   MEDIA RELEASES PAGE
   ========================================= */

/* Base table layout */
.view-id-media_releases table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Header Styling (Matches D7 light grey/blue) */
.view-id-media_releases table thead th {
    background-color: #e5ebf2; 
    color: #000;
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border: none;
}

/* Spacing for table rows */
.view-id-media_releases table tbody td {
    padding: 12px 10px;
    vertical-align: top;
}

/* Zebra Striping for alternating rows */
.view-id-media_releases table tbody tr:nth-child(even) {
    background-color: #f9f9f9; 
}

/* Add a PDF icon before the Media Release links */
.view-id-media_releases .views-field-title a::before {
    content: "\f1c1"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #042969; 
}

/* Prevent the date column from wrapping */
.view-id-media_releases table th:last-child,
.view-id-media_releases table td:last-child {
    white-space: nowrap;
    width: 1%; /* Optional: This keeps the column as narrow as possible so the title gets most of the room */
}