html {
    scroll-behavior: smooth;
}

body {
    background: #000;
}

.row {
    max-width: 95rem;
}

#logo-wrap {
    float: left;
    position: relative;
    left: 50%;
}

#logo {
    float: left;
    position: relative;
    left: -50%;
}

#logo img {
	width: 220px;
	height: 70px;
    /*margin-top: 5px;*/
}

.showcase-page {
    background: #000;
    color: #f8fafc;
    min-height: 100vh;
}

.showcase-sticky-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.sticky-left, .sticky-center, .sticky-right {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.sticky-left {
    left: 30px;
}

.sticky-center {
    left: 50%;
    transform: translateX(-50%);
}

.sticky-right {
    right: 30px;
}

.sticky-user {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    color: #cbd5e1;
    font-size: 18px;
    transition: .25s;
}

.sticky-user:hover {
    background: #22d3ee;
    border-color: #22d3ee;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,99,235,.35);
}

.profile-shell {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1a1a1a;
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.profile-header {
    position: relative;
    padding: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: radial-gradient(circle at top right, rgba(59,130,246,0.22), transparent 28%), radial-gradient(circle at top left, rgba(239,68,68,0.16), transparent 24%);
}

.player-photo-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.15);
    background: #1f2937;
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.player-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambassador-badge-link {
    display: inline-flex;
    align-items: center;
    transition: .25s ease;
}

.ambassador-badge {
    width: 110px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0,170,255,.35)) drop-shadow(0 0 18px rgba(255,215,0,.35));
    transition: all .25s ease;
}

.ambassador-badge-link:hover .ambassador-badge {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(0,170,255,.55)) drop-shadow(0 0 26px rgba(255,215,0,.6));
}

