.ahbab-home-page main {
    padding: 0;
}

.ah-home {
    --ah-red: var(--ahbab-red, #b31313);
    --ah-red-dark: var(--ahbab-red-dark, #4b0508);
    --ah-gold: var(--ahbab-gold, #ffd166);
    --ah-mango: var(--ahbab-mango, #ffb21a);
    --ah-bg: var(--ahbab-bg, #120405);
    --ah-panel: var(--ahbab-panel, #24090a);
    --ah-text: var(--ahbab-text, #fff4ce);
    --ah-muted: var(--ahbab-muted, #d9b45c);
    --ah-line: rgba(255, 209, 102, .19);
    --ah-line-strong: rgba(255, 209, 102, .42);
    --ah-surface: #1b0506;
    --ah-surface-2: #260809;
    --ah-shadow: 0 22px 60px rgba(0, 0, 0, .32);
    min-width: 0;
    overflow: hidden;
    color: var(--ah-text);
    background:
        radial-gradient(circle at 85% 0, rgba(179, 19, 19, .26), transparent 31rem),
        linear-gradient(180deg, #130304 0, #090101 58%, #140304 100%);
    direction: rtl;
}

.ah-home,
.ah-home * {
    box-sizing: border-box;
}

.ah-home a {
    color: inherit;
    text-decoration: none;
}

.ah-home img {
    display: block;
    max-width: 100%;
}

.ah-home a:focus-visible {
    outline: 3px solid var(--ah-gold);
    outline-offset: 4px;
}

.ah-container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.ah-breaking {
    border-block: 1px solid rgba(255, 209, 102, .16);
    background: #0b0101;
}

.ah-breaking__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 50px;
}

.ah-breaking__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding-inline: 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--ah-red);
    font-size: .8rem;
    font-weight: 950;
}

.ah-breaking__items {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.ah-breaking__items::-webkit-scrollbar {
    display: none;
}

.ah-breaking__items a {
    position: relative;
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ah-text);
    font-size: .88rem;
    font-weight: 850;
}

.ah-breaking__items a:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: -12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ah-gold);
}

.ah-breaking__items a:hover {
    color: var(--ah-gold);
}

.ah-identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 24px 18px;
}

.ah-identity span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding-inline: 13px;
    border: 1px solid var(--ah-line-strong);
    border-radius: 999px;
    color: var(--ah-gold);
    background: rgba(0, 0, 0, .24);
    font-size: .82rem;
    font-weight: 950;
    white-space: nowrap;
}

.ah-identity p {
    margin: 0;
    color: var(--ah-muted);
    font-size: .9rem;
    line-height: 1.7;
    text-align: end;
}

.ah-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(410px, .65fr);
    gap: 18px;
    padding-bottom: 26px;
}

.ah-lead__main {
    position: relative;
    isolation: isolate;
    min-height: 548px;
    overflow: hidden;
    border: 1px solid var(--ah-line-strong);
    border-radius: 18px;
    background: var(--ah-surface);
    box-shadow: var(--ah-shadow);
}

.ah-lead__main > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.ah-lead__main:hover > img {
    transform: scale(1.025);
}

.ah-lead__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(5, 0, 0, .96) 0, rgba(5, 0, 0, .74) 35%, rgba(5, 0, 0, .08) 72%),
        linear-gradient(90deg, rgba(0, 0, 0, .2), transparent 58%);
}

.ah-lead__content {
    position: absolute;
    z-index: 2;
    inset-inline: 0;
    bottom: 0;
    display: block;
    padding: clamp(24px, 4vw, 46px);
}

.ah-lead__content h1 {
    max-width: 850px;
    margin: 14px 0 12px;
    color: #fff7dc;
    font-size: clamp(1.85rem, 3.2vw, 3.35rem);
    font-weight: 950;
    line-height: 1.28;
    text-wrap: balance;
}

.ah-lead__excerpt {
    display: block;
    max-width: 780px;
    margin-bottom: 15px;
    color: #ead79b;
    font-size: .98rem;
    line-height: 1.8;
}

.ah-lead__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ah-headline {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ah-line);
    border-radius: 14px;
    background: linear-gradient(145deg, var(--ah-surface-2), #0d0101);
    transition: transform .18s ease, border-color .18s ease;
}

.ah-headline:hover,
.ah-news-card:hover,
.ah-analysis:hover {
    border-color: var(--ah-line-strong);
    transform: translateY(-3px);
}

.ah-headline > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--ah-panel);
}

.ah-headline__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
}

