/* =========================================================
   Base
========================================================= */

body {
    font-family: Arial, sans-serif;
    background: #e7e7e7;
    margin: 0;
    color: #1d2433;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1440px;
    margin: 24px auto;
    padding: 0 16px;
}

.container.narrow {
    max-width: 480px;
}

.site-main {
    padding: 24px 0;
}

/* =========================================================
   Header + Navigation
========================================================= */

.app-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111827;
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.app-header-bar,
.primary-nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.app-header-bar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.brand-subtitle {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.2;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #111827;
}

.primary-nav-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 52px;
}

.nav-link,
.account-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 10px;
    color: #e5e7eb;
    background: transparent;
    border: 0;
    text-decoration: none;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    width: auto;
}

.nav-link:hover,
.account-button:hover,
.nav-link.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-link.is-active {
    box-shadow: inset 0 -2px 0 #60a5fa;
}

.nav-spacer {
    flex: 1 1 auto;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    max-width: min(720px, calc(100vw - 32px));
    padding: 12px;
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
    z-index: 1001;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
}

.nav-mega-menu {
    display: none;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    width: 640px;
    max-height: calc(100vh - 180px);
    overflow: auto;
}

.nav-dropdown.is-open .nav-mega-menu {
    display: grid;
}

.nav-park-group {
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.nav-park-title {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 800;
}

.nav-park-title:hover {
    color: #1d4ed8;
}

.nav-resource-link,
.account-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 9px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
}

.nav-resource-link:hover,
.account-dropdown-menu a:hover {
    background: #eef2ff;
    color: #1d4ed8;
}

.nav-resource-link small {
    color: #64748b;
    font-size: 12px;
}

.account-menu .nav-dropdown-menu {
    right: 0;
    left: auto;
    min-width: 240px;
}

.account-button {
    padding: 6px 10px;
}

.account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 800;
}

.account-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.account-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-role {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.account-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}

.account-summary span {
    color: #64748b;
    font-size: 13px;
}

/* Legacy aliases kept for older pages during transition */
.site-header {
    background: #111827;
    color: #fff;
}

.logo a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* =========================================================
   Cards + Layout
========================================================= */

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.grid textarea {
    grid-column: span 2;
    min-height: 80px;
}

.directory-team {
    margin-bottom: 28px;
}

.directory-team h3 {
    margin-bottom: 12px;
}

/* =========================================================
   Forms + Buttons
========================================================= */

input,
select,
textarea,
button {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccd3e0;
    box-sizing: border-box;
}

button {
    background: #1d4ed8;
    color: #fff;
    border: none;
    cursor: pointer;
}

button[disabled] {
    background: #8aa2df;
    cursor: not-allowed;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    background: #1f2937;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.button:hover {
    opacity: 0.9;
}

.danger-btn {
    background: #dc2626;
}

.danger-btn.hidden {
    display: none;
}

/* =========================================================
   Messages + Alerts
========================================================= */

.alert.error {
    background: #fde8e8;
    color: #a61b1b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.message {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
}

.message.success {
    background: #ecfdf3;
    color: #166534;
}

.message.error {
    background: #fff1f2;
    color: #9f1239;
}

.muted {
    opacity: 0.8;
    margin-left: 12px;
}

/* =========================================================
   Tables
========================================================= */

.preview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.preview-table th,
.preview-table td {
    border: 1px solid #d8deeb;
    padding: 8px;
    vertical-align: top;
}

.valid-row {
    background: #ecfdf3;
}

.invalid-row {
    background: #fff1f2;
}

/* =========================================================
   Modal
========================================================= */

.modal.hidden {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
    position: relative;
    max-width: 560px;
    margin: 60px auto;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: auto;
    padding: 0;
    border: none;
    background: transparent;
    color: #475569;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.modal-content p {
    margin: 0 0 12px;
}

.modal-notes {
    min-height: 48px;
    padding: 12px;
    border: 1px solid #d8deeb;
    border-radius: 8px;
    background: #f8fafc;
    white-space: pre-wrap;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    background: #f3f4f6;
    font-size: 14px;
    color: #555;
}

