:root {
    --accent: #dc3b2a; /* link/red */
}

/* Links in header and body are accent red */
body a {
    color: var(--accent) !important;
    text-decoration: none
}

a:hover {
    text-decoration: none;
}

.bottom-spacer {
    min-height: 100px;
}

h2 {
    font-size: 26px;
    margin-top: 32px;
}

h3 {
    font-size: 18px;
}

th {
    padding-top: 12px;
    text-align: center;
}

td > a > img.summary-thumbnail {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    min-width: 116px;
    width: 116px;
    height: 116px;
    min-height: 116px;
}

td > a > div.summary-thumbnail-placeholder {
    min-width: 116px;
    width: 116px;
    height: 116px;
    min-height: 116px;
}

/* reduce the gaps between the items in the anchorage and marinas sections */
li > p {
    margin: 12px 0;
}

h1.page-header {
    margin-bottom: 8px;
}

hr {
    margin: 0;
}

.page-updated {
    color: gray;
    font-size: 0.9rem;
    margin-bottom: 26px;
}

.page-footer {
    color: gray;
    font-size: 0.8em;
    margin-bottom: 44px;
}

.breadcrumbs > ul > li {
    color: rgba(66, 52, 50, 0.8);
    font-family: ui-sans-serif, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", ui-sans-serif, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.breadcrumbs > ul > li > a {
    font-family: ui-sans-serif, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", ui-sans-serif, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* move summary text to own block on small screen */
@media (max-width: 640px) {
    table.summary-table tbody tr {
        display: grid;
        grid-template-columns: 116px 1fr auto;
        gap: 0.5rem;
        align-items: start;
        margin-bottom: 8px;
    }

    table.summary-table tbody td {
        padding: 0;
        white-space: normal;
    }

    table.summary-table tbody td:last-child {
        grid-column: 1 / -1;
        margin-top: 0;
        margin-bottom: 4px;
    }
}