#nff-athlete-dashboard {
    --athlete-green: #12643a;
    --athlete-lime: #9bb70d;
    --athlete-ink: #182722;
    --athlete-muted: #52635b;
    color: var(--athlete-ink);
    padding: 36px 0 72px;
}

#nff-athlete-dashboard *,
#nff-athlete-dashboard *::before,
#nff-athlete-dashboard *::after {
    box-sizing: border-box;
}

#nff-athlete-dashboard [hidden] {
    display: none !important;
}

#nff-athlete-dashboard .nff-athlete-dashboard-heading {
    border-left: 5px solid var(--athlete-lime);
    background: #f1f6f1;
    padding: 26px 30px;
    margin-bottom: 28px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-eyebrow {
    color: var(--athlete-green);
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

#nff-athlete-dashboard h1 {
    color: var(--athlete-ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    margin: 4px 0 8px;
    text-transform: none;
}

#nff-athlete-dashboard .nff-athlete-dashboard-heading p {
    color: var(--athlete-muted);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

#nff-athlete-dashboard .nff-athlete-dashboard-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px 20px;
    margin-bottom: 22px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-field {
    flex: 1 1 240px;
    max-width: 420px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-field label {
    color: var(--athlete-ink);
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-search {
    position: relative;
}

#nff-athlete-dashboard .nff-athlete-dashboard-search .fa {
    color: var(--athlete-muted);
    left: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#nff-athlete-dashboard input[type="search"],
#nff-athlete-dashboard select {
    background: #fff;
    border: 1px solid #bfcfc4;
    border-radius: 4px;
    color: var(--athlete-ink);
    font-size: 15px;
    height: 44px;
    margin: 0;
    max-width: none;
    padding: 9px 12px;
    width: 100%;
}

#nff-athlete-dashboard input[type="search"] {
    padding-left: 38px;
}

#nff-athlete-dashboard input:focus-visible,
#nff-athlete-dashboard select:focus-visible,
#nff-athlete-dashboard .nff-athlete-dashboard-card:focus-visible {
    outline: 3px solid var(--athlete-lime);
    outline-offset: 3px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-count {
    color: var(--athlete-muted);
    font-size: 13px;
    padding-bottom: 12px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#nff-athlete-dashboard .nff-athlete-dashboard-card {
    background: #fff;
    border: 1px solid #d9e2db;
    border-top: 3px solid var(--athlete-green);
    border-radius: 5px;
    color: var(--athlete-ink);
    display: flex;
    flex-direction: column;
    min-height: 192px;
    overflow-wrap: anywhere;
    padding: 20px;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card:hover {
    border-color: var(--athlete-green);
    box-shadow: 0 8px 22px rgba(18, 55, 33, .12);
    color: var(--athlete-ink);
    text-decoration: none;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-top {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-icon {
    align-items: center;
    background: #eaf3e8;
    border-radius: 4px;
    color: var(--athlete-green);
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 17px;
    height: 38px;
    justify-content: center;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-topic {
    color: var(--athlete-green);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-title {
    color: var(--athlete-ink);
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-description {
    color: var(--athlete-muted);
    display: block;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 16px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-action {
    color: var(--athlete-green);
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-top: auto;
}

#nff-athlete-dashboard .nff-athlete-dashboard-card-action .fa {
    margin-left: 6px;
}

#nff-athlete-dashboard .nff-athlete-dashboard-no-results,
#nff-athlete-dashboard .nff-athlete-dashboard-empty {
    background: #f1f6f1;
    color: var(--athlete-muted);
    margin: 0;
    padding: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    body.page-template-nff-athlete-dashboard-template-php #header .no-header-logo-wrapper img.normal_logo {
        max-height: 170px;
        width: auto;
    }
}

@media (max-width: 991px) {
    #nff-athlete-dashboard .nff-athlete-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #nff-athlete-dashboard {
        padding: 22px 0 48px;
    }

    #nff-athlete-dashboard .nff-athlete-dashboard-heading {
        padding: 20px;
    }

    #nff-athlete-dashboard h1 {
        font-size: 32px;
    }

    #nff-athlete-dashboard .nff-athlete-dashboard-field {
        max-width: none;
    }

    #nff-athlete-dashboard .nff-athlete-dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}