.player-title {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.player-name {
    margin: 0;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -.03em;
}

.school-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.school-row img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.school-row p {
    color: #e2e8f0;
    font-size: 18px;
    font-weight: 700;
}

.stat-row {
    margin-top: 24px;
}

.info-card, .contact-item, .pill, .clean-list li {
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.info-label, .section-kicker, .news-date {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.info-value {
    margin-top: 5px;
    color: #fff;
    font-weight: 700;
}

.info-value a:link, .info-value a:active, .info-value a:visited {
    color: #fff;
    text-decoration: none;
}

.info-value a:hover {
    color: #008CBA;
    text-decoration: none;
}

.big-value {
    margin-top: 8px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.metric-value {
    margin-top: 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.contact-card, .profile-section {
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.player-overview {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height .35s ease;
}

.player-overview.expanded {
    max-height: 5000px;
}

.player-overview-content {
    color: #cbd5e1;
    line-height: 1.8;
}

.player-overview-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0),
        rgba(26,26,26,.95) 70%,
        #1a1a1a 100%
    );
    transition: opacity .25s;
}

.player-overview.expanded .player-overview-fade {
    opacity: 0;
}

.player-overview-toggle {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #008cba;
    text-decoration: none;
    transition: color .2s;
}

.player-overview-toggle:hover {
    color: #22d3ee; /*#67e8f9;*/
}

.player-overview-toggle::after {
    content: " ▼";
    font-size: 11px;
}

.player-overview-toggle.expanded::after {
    content: " ▲";
}

.contact-card {
    background: rgba(0,0,0,0.2);
}

.social-links a {
    display: block;
    margin: 0 6px 12px 0;
    padding: 13px 14px;
    border-radius: 18px;
    color: #f1f5f9;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.social-links a:hover {
    color: #fff;
    border-color: rgba(34,211,238,0.3);
    background: rgba(34,211,238,0.1);
}

.profile-tabs {
    padding: 16px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profile-tabs a {
    display: inline-block;
    margin: 0 8px 8px 0;
    padding: 10px 18px;
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.profile-tabs a.active {
    color: #111827;
    background: #fff;
}

.profile-body {
    padding: 32px 40px;
}

.profile-footer img {
    height: 40px;
    width: auto;
}

.profile-sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.profile-sub-nav dd {
    margin: 0;
}

.profile-sub-nav dd a {
    display: block;
    padding: 12px 24px;
    background: #000;
    border: 1px solid rgba(255,255,255,.08);
    color: #9ca3af;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    transition: all .25s ease;
    text-decoration: none;
}

.profile-sub-nav dd a:hover {
    background: #111;
    border-color: rgba(255,255,255,.18);
    color: #fff;
}

.profile-sub-nav dd.active a {
    background: rgba(34,211,238,.12);
    border: 1px solid rgba(34,211,238,.45);
    color: #67e8f9;
    box-shadow: 0 0 20px rgba(34,211,238,.18);
}

.profile-sub-nav dd.active a:hover {
    transform: translateY(-1px);
}

.profile-section h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.profile-section p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

.section-subtitle {
    color: #94a3b8 !important;
    font-size: 14px !important;
}

.video-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-card {
    display: table;
    width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.news-card img {
    width: 130px;
    height: 112px;
    object-fit: cover;
    border-radius: 16px;
    float: left;
    margin-right: 16px;
}

.news-date {
    color: #67e8f9;
}

.news-card h3 {
    margin: 6px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.news-card p {
    margin-bottom: 0;
    color: #94a3b8;
    font-size: 14px;
}

.clean-list {
    margin: 16px 0 0;
    list-style: none;
}

.clean-list li {
    color: #cbd5e1;
}

.recruit-block {
    margin-top: 20px;
}

.offer {
    border-color: rgba(74,222,128,0.3);
    background: rgba(74,222,128,0.1);
}

.profile-story {
    border-bottom: 1px dashed #ccc;
    padding: 1.5em 0em;
}

.profile-story img {
    border: 2px solid #000;
}

.profile-story h3 {
    margin: 6px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.college-recruiting .recruiting-group {
    margin-top: 24px;
}

.recruiting-group-title {
    margin: 0 0 10px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.recruiting-list {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}

.recruiting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 17px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .2s ease, border-color .2s ease;
}

.recruiting-item:last-child {
    border-bottom: 0;
}

.recruiting-item:hover {
    background: rgba(34,211,238,.07);
}

.recruiting-school {
    color: #f8fafc;
    font-size: 14px;
    font-weight: 700;
}

.recruiting-status {
    display: inline-block;
    flex: 0 0 auto;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.recruiting-status.interest {
    color: #67e8f9;
    background: rgba(34,211,238,.10);
    border: 1px solid rgba(34,211,238,.30);
}

.recruiting-status.offer {
    color: #86efac;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.30);
}
.commitment-item {
    background:
        linear-gradient(
            135deg,
            rgba(245,158,11,.11),
            rgba(255,255,255,.03)
        );
}

.recruiting-status.committed {
    color: #fde68a;
    background: rgba(245,158,11,.14);
    border: 1px solid rgba(245,158,11,.38);
    box-shadow: 0 0 18px rgba(245,158,11,.10);
}

.table-wrapper table {
	width: 100%;
	padding: 0px;
	border: 0;
	border-spacing: 0px;
	border-collapse: collapse;
}

.table-wrapper th {
	background: #1a1a1a;
	color: #fff;
}

.table-wrapper table th, .table-wrapper table td {
	padding: 15px;
	border: none;
	font-size: 15px;
}

.table-wrapper th.align-center, .table-wrapper td.align-center {
	text-align: center;
}

.table-wrapper table tr {
    background: #333;
}

.table-wrapper table tr.even, .table-wrapper table tr.alt, .table-wrapper table tr:nth-of-type(2n) {
    background: #444;
}

.table-wrapper td {
	color: #fff;
}

.profile-footer {
    padding: 45px 30px;
    text-align: center;
    background: #111;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-logo img{
    height: 60px;
    width: auto;
    opacity: .95;
    transition: .25s;
}

.footer-logo img:hover{
    opacity: 1;
    transform: scale(1.03);
}

.footer-tagline{
    margin: 18px 0 30px;
    color: #94a3b8;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #cbd5e1;
    font-size: 17px;
}


.footer-social a:hover {
    background: #22d3ee;
    border-color: #22d3ee;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,99,235,.35);
}

.footer-links {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
}

.footer-links span {
    margin: 0 10px;
}

.footer-links a {
    color :#94a3b8;
    text-decoration:none;
    transition:.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: #64748b;
    font-size: 13px;
}

.login-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
}

.login-card h2{
    margin: 0 0 6px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.login-subtitle{
    margin: 0 0 28px;
    color: #94a3b8;
    text-align: center;
}

.login-card label{
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

.login-card input{
    width: 100%;
    height: 52px;
    margin-bottom: 18px;
    padding: 0 16px;
    background: #000;
    border: 1px solid rgba(255,255,255,.08);
    border-radius :14px;
    color: #000;
}

.login-card input:focus{
    border-color: #22d3ee;
    outline: none;
    box-shadow: 0 0 0 3px rgba(34,211,238,.15);

}

.login-button{
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 14px;
    background: #2563EB;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.login-button:hover{
    background: #1D4ED8;
}

.login-footer{
    margin-top: 20px;
    text-align: center;

}

.login-footer a{
    color: #22D3EE;
    text-decoration: none;
    font-size: 14px;
}

.login-footer a:hover{
    color: #67E8F9;
}

/* ==========================================================
   Combine Profile Section
========================================================== */

.combine-profile-section {
    overflow: hidden;
}


/* ==========================================================
   Section Heading
========================================================== */

.combine-section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 24px;
}

.profile-section-heading-content {
    max-width: 760px;
}

.profile-section-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #22d3ee;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.combine-section-heading h2 {
    display: flex;

    align-items: center;

    margin: 0;

    color: #fff;

    font-size: 26px;
    font-weight: 900;
}

.combine-section-heading h2 i {
    margin-right: 11px;

    color: #22d3ee;

    font-size: 21px;
}

.combine-section-heading p {
    margin: 9px 0 0;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.65;
}

.combine-verified-badge {
    display: inline-flex;

    flex: 0 0 auto;

    align-items: center;

    margin-left: 25px;
    padding: 9px 13px;

    color: #86efac;

    font-size: 11px;
    font-weight: 900;

    background: rgba(34, 197, 94, .07);

    border: 1px solid rgba(34, 197, 94, .20);
    border-radius: 999px;
}

.combine-verified-badge i {
    margin-right: 7px;
}


/* ==========================================================
   Performance Highlights
========================================================== */

.combine-highlights-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    margin-bottom: 20px;
}

.combine-highlight-card {
    display: flex;

    align-items: center;

    min-width: 0;

    padding: 17px;

    background: #1a1a1a;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.combine-highlight-card:hover {
    background: #202020;

    border-color: rgba(34, 211, 238, .24);

    transform: translateY(-2px);
}

.combine-highlight-icon {
    display: inline-flex;

    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    margin-right: 13px;

    color: #22d3ee;

    font-size: 16px;

    background: rgba(34, 211, 238, .07);

    border: 1px solid rgba(34, 211, 238, .16);
    border-radius: 12px;
}

.combine-highlight-content {
    min-width: 0;
}

.combine-highlight-label {
    display: block;

    overflow: hidden;

    margin-bottom: 3px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 800;

    text-overflow: ellipsis;
    white-space: nowrap;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.combine-highlight-content strong {
    display: block;

    color: #fff;

    font-size: 23px;
    font-weight: 900;
    line-height: 1.15;
}

.combine-highlight-content strong small {
    color: #64748b;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
}

.combine-highlight-meta,
.combine-highlight-improvement {
    display: block;

    margin-top: 5px;

    color: #64748b;

    font-size: 9px;
    font-weight: 700;
}

.combine-highlight-improvement {
    color: #86efac;
}

.combine-highlight-improvement i {
    margin-right: 4px;
}


/* ==========================================================
   Results Card
========================================================== */

.combine-results-card {
    overflow: hidden;

    background: #1a1a1a;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
}

.combine-results-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 20px 22px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.combine-results-label {
    display: block;

    margin-bottom: 4px;

    color: #22d3ee;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.combine-results-header h3 {
    margin: 0;

    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

.combine-results-header p {
    margin: 5px 0 0;

    color: #64748b;

    font-size: 12px;
}

.combine-results-count {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-width: 65px;
    min-height: 58px;

    margin-left: 20px;

    background: rgba(34, 211, 238, .06);

    border: 1px solid rgba(34, 211, 238, .15);
    border-radius: 12px;
}

.combine-results-count strong {
    color: #fff;

    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.combine-results-count span {
    margin-top: 4px;

    color: #64748b;

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.profile-sport-selector{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:24px;
}

.profile-sport-tab{
    display:flex;
    align-items:center;

    min-width:220px;

    padding:16px 18px;

    background:#1A1A1A;

    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;

    transition:all .2s ease;
}

.profile-sport-tab:hover{
    background:#202020;
    border-color:rgba(34,211,238,.25);
}

.profile-sport-tab.active{
    background:rgba(34,211,238,.08);
    border-color:#22d3ee;
}

.profile-sport-icon{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:14px;

    color:#22d3ee;

    background:rgba(34,211,238,.08);

    border-radius:12px;

    font-size:18px;
}

.profile-sport-label{

    display:block;

    color:#64748b;

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:.08em;

    margin-bottom:2px;
}

.profile-sport-info strong{

    color:#fff;

    font-size:18px;

    font-weight:800;
}

/* ==========================================================
   Results Table
========================================================== */

.combine-table-wrapper {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.combine-results-table {
    width: 100%;
    margin: 0;
    background: transparent;
    border: 0;
    border-collapse: collapse;
}

.combine-results-table thead {
    background: rgba(0, 0, 0, .22);
}

.combine-results-table thead th {
    min-width: 78px;
    padding: 13px 11px;
    color: #cbd5e1;
    font-size: 9px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.combine-results-table thead th:first-child {
    text-align: left;
    min-width: 92px;
}

.combine-results-table thead th:last-child {
    border-right: 0;
}

.combine-results-table thead th span {
    display: block;
}

.combine-results-table thead th small {
    display: block;
    margin-top: 4px;
    color: #475569;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .08em;
}

.combine-results-table tbody tr {
    background: transparent;
    transition: background-color .2s ease;
}

.combine-results-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, .018);
}

.combine-results-table tbody tr:hover {
    background: rgba(34, 211, 238, .035);
}

.combine-results-table tbody td {
    position: relative;
    padding: 16px 11px;
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .045);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.combine-results-table tbody td:first-child {
    text-align: left;
}

.combine-results-table tbody td:last-child {
    border-right: 0;
}

.combine-results-table tbody tr:last-child td {
    border-bottom: 0;
}

.combine-current-result {
    background: rgba(34, 211, 238, .025) !important;

    box-shadow: inset 3px 0 0 #22d3ee;
}

.combine-year {
    display: block;

    color: #fff;

    font-size: 13px;
    font-weight: 900;
}

.combine-latest-badge {
    display: inline-flex;

    margin-top: 5px;
    padding: 3px 6px;

    color: #22d3ee;

    font-size: 7px;
    font-weight: 900;

    background: rgba(34, 211, 238, .07);

    border: 1px solid rgba(34, 211, 238, .16);
    border-radius: 999px;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.combine-best-result {
    color: #67e8f9 !important;
}

.combine-best-result > i {
    margin-left: 4px;

    color: #facc15;

    font-size: 8px;
}

.combine-empty-result {
    color: #475569 !important;
}

.combine-change {
    display: block;

    margin-top: 3px;

    font-size: 8px;
    font-weight: 900;
}

.combine-change-up {
    color: #86efac;
}


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

.combine-table-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 15px 20px;

    color: #64748b;

    font-size: 9px;

    background: rgba(0, 0, 0, .14);

    border-top: 1px solid rgba(255, 255, 255, .07);
}

.combine-table-footer > div {
    display: flex;

    align-items: center;
}

.combine-table-footer > div i {
    margin-right: 7px;

    color: #22d3ee;
}

.combine-event-link {
    display: inline-flex;

    align-items: center;

    margin-left: 20px;

    color: #94a3b8;

    font-size: 9px;
    font-weight: 900;

    white-space: nowrap;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.combine-event-link i {
    margin-left: 7px;

    color: #22d3ee;

    transition: transform .2s ease;
}

.combine-event-link:hover,
.combine-event-link:focus {
    color: #22d3ee;
}

.combine-event-link:hover i {
    transform: translateX(3px);
}

.profile-season-selector{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    /*margin:22px 0 28px;*/

}

.profile-season-selector dd {
    margin:0;
}

.profile-season-selector dd a {
    display:flex;
    flex-direction:column;
    justify-content:center;
    /*width:135px;
    height:82px;*/
    padding: 10px; /*16px;*/
    background:#1A1A1A;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    transition:all .2s ease;
}

.profile-season-selector dd a:hover {
    background:#202020;
    border-color:rgba(34,211,238,.25);
}

.profile-season-selector dd.active a {
    background:rgba(34,211,238,.08);
    border-color:#22d3ee;
    box-shadow:0 0 0 1px rgba(34,211,238,.15);
}

.profile-season-selector .season-label {
    color:#64748b;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:6px;
}

.profile-season-selector strong {
    color:#fff;
    font-size: 14px; /*22px;*/
    font-weight:900;
    line-height:1;
}

.profile-season-selector dd.active strong {
    color:#22d3ee;
}

.football-stats-panel, .baseball-stats-panel, .softball-stats-panel, .golf-stats-panel, .basketball-stats-panel, .soccer-stats-panel, .tennis-stats-panel, .swimming-stats-panel, .xc-stats-panel, .volleyball-stats-panel, .wrestling-stats-panel, .track-stats-panel {
    display: none;
}

.football-stats-panel.active, .baseball-stats-panel.active, .softball-stats-panel.active, .golf-stats-panel.active, .basketball-stats-panel.active, .soccer-stats-panel.active, .tennis-stats-panel.active, .swimming-stats-panel.active, .xc-stats-panel.active, .volleyball-stats-panel.active, .wrestling-stats-panel.active, .track-stats-panel.active {
    display: block;
}

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

@media only screen and (max-width: 64em) {
    .combine-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media only screen and (max-width: 40em) {
    .combine-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .combine-section-heading h2 {
        font-size: 22px;
    }

    .combine-verified-badge {
        margin: 15px 0 0;
    }

    .combine-highlights-grid {
        grid-template-columns: 1fr;
    }

    .combine-results-header {
        align-items: flex-start;
    }

    .combine-results-count {
        min-width: 58px;
    }

    .combine-table-wrapper {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .combine-results-table {
        min-width: 1050px;
    }

    .combine-table-footer {
        align-items: flex-start;
        flex-direction: column;

        line-height: 1.6;
    }

    .combine-event-link {
        margin: 12px 0 0;
    }
}

@media only screen and (max-width: 40em){
    .player-title{
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .ambassador-badge{
        width: 90px;
    }
}

@media only screen and (max-width: 40em) {
    .player-name {
        font-size: 32px;
        text-align: center;
    }

    .school-row {
        justify-content: center;
    }

    .news-card img {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 14px;
    }
}

@media only screen and (max-width: 64em) {
    .profile-header {
        padding: 32px 24px;
    }

    .player-name {
        margin-top: 24px;
        font-size: 36px;
    }

    .profile-tabs, .profile-body, .profile-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-card {
        margin-top: 24px;
    }
}

@media only screen and (max-width:40em) {
    .profile-sub-nav {
        justify-content: center;
    }

    .profile-sub-nav dd a {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media only screen and (max-width:40em){
    .profile-footer{
        padding: 35px 20px;
    }

    .footer-logo img{
        height: 50px;
    }

    .footer-tagline{
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-links{
        line-height: 2;
    }

    .footer-links span{
        display: none;
    }

    .footer-links a{
        display: block;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 40em) {
    .recruiting-item {
        padding: 14px;
    }

    .recruiting-school {
        font-size: 13px;
    }

    .recruiting-status {
        padding: 6px 9px;
        font-size: 9px;
    }
}

@media only screen and (max-width:40em){
    .sticky-left{
        left: 15px;
    }

    .sticky-right{
        right: 15px;
    }

    .sticky-center img{
        height: 36px;
    }

    .sticky-user{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}