.ah-headline__body strong {
    display: -webkit-box;
    margin-block: 10px;
    overflow: hidden;
    color: var(--ah-text);
    font-size: .98rem;
    font-weight: 950;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ah-tag,
.ah-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding-inline: 10px;
    border: 1px solid var(--ah-line-strong);
    border-radius: 6px;
    color: var(--ah-gold);
    background: rgba(0, 0, 0, .34);
    font-size: .74rem;
    font-style: normal;
    font-weight: 950;
    line-height: 1.3;
}

.ah-kicker {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    letter-spacing: .01em;
}

.ah-meta {
    color: var(--ah-muted);
    font-size: .75rem;
    font-weight: 750;
}

.ah-section {
    padding-block: 50px;
}

.ah-section + .ah-section {
    padding-top: 24px;
}

.ah-section__head,
.ah-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.ah-section__head h2,
.ah-panel-head h2,
.ah-platform h2,
.ah-history h2 {
    margin: 7px 0 0;
    color: var(--ah-text);
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    font-weight: 950;
    line-height: 1.35;
    text-wrap: balance;
}

.ah-section__link,
.ah-platform__links a,
.ah-history a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-inline: 15px;
    border: 1px solid var(--ah-line-strong);
    border-radius: 8px;
    color: var(--ah-gold);
    background: rgba(0, 0, 0, .24);
    font-size: .84rem;
    font-weight: 950;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.ah-section__link:hover,
.ah-platform__links a:hover,
.ah-history a:hover {
    border-color: var(--ah-gold);
    color: #310405;
    background: var(--ah-gold);
}

.ah-sports-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr) minmax(350px, .9fr);
    gap: 16px;
    align-items: stretch;
}

.ah-match-card,
.ah-table-card,
.ah-editorial-panel,
.ah-platform,
.ah-history {
    border: 1px solid var(--ah-line);
    border-radius: 16px;
    background: linear-gradient(145deg, var(--ah-surface-2), #0c0101);
    box-shadow: var(--ah-shadow);
}

.ah-match-card,
.ah-table-card,
.ah-editorial-panel,
.ah-platform {
    padding: 22px;
}

.ah-match-card > header,
.ah-table-card > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.ah-match-card > header h3,
.ah-table-card > header h3 {
    margin: 8px 0 0;
    color: var(--ah-text);
    font-size: 1.05rem;
    font-weight: 950;
    line-height: 1.45;
}

.ah-table-card > header a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ah-gold);
    font-size: .82rem;
    font-weight: 950;
}

.ah-match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 176px;
    padding: 18px;
    border: 1px solid var(--ah-line);
    border-radius: 12px;
    background: rgba(0, 0, 0, .24);
}

.ah-match:hover {
    border-color: var(--ah-line-strong);
}

.ah-team {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.ah-team img {
    width: 72px;
    height: 72px;
    padding: 6px;
    object-fit: contain;
    border: 1px solid var(--ah-line);
    border-radius: 12px;
    background: #120304;
}

.ah-match--result .ah-team img {
    width: 64px;
    height: 64px;
}

.ah-team strong {
    max-width: 130px;
    overflow: hidden;
    color: var(--ah-text);
    font-size: .9rem;
    font-weight: 950;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ah-match__center {
    display: grid;
    justify-items: center;
    gap: 7px;
}

.ah-match__center b,
.ah-match__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 48px;
    padding-inline: 12px;
    border-radius: 9px;
    color: #310405;
    background: linear-gradient(135deg, var(--ah-gold), var(--ah-mango));
    font-size: 1.18rem;
    font-style: normal;
    font-weight: 950;
}

.ah-match__center time {
    color: var(--ah-muted);
    font-size: .78rem;
    font-weight: 850;
    white-space: nowrap;
}

.ah-match__score {
    gap: 7px;
    font-size: 1.4rem;
}

.ah-match__score i {
    font-style: normal;
    opacity: .62;
}

.ah-match-card__foot {
    margin: 14px 0 0;
    color: var(--ah-muted);
    font-size: .79rem;
    line-height: 1.6;
    text-align: center;
}

.ah-table-wrap {
    max-height: 302px;
    overflow: auto;
    border: 1px solid var(--ah-line);
    border-radius: 10px;
}

.ah-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--ah-text);
    font-size: .84rem;
}

.ah-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ah-table th,
.ah-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--ah-line);
    text-align: right;
    white-space: nowrap;
}

