:root {
    --challenges-accent: #d4af37;
    --challenges-accent-rgb: 212, 175, 55;
    --challenges-bg: #08080b;
    --challenges-panel: #0d0d11;
    --challenges-row: #111115;
    --challenges-columns: 235px 112px 112px 138px 138px 138px 138px 132px 128px 138px 154px 154px 154px 122px;
    --challenges-table-width: 1953px;
}

.challenges-page,
.challenges-page * {
    box-sizing: border-box;
}

.challenges-page {
    min-height: 100vh;
    padding-bottom: 86px;
    overflow: clip;
    color: #f7f7f8;
    background:
        radial-gradient(circle at 50% 0, rgba(var(--challenges-accent-rgb), 0.08), transparent 33%),
        #08080b;
    font-family: "Cairo", sans-serif;
}

.challenges-page[data-market="futures"] {
    --challenges-accent: #10b981;
    --challenges-accent-rgb: 16, 185, 129;
}

.challenges-page[data-market="crypto"] {
    --challenges-accent: #3b82f6;
    --challenges-accent-rgb: 59, 130, 246;
}

.challenges-shell {
    width: min(1460px, calc(100% - 34px));
    margin-inline: auto;
}

.challenges-hero {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 76%),
        #09090c;
}

.challenges-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--challenges-accent-rgb), 0.78),
        transparent
    );
}

.challenges-hero-glow {
    position: absolute;
    top: -170px;
    left: 50%;
    width: 740px;
    height: 430px;
    border-radius: 50%;
    background: rgba(var(--challenges-accent-rgb), 0.13);
    filter: blur(115px);
    transform: translateX(-50%);
    pointer-events: none;
}

.challenges-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 310px;
    padding-block: 54px 42px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.challenges-kicker {
    display: inline-flex;
    min-height: 31px;
    padding-inline: 13px;
    align-items: center;
    color: var(--challenges-accent);
    border: 1px solid rgba(var(--challenges-accent-rgb), 0.32);
    border-radius: 999px;
    background: rgba(var(--challenges-accent-rgb), 0.075);
    font-size: 11px;
    font-weight: 900;
}

