﻿.wcag-skip-link {
    /* Always in flow so it receives focus reliably */
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.wcag-skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    clip: auto;
    clip-path: none;
    overflow: visible;
    white-space: normal;
    z-index: 9999;
    padding: .5rem 1rem;
    background: #ffdd00;
    color: #0b0c0c;
    font-weight: bold;
    text-decoration: none;
    outline: 3px solid #0b0c0c;
    outline-offset: 0;
}

/* WCAG 2.2 - 2.5.8 Minimum Target Size */
.wcag-min-target {
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Apply to social icon links and small action buttons */
#HeaderContactDetails .list-inline .list-inline-item a,
#HeaderContactDetails .list-inline .list-inline-item button {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}