.latest-updates-table-container {
    width: 100%;
    overflow-x: auto;
}
.latest-updates-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.latest-updates-table th, .latest-updates-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    vertical-align: top;
}
.latest-updates-table th {
    font-weight: 600;
    white-space: nowrap;
}
.latest-updates-table tbody tr:last-child td {
    border-bottom: 0;
}
.latest-updates-table th:first-child, .latest-updates-table td:first-child {
    width: 110px;
    white-space: nowrap;
}
.latest-updates-table th:nth-child(2), .latest-updates-table td:nth-child(2) {
    width: 145px;
}
.latest-updates-table th:nth-child(3), .latest-updates-table td:nth-child(3) {
    width: 85px;
    white-space: nowrap;
}
.latest-update-context {
    display: block;
    margin-bottom: 2px;
    color: #555;
}
.latest-update-links {
    display: block;
}
.latest-update-details {
    margin-top: 4px;
    font-size: .9rem;
    opacity: .8;
}
.latest-updates-note {
    text-align: center;
    font-size: .9rem;
    opacity: .8;
}
.latest-weather-events {
    display: grid;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}
.latest-weather-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(176, 0, 32, .3);
    border-radius: 8px;
    background: rgba(176, 0, 32, .06);
    font-weight: 600;
    text-align: left;
}
.latest-weather-event img {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
}
@media (max-width: 650px) {
    .latest-updates-table, .latest-updates-table tbody, .latest-updates-table tr, .latest-updates-table td {
        display: block;
        width: 100%;
    }
    .latest-updates-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
    .latest-updates-table tr {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(0, 0, 0, .12);
    }
    .latest-updates-table tbody tr:last-child {
        border-bottom: 0;
    }
    .latest-updates-table td, .latest-updates-table td:first-child,	.latest-updates-table td:nth-child(2), .latest-updates-table td:nth-child(3) {
        width: 100%;
        padding: 3px 0;
        border: 0;
        white-space: normal;
    }
    .latest-updates-table td::before {
        content: attr(data-label) ": ";
        font-weight: 600;
    }
    .latest-updates-table td[data-label="Page"]::before {
        display: block;
        margin-bottom: 2px;
    }
}