.ah-table thead th {
    position: sticky;
    z-index: 1;
    top: 0;
    color: var(--ah-gold);
    background: #180405;
    font-size: .76rem;
}

.ah-table tbody tr:last-child th,
.ah-table tbody tr:last-child td {
    border-bottom: 0;
}

.ah-table .is-merrikh th,
.ah-table .is-merrikh td {
    color: #fff8dd;
    background: rgba(179, 19, 19, .28);
}

.ah-standing-summary {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid var(--ah-line);
    border-radius: 12px;
    background: var(--ah-line);
}

.ah-standing-summary span {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 14px 10px;
    color: var(--ah-muted);
    background: #160405;
    font-size: .75rem;
    font-weight: 800;
}

.ah-standing-summary b {
    color: var(--ah-gold);
    font-size: 1.15rem;
    font-weight: 950;
}

.ah-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ah-news-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--ah-line);
    border-radius: 14px;
    background: linear-gradient(145deg, var(--ah-surface-2), #0c0101);
    transition: transform .18s ease, border-color .18s ease;
}

.ah-news-card__media {
    overflow: hidden;
    background: var(--ah-panel);
}

.ah-news-card__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .35s ease;
}

.ah-news-card:hover .ah-news-card__media img {
    transform: scale(1.035);
}

.ah-news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
}

.ah-news-card__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ah-news-card__body > strong {
    display: -webkit-box;
    margin: 12px 0 9px;
    overflow: hidden;
    color: var(--ah-text);
    font-size: 1.02rem;
    font-weight: 950;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ah-news-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ah-muted);
    font-size: .83rem;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ah-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ah-panel-head {
    align-items: flex-start;
    margin-bottom: 18px;
}

.ah-panel-head h2 {
    font-size: 1.45rem;
}

.ah-analysis-list {
    display: grid;
    gap: 10px;
}

.ah-analysis {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-height: 112px;
    padding: 8px;
    border: 1px solid var(--ah-line);
    border-radius: 10px;
    background: rgba(0, 0, 0, .2);
    transition: transform .18s ease, border-color .18s ease;
}

.ah-analysis img {
    width: 108px;
    height: 92px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--ah-panel);
}

.ah-analysis small {
    display: block;
    margin-bottom: 6px;
    color: var(--ah-muted);
    font-size: .74rem;
    font-weight: 800;
}

.ah-analysis strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ah-text);
    font-size: .94rem;
    font-weight: 950;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ah-popular-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: popular;
}

.ah-popular-list li {
    counter-increment: popular;
    border-bottom: 1px solid var(--ah-line);
}

.ah-popular-list li:last-child {
    border-bottom: 0;
}

.ah-popular-list a {
    position: relative;
    display: grid;
    gap: 6px;
    min-height: 76px;
    padding: 13px 52px 13px 8px;
}

.ah-popular-list a::before {
    content: counter(popular, decimal-leading-zero);
    position: absolute;
    inset-inline-start: 4px;
    top: 12px;
    color: var(--ah-gold);
    font-size: 1.35rem;
    font-weight: 950;
}

.ah-popular-list strong {
    color: var(--ah-text);
    font-size: .94rem;
    font-weight: 950;
    line-height: 1.55;
}

.ah-popular-list span {
    color: var(--ah-muted);
    font-size: .74rem;
}

.ah-africa {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 190px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--ah-line-strong);
    border-radius: 18px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 209, 102, .2), transparent 20rem),
        linear-gradient(120deg, #3d0709, #120203 62%, #050000);
    box-shadow: var(--ah-shadow);
}

.ah-africa::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .18;
    background-image: repeating-linear-gradient(135deg, transparent 0 30px, rgba(255, 255, 255, .08) 30px 31px);
}

.ah-africa__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border: 1px solid var(--ah-line-strong);
    border-radius: 50%;
    color: #2e0405;
    background: linear-gradient(135deg, var(--ah-gold), var(--ah-mango));
    font-size: 1.55rem;
    font-weight: 950;
}

.ah-africa small,
.ah-africa strong,
.ah-africa em {
    display: block;
}

.ah-africa small {
    margin-bottom: 8px;
    color: var(--ah-gold);
    font-size: .82rem;
    font-weight: 950;
}

.ah-africa strong {
    color: #fff7df;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: 950;
    line-height: 1.4;
}

.ah-africa em {
    margin-top: 8px;
    color: var(--ah-muted);
    font-size: .9rem;
    font-style: normal;
    line-height: 1.7;
}

.ah-africa > b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--ah-line-strong);
    border-radius: 50%;
    color: var(--ah-gold);
    font-size: 1.5rem;
}