.challenges-hero h1 {
    max-width: 860px;
    margin: 17px 0 7px;
    color: #fff;
    font-size: clamp(31px, 4.2vw, 55px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -1.2px;
}

.challenges-hero h1 span {
    color: var(--challenges-accent);
}

.challenges-hero p {
    max-width: 720px;
    margin: 0;
    color: #a7a7af;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
}

.challenges-hero-meta {
    display: flex;
    margin-top: 25px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.challenges-hero-meta > div {
    display: flex;
    min-height: 46px;
    padding: 7px 13px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
}

.challenges-hero-meta strong {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.challenges-hero-meta span,
.challenges-hero-meta time {
    color: #b8b8bf;
    font-size: 10px;
    font-weight: 800;
}

.challenges-hero-meta .challenges-update-badge {
    border-color: rgba(var(--challenges-accent-rgb), 0.2);
    background: rgba(var(--challenges-accent-rgb), 0.055);
}

.challenges-update-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--challenges-accent);
    box-shadow: 0 0 11px rgba(var(--challenges-accent-rgb), 0.72);
}

.challenges-update-badge time {
    color: var(--challenges-accent);
}

.challenges-directory {
    position: relative;
    margin-top: 32px;
}

.challenges-directory-heading {
    display: flex;
    margin-bottom: 17px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.challenges-directory-heading > div > span {
    color: var(--challenges-accent);
    font-size: 10px;
    font-weight: 900;
}

.challenges-directory-heading h2 {
    margin: 2px 0 0;
    color: #fff;
    font-size: clamp(22px, 3vw, 31px);
    font-weight: 900;
}

.challenges-directory-heading p {
    margin: 0;
    color: #92929a;
    font-size: 11px;
    font-weight: 800;
}

.challenges-directory-heading p strong {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.challenges-filters {
    display: grid;
    grid-template-columns: repeat(5, minmax(135px, 1fr)) minmax(190px, 1.35fr) auto;
    margin-bottom: 20px;
    padding: 12px;
    align-items: end;
    gap: 9px;
    border: 1px solid rgba(var(--challenges-accent-rgb), 0.16);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(var(--challenges-accent-rgb), 0.075),
            transparent 31%
        ),
        linear-gradient(145deg, #18181d, #121217 72%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 17px 42px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1181px) {
    .challenges-page[data-market="futures"] .challenges-filters {
        grid-template-columns: repeat(4, minmax(135px, 1fr)) minmax(190px, 1.35fr) auto;
    }
}

.challenges-filter-field,
.challenges-search-field {
    display: flex;
    min-width: 0;
    gap: 6px;
    flex-direction: column;
}

.challenges-filter-field[hidden] {
    display: none !important;
}

.challenges-filter-field > span,
.challenges-search-field > span:first-child {
    padding-inline: 3px;
    color: #85858e;
    font-size: 9px;
    font-weight: 900;
}

.challenges-filter-field select,
.challenges-search-input {
    width: 100%;
    min-height: 43px;
    color: #ededf0;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 12px;
    outline: 0;
    background: rgba(8, 8, 11, 0.78);
    font-family: "Cairo", sans-serif;
    font-size: 10px;
    font-weight: 800;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.challenges-filter-field select {
    padding: 0 11px;
    cursor: pointer;
}

.challenges-filter-field select:focus,
.challenges-search-input:focus-within {
    border-color: rgba(var(--challenges-accent-rgb), 0.62);
    box-shadow: 0 0 0 3px rgba(var(--challenges-accent-rgb), 0.08);
}

.challenges-search-input {
    display: flex;
    padding-inline: 11px;
    align-items: center;
    gap: 8px;
}

.challenges-search-input svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: #85858e;
    stroke-width: 1.8;
}

.challenges-search-input input {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0;
    color: #fff;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: "Cairo", sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.challenges-search-input input::placeholder {
    color: #686870;
}

.challenges-reset {
    min-height: 43px;
    padding-inline: 14px;
    color: #c8c8ce;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: transparent;
    font-family: "Cairo", sans-serif;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.challenges-reset:hover {
    color: #fff;
    border-color: rgba(var(--challenges-accent-rgb), 0.42);
    background: rgba(var(--challenges-accent-rgb), 0.06);
}

.challenges-market-pending {
    min-height: 280px;
    padding: 54px 25px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(var(--challenges-accent-rgb), 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 20%, rgba(var(--challenges-accent-rgb), 0.1), transparent 50%),
        #0d0d11;
    text-align: center;
}

.challenges-market-pending:not([hidden]) {
    display: grid;
}

.challenges-market-pending span {
    color: var(--challenges-accent);
    font-size: 10px;
    font-weight: 900;
}

.challenges-market-pending h2 {
    margin: 5px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
}

.challenges-market-pending p {
    max-width: 560px;
    margin: 0;
    color: #94949d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
}

.challenges-table-area[hidden],
.challenges-market-pending[hidden] {
    display: none !important;
}

.challenges-scroll-guide {
    display: flex;
    margin: 9px 0 18px;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.challenges-scroll-track {
    position: relative;
    width: min(360px, 42vw);
    height: 6px;
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.055);
    cursor: ew-resize;
    touch-action: none;
}

.challenges-scroll-track:focus-visible {
    outline: 2px solid rgba(var(--challenges-accent-rgb), 0.62);
    outline-offset: 5px;
}

.challenges-scroll-track > span {
    position: absolute;
    top: 0;
    right: 0;
    width: 26%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, color-mix(in srgb, var(--challenges-accent) 72%, #fff), var(--challenges-accent));
    box-shadow: 0 0 15px rgba(var(--challenges-accent-rgb), 0.38);
    will-change: transform, width;
    cursor: grab;
}

.challenges-scroll-track.is-dragging > span {
    cursor: grabbing;
}

.challenges-scroll-guide.is-static {
    opacity: 0.42;
}

.challenges-scroll-guide small {
    color: #707078;
    font-size: 9px;
    font-weight: 800;
}

.challenges-table-head-shell {
    position: sticky;
    top: var(--apf-header-height, 123px);
    z-index: 45;
    width: 100%;
    overflow: hidden;
    direction: rtl;
    border-block: 1px solid rgba(255, 255, 255, 0.115);
    background: #09090c;
    box-shadow: 0 12px 23px rgba(8, 8, 11, 0.86);
}

.challenges-table-head,
.challenges-table {
    width: max(100%, var(--challenges-table-width));
    min-width: var(--challenges-table-width);
    direction: rtl;
}

.challenges-table-head,
.challenges-table-row {
    display: grid;
    grid-template-columns: var(--challenges-columns);
    align-items: stretch;
}

.challenges-table-head {
    min-height: 53px;
    color: #87878f;
    background: #09090c;
    transform: translateX(var(--challenges-head-offset, 0));
    will-change: transform;
}

.challenges-head-cell,
.challenges-table-cell {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.095);
    text-align: center;
}

.challenges-head-cell {
    min-height: 53px;
    padding: 7px 9px;
}

.challenges-sort-button {
    display: inline-flex;
    width: 100%;
    min-height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: inherit;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: "Cairo", sans-serif;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.45;
    cursor: pointer;
}

.challenges-sort-button:hover,
.challenges-sort-button.is-active {
    color: var(--challenges-accent);
}

.challenges-sort-button:focus-visible {
    border-radius: 8px;
    outline: 2px solid rgba(var(--challenges-accent-rgb), 0.58);
    outline-offset: 2px;
}

.challenges-sort-icon {
    flex: 0 0 auto;
    color: #64646c;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.challenges-sort-button.is-active .challenges-sort-icon {
    color: var(--challenges-accent);
}

.challenges-head-cell--company {
    position: relative;
    z-index: 10;
    justify-content: flex-start;
    color: #9999a2;
    background: #09090c;
    transform: translateX(var(--challenges-company-head-offset, 0));
    will-change: transform;
}

.challenges-head-cell--company .challenges-sort-button {
    justify-content: flex-start;
}

.challenges-directory.is-table-scrolled .challenges-head-cell--company {
    width: 114px;
    min-width: 114px;
    max-width: 114px;
    padding-inline: 6px;
    overflow: hidden;
}

.challenges-directory.is-table-scrolled .challenges-head-cell--company .challenges-sort-button {
    justify-content: center;
    gap: 4px;
}

.challenges-directory.is-table-scrolled .challenges-head-cell--company .challenges-sort-button span {
    font-size: 0;
    white-space: nowrap;
}

.challenges-directory.is-table-scrolled .challenges-head-cell--company .challenges-sort-button span::after {
    content: "الشركة";
    font-size: 9px;
}

.challenges-head-cell--actions {
    color: #777780;
    font-size: 9px;
    font-weight: 900;
}

@media (min-width: 761px) {
    .challenges-head-cell--price,
    .challenges-head-cell--actions {
        position: relative;
        z-index: 12;
        background: #09090c;
        transform: translateX(var(--challenges-left-head-offset, 0));
        will-change: transform;
    }

    .challenges-head-cell--price {
        box-shadow: 16px 0 27px rgba(0, 0, 0, 0.4);
    }
}

.challenges-table-viewport {
    width: 100%;
    margin-top: 9px;
    overflow-x: auto;
    overflow-y: hidden;
    direction: rtl;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.challenges-table-viewport::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.challenges-table-viewport:focus-visible {
    border-radius: 18px;
    outline: 2px solid rgba(var(--challenges-accent-rgb), 0.55);
    outline-offset: 5px;
}

.challenges-table-body {
    display: grid;
    gap: 7px;
}

.challenges-table-row {
    --challenge-row-bg: #111115;
    position: relative;
    min-height: 104px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: var(--challenge-row-bg);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.challenges-table-row:nth-child(even) {
    --challenge-row-bg: #0e0e12;
}

.challenges-table-row:hover {
    border-color: rgba(var(--challenges-accent-rgb), 0.25);
    background: color-mix(in srgb, var(--challenge-row-bg) 94%, var(--challenges-accent));
}

.challenges-table-cell {
    min-height: 102px;
    padding: 10px;
    color: #e7e7eb;
    font-size: 11px;
    font-weight: 800;
}

.challenges-table-cell:last-child {
    border-inline-end: 0;
}

.challenges-table-cell--company {
    position: sticky;
    right: 0;
    z-index: 7;
    justify-content: flex-start;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 0 16px 16px 0;
    background: var(--challenge-row-bg);
    box-shadow: -16px 0 28px rgba(0, 0, 0, 0.36);
    text-align: right;
}

.challenges-rank {
    display: inline-grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    color: var(--challenges-accent);
    border: 1px solid rgba(var(--challenges-accent-rgb), 0.44);
    border-radius: 50%;
    background: rgba(var(--challenges-accent-rgb), 0.055);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
}

.challenges-company-logo {
    display: grid;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    padding: 4px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(var(--challenges-accent-rgb), 0.48);
    border-radius: 14px;
    background: #060608;
}

.challenges-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.challenges-company-copy {
    display: flex;
    min-width: 0;
    overflow: hidden;
    gap: 3px;
    flex: 1;
    flex-direction: column;
    opacity: 1;
    transition: max-width 0.2s ease, opacity 0.14s ease;
}

.challenges-company-copy > a {
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.challenges-company-copy > a:hover {
    color: var(--challenges-accent);
}

.challenges-company-copy strong {
    overflow: hidden;
    color: var(--challenges-accent);
    font-size: 9px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.challenges-company-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888891;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;
}

.challenges-company-rating b {
    color: #f4f4f5;
    font-size: 9px;
}

.challenges-company-rating i {
    color: var(--challenges-accent);
    font-style: normal;
}

.challenges-directory.is-table-scrolled .challenges-table-cell--company {
    width: 114px;
}

.challenges-directory.is-table-scrolled .challenges-company-copy {
    max-width: 0;
    flex: 0 0 0;
    opacity: 0;
    pointer-events: none;
}

.challenges-table-cell--primary {
    color: #fff;
    font-family: Arial, "Cairo", sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.challenges-size,
.challenges-phase,
.challenges-drawdown-type,
.challenges-leverage {
    display: inline-flex;
    min-height: 29px;
    padding-inline: 9px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.challenges-drawdown-type.is-static {
    color: var(--challenges-accent);
    border-color: rgba(var(--challenges-accent-rgb), 0.34);
    background: rgba(var(--challenges-accent-rgb), 0.06);
}

.challenges-assets {
    display: flex;
    max-height: 70px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.challenges-assets b {
    display: inline-flex;
    min-height: 24px;
    padding-inline: 8px;
    align-items: center;
    color: #c9c9d0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.challenges-status {
    display: inline-flex;
    min-height: 29px;
    padding-inline: 10px;
    align-items: center;
    justify-content: center;
    color: #b8b8c0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 9px;
    font-weight: 900;
    white-space: nowrap;
}

.challenges-status.is-positive {
    color: #39d99a;
    border-color: rgba(16, 185, 129, 0.32);
    background: rgba(16, 185, 129, 0.07);
}

.challenges-status.is-negative {
    color: #ff7b82;
    border-color: rgba(239, 68, 68, 0.32);
    background: rgba(239, 68, 68, 0.07);
}

.challenges-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.challenges-metric strong {
    color: #fff;
    font-family: Arial, "Cairo", sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}

.challenges-metric small {
    max-width: 120px;
    overflow: hidden;
    color: #85858e;
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.challenges-price {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-direction: column;
}

.challenges-price strong {
    color: var(--challenges-accent);
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
}

.challenges-price del {
    color: #73737c;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

.challenges-discount-badge {
    display: inline-flex;
    min-height: 19px;
    padding-inline: 6px;
    align-items: center;
    color: #0a0a0c;
    border-radius: 999px;
    background: var(--challenges-accent);
    font-size: 7px;
    font-weight: 900;
}

.challenges-table-cell--actions {
    display: flex;
    padding: 9px;
    gap: 7px;
    flex-direction: column;
    border-radius: 16px 0 0 16px;
}

@media (min-width: 761px) {
    .challenges-table-cell--price,
    .challenges-table-cell--actions {
        position: sticky;
        background: var(--challenge-row-bg);
    }

    .challenges-table-cell--price {
        left: var(--challenges-actions-width, 122px);
        z-index: 8;
        box-shadow: 16px 0 27px rgba(0, 0, 0, 0.4);
    }

    .challenges-table-cell--actions {
        left: 0;
        z-index: 9;
    }
}

.challenges-action-link {
    display: inline-flex;
    width: 100%;
    min-height: 33px;
    padding: 5px 8px;
    align-items: center;
    justify-content: center;
    color: #0a0a0c;
    border: 1px solid var(--challenges-accent);
    border-radius: 999px;
    background: var(--challenges-accent);
    text-decoration: none;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.3;
}

.challenges-action-link--details {
    color: #efeff1;
    border-color: rgba(var(--challenges-accent-rgb), 0.42);
    background: transparent;
}

.challenges-action-link:hover {
    filter: brightness(1.1);
}

.challenges-empty {
    margin-top: 12px;
    padding: 36px 20px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.challenges-empty:not([hidden]) {
    display: grid;
    gap: 5px;
}

.challenges-empty strong {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.challenges-empty span {
    color: #85858e;
    font-size: 10px;
    font-weight: 800;
}

.challenges-pagination {
    display: flex;
    min-height: 42px;
    margin-top: 22px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.challenges-page-button {
    display: inline-grid;
    min-width: 36px;
    height: 36px;
    padding-inline: 8px;
    place-items: center;
    color: #b8b8bf;
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 10px;
    background: #111116;
    font-family: "Cairo", sans-serif;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
}

.challenges-page-button:hover:not(:disabled),
.challenges-page-button.is-active {
    color: #09090b;
    border-color: var(--challenges-accent);
    background: var(--challenges-accent);
}

.challenges-page-button:disabled {
    opacity: 0.34;
    cursor: not-allowed;
}

.challenges-page-ellipsis {
    display: inline-grid;
    width: 25px;
    place-items: center;
    color: #66666e;
    font-size: 11px;
}

@media (max-width: 1180px) {
    .challenges-filters {
        grid-template-columns: repeat(3, minmax(145px, 1fr));
    }

    .challenges-search-field {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .challenges-shell {
        width: min(100% - 16px, 1460px);
    }

    .challenges-hero,
    .challenges-hero-content {
        min-height: 275px;
    }

    .challenges-hero-content {
        padding-block: 38px 31px;
    }

    .challenges-hero h1 {
        margin-top: 13px;
        font-size: 31px;
        letter-spacing: -0.5px;
    }

    .challenges-hero p {
        max-width: 560px;
        font-size: 11px;
    }

    .challenges-hero-meta {
        width: 100%;
        margin-top: 19px;
        gap: 6px;
    }

    .challenges-hero-meta > div {
        min-height: 41px;
        padding: 6px 10px;
    }

    .challenges-hero-meta strong {
        font-size: 14px;
    }

    .challenges-hero-meta span,
    .challenges-hero-meta time {
        font-size: 8px;
    }

    .challenges-directory {
        margin-top: 24px;
    }

    .challenges-directory-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .challenges-directory-heading h2 {
        font-size: 22px;
    }

    .challenges-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 9px;
        gap: 8px;
        border-radius: 15px;
    }

    .challenges-search-field {
        grid-column: 1 / -1;
    }

    .challenges-reset {
        grid-column: 1 / -1;
    }

    .challenges-filter-field select,
    .challenges-search-input,
    .challenges-reset {
        min-height: 40px;
    }

    .challenges-scroll-guide {
        margin-block: 20px 15px;
        flex-direction: column;
        gap: 8px;
    }

    .challenges-scroll-track {
        width: min(300px, 72vw);
    }

    .challenges-table-head-shell {
        top: var(--apf-header-height, 104px);
    }

    .challenges-table-row,
    .challenges-table-cell {
        min-height: 98px;
    }

    .challenges-table-cell--company {
        gap: 7px;
        padding: 8px;
        box-shadow: -18px 0 30px rgba(0, 0, 0, 0.48);
    }

    .challenges-directory.is-table-scrolled .challenges-table-cell--company {
        width: 105px;
    }

    .challenges-directory.is-table-scrolled .challenges-head-cell--company {
        width: 105px;
        min-width: 105px;
        max-width: 105px;
    }

    .challenges-rank {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
        font-size: 8px;
    }

    .challenges-company-logo {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .challenges-company-copy > a {
        font-size: 10px;
    }

    .challenges-company-copy strong {
        font-size: 8px;
    }

    .challenges-pagination {
        margin-top: 17px;
    }
}

@media (max-width: 430px) {
    .challenges-shell {
        width: calc(100% - 10px);
    }

    .challenges-hero h1 {
        max-width: 350px;
        font-size: 27px;
    }

    .challenges-hero-meta > div:not(.challenges-update-badge) {
        flex: 1 1 115px;
        justify-content: center;
    }

    .challenges-update-badge {
        width: 100%;
        justify-content: center;
    }

    .challenges-directory-heading,
    .challenges-filters {
        margin-inline: 3px;
    }

    .challenges-filter-field > span,
    .challenges-search-field > span:first-child {
        font-size: 8px;
    }

    .challenges-filter-field select,
    .challenges-search-input input {
        font-size: 9px;
    }

    .challenges-table-body {
        gap: 6px;
    }

    .challenges-table-row {
        border-radius: 14px;
    }

    .challenges-table-cell--company {
        border-radius: 0 13px 13px 0;
    }

    .challenges-table-cell--actions {
        border-radius: 13px 0 0 13px;
    }
}

@media print {
    .apf-header,
    .challenges-filters,
    .challenges-scroll-guide,
    .challenges-pagination,
    .site-footer {
        display: none !important;
    }

    .challenges-page {
        color: #111;
        background: #fff;
    }

    .challenges-table-viewport {
        overflow: visible;
    }
}