/* =========================================================
   Legacy Topbar
   Keep only if older pages still use .topbar
========================================================= */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #18253f;
    color: #fff;
}

.topbar a {
    color: #fff;
    margin-left: 16px;
    text-decoration: none;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 700px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .grid textarea {
        grid-column: span 1;
    }

    .modal-dialog {
        width: calc(100% - 32px);
        margin: 40px auto;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        display: none;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .nav-link,
    .account-button {
        width: 100%;
        justify-content: space-between;
    }

    .nav-spacer {
        display: none;
    }

    .nav-dropdown-menu,
    .account-menu .nav-dropdown-menu {
        position: static;
        min-width: 0;
        max-width: none;
        width: auto;
        margin: 4px 0 8px;
        box-shadow: none;
    }

    .nav-mega-menu,
    .nav-dropdown.is-open .nav-mega-menu {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
    }

    .account-copy {
        flex: 1;
    }
}

@media (max-width: 520px) {
    .brand-title {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }
}

/* =========================================================
Profiles
========================================================= */

.profile-grid {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.profile-summary-card {
    display: grid;
    gap: 1.25rem;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #183f2f;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.profile-meta {
    display: grid;
    gap: 0.9rem;
    margin: 0;
}

.profile-meta div {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.profile-meta dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    font-weight: 700;
}

.profile-meta dd {
    margin: 0.25rem 0 0;
    color: #0f172a;
    font-weight: 600;
}

.form-message {
    margin: 0;
    font-weight: 600;
}

.form-message.is-success {
    color: #166534;
}

.form-message.is-error {
    color: #b91c1c;
}

@media (max-width: 860px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}
.profile-avatar-wrap {
    display: flex;
    align-items: center;
}

.profile-avatar-img {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(24, 63, 47, 0.12);
    background: #f8fafc;
}

.account-avatar {
    overflow: hidden;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profile-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.profile-sidebar,
.profile-main {
    display: grid;
    gap: 1.5rem;
}

.profile-identity-card {
    overflow: hidden;
    padding: 0;
}

.profile-cover {
    height: 88px;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.22),
            transparent 28%
        ),
        linear-gradient(135deg, #173f2d, #256845);
}

.profile-identity-content {
    padding: 0 1.5rem 1.5rem;
}

.profile-avatar-large {
    margin-top: -44px;
    margin-bottom: 1rem;
}

.profile-avatar-wrap {
    display: flex;
    align-items: center;
}

.profile-avatar,
.profile-avatar-img {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    background: #173f2d;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.profile-avatar-img {
    object-fit: cover;
    display: block;
}

.profile-title-block h2 {
    margin: 0;
    font-size: 1.35rem;
}

.profile-title-block p {
    margin: 0.25rem 0 0;
    color: #64748b;
    word-break: break-word;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.profile-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    background: rgba(24, 63, 47, 0.08);
    color: #173f2d;
    font-size: 0.82rem;
    font-weight: 700;
}

.profile-stats {
    display: grid;
    gap: 0;
    margin: 1.25rem 0 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.profile-stats div {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
    background: #fff;
}

.profile-stats div + div {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.profile-stats dt {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.profile-stats dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.profile-help-card h2 {
    margin-top: 0;
    font-size: 1rem;
}

.profile-help-card p {
    margin: 0.5rem 0 0;
    color: #64748b;
}

.profile-card {
    padding: 1.5rem;
}

.card-kicker {
    margin: 0 0 0.2rem;
    color: #256845;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-form-full {
    grid-column: 1 / -1;
}

.profile-upload-form {
    display: grid;
    gap: 1rem;
}

.upload-dropzone {
    display: grid;
    place-items: center;
    gap: 0.35rem;
    min-height: 160px;
    padding: 1.25rem;
    border: 2px dashed rgba(24, 63, 47, 0.28);
    border-radius: 18px;
    background: rgba(24, 63, 47, 0.035);
    cursor: pointer;
    text-align: center;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.upload-dropzone:hover {
    border-color: rgba(24, 63, 47, 0.55);
    background: rgba(24, 63, 47, 0.06);
    transform: translateY(-1px);
}

.upload-dropzone input {
    width: 100%;
    max-width: 340px;
    margin-top: 0.65rem;
}

.upload-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #173f2d;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
}

.upload-title {
    color: #0f172a;
    font-weight: 800;
}

.upload-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.form-message {
    margin: 0;
    font-weight: 700;
}

.form-message.is-success {
    color: #166534;
}

.form-message.is-error {
    color: #b91c1c;
}

@media (max-width: 920px) {
    .profile-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .profile-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-card,
    .profile-identity-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.private-code-card {
    border-left: 4px solid #173f2d;
}

.door-code-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(24, 63, 47, 0.16);
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(24, 63, 47, 0.08),
        rgba(24, 63, 47, 0.025)
    );
}

.door-code-label {
    display: block;
    margin-bottom: 0.35rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.door-code-value {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", monospace;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.door-code-empty {
    color: #94a3b8;
    letter-spacing: normal;
    font-family: inherit;
    font-size: 1rem;
}

.door-code-lock {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #173f2d;
    color: #fff;
    font-size: 1.1rem;
}

/* =========================================================
Coach directory
========================================================= */

.directory-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.directory-filter-card {
    margin-bottom: 1rem;
}

.coach-directory-filters {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(220px, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.coach-directory-filter-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.directory-results-summary {
    margin: 0.75rem 0 1rem;
    color: #64748b;
}

.directory-results-summary p {
    margin: 0;
}

.coach-directory-card {
    padding: 0;
    overflow: hidden;
}

.coach-directory-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.coach-directory-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.coach-directory-table th {
    padding: 0.9rem 1rem;
    background: #173f2d;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.coach-directory-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    vertical-align: middle;
}

.coach-directory-table tbody tr:nth-child(even) {
    background: rgba(24, 63, 47, 0.025);
}

.coach-directory-table tbody tr:hover {
    background: rgba(24, 63, 47, 0.07);
}

.coach-directory-table a {
    color: #173f2d;
    font-weight: 700;
    text-decoration: none;
}

.coach-directory-table a:hover {
    text-decoration: underline;
}

.directory-division-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    background: rgba(24, 63, 47, 0.08);
    color: #173f2d;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.coach-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 210px;
}

.coach-person-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    background: #173f2d;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.coach-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coach-person strong {
    display: block;
    color: #0f172a;
}

.coach-person small {
    display: block;
    margin-top: 0.1rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
}

.muted {
    color: #94a3b8;
}

.empty-state {
    padding: 3rem 1.5rem;
    text-align: center;
}

.empty-state h2 {
    margin: 0;
}

.empty-state p {
    margin: 0.5rem 0 0;
    color: #64748b;
}

@media (max-width: 860px) {
    .directory-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .coach-directory-filters {
        grid-template-columns: 1fr;
    }

    .coach-directory-filter-actions {
        flex-wrap: wrap;
    }

    .coach-directory-card {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .coach-directory-table-wrap {
        overflow: visible;
    }

    .coach-directory-table,
    .coach-directory-table thead,
    .coach-directory-table tbody,
    .coach-directory-table th,
    .coach-directory-table td,
    .coach-directory-table tr {
        display: block;
    }

    .coach-directory-table thead {
        display: none;
    }

    .coach-directory-table tbody {
        display: grid;
        gap: 1rem;
    }

    .coach-directory-table tr {
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    }

    .coach-directory-table tbody tr:nth-child(even),
    .coach-directory-table tbody tr:hover {
        background: #fff;
    }

    .coach-directory-table td {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 1rem;
        align-items: start;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .coach-directory-table td:last-child {
        border-bottom: 0;
    }

    .coach-directory-table td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .coach-person {
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .coach-directory-table td {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}