.ah-platform-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 18px;
}

.ah-platform {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 410px;
    padding: clamp(24px, 4vw, 42px);
}

.ah-platform p,
.ah-history p {
    margin: 16px 0 0;
    color: var(--ah-muted);
    line-height: 1.9;
}

.ah-platform__links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.ah-history {
    display: grid;
    grid-template-columns: minmax(240px, .85fr) minmax(0, 1.15fr);
    min-height: 410px;
    overflow: hidden;
}

.ah-history > img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    background: var(--ah-panel);
}

.ah-history > div {
    align-self: center;
    padding: clamp(24px, 4vw, 40px);
}

.ah-history h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.ah-history a {
    margin-top: 22px;
}

.ah-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    padding: 22px;
    border: 1px dashed var(--ah-line-strong);
    border-radius: 12px;
    color: var(--ah-muted);
    background: rgba(0, 0, 0, .2);
    text-align: center;
}

.ah-lead__main.ah-empty {
    min-height: 548px;
}

.ah-lead__main.ah-empty h1 {
    margin: 0 0 10px;
    color: var(--ah-text);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.ah-lead__main.ah-empty p {
    margin: 0;
    color: var(--ah-muted);
    line-height: 1.8;
}

.ah-image-fallback {
    object-fit: contain !important;
    padding: 18px;
    background: var(--ah-panel) !important;
}

.ah-defer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

@media (max-width: 1180px) {
    .ah-lead {
        grid-template-columns: minmax(0, 1.15fr) minmax(370px, .85fr);
    }

    .ah-sports-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ah-table-card {
        grid-column: 1 / -1;
    }

    .ah-table-wrap {
        max-height: 350px;
    }

    .ah-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ah-platform-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .ah-identity {
        align-items: flex-start;
        flex-direction: column;
    }

    .ah-identity p {
        text-align: start;
    }

    .ah-lead {
        grid-template-columns: 1fr;
    }

    .ah-lead__main,
    .ah-lead__main.ah-empty {
        min-height: 510px;
    }

    .ah-lead__side {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .ah-headline {
        scroll-snap-align: start;
    }

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

    .ah-editorial-grid,
    .ah-history {
        grid-template-columns: 1fr;
    }

    .ah-history > img {
        min-height: 280px;
        max-height: 360px;
    }
}

@media (max-width: 700px) {
    .ah-container {
        width: min(100% - 24px, 1280px);
    }

    .ah-breaking__inner {
        gap: 10px;
    }

    .ah-breaking__label {
        padding-inline: 10px;
    }

    .ah-identity {
        padding-top: 18px;
    }

    .ah-lead__main,
    .ah-lead__main.ah-empty {
        min-height: 470px;
        border-radius: 14px;
    }

    .ah-lead__content h1 {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
    }

    .ah-lead__excerpt {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .ah-section {
        padding-block: 38px;
    }

    .ah-section__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ah-sports-grid,
    .ah-news-grid {
        grid-template-columns: 1fr;
    }

    .ah-table-card {
        grid-column: auto;
    }

    .ah-standing-summary {
        grid-template-columns: repeat(5, 120px);
        overflow-x: auto;
    }

    .ah-africa {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 16px;
        padding: 22px;
    }

    .ah-africa__mark {
        width: 74px;
        height: 74px;
        font-size: 1rem;
    }

    .ah-africa > b {
        display: none;
    }
}

@media (max-width: 480px) {
    .ah-lead__main,
    .ah-lead__main.ah-empty {
        min-height: 430px;
    }

    .ah-lead__content {
        padding: 20px;
    }

    .ah-lead__content h1 {
        font-size: 1.62rem;
    }

    .ah-match-card,
    .ah-table-card,
    .ah-editorial-panel,
    .ah-platform {
        padding: 17px;
    }

    .ah-match {
        grid-template-columns: 1fr;
    }

    .ah-team strong {
        max-width: 220px;
    }

    .ah-match__center {
        grid-row: 2;
    }

    .ah-match__score,
    .ah-match__center b {
        min-width: 110px;
    }

    .ah-analysis {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .ah-analysis img {
        width: 88px;
        height: 82px;
    }

    .ah-africa {
        grid-template-columns: 1fr;
    }

    .ah-africa__mark {
        width: 66px;
        height: 66px;
    }

    .ah-platform__links {
        width: 100%;
    }

    .ah-platform__links a {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ah-home *,
    .ah-home *::before,
    .ah-home *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
