<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&amp;display=swap');

.rankings-v2 {
    padding: 3.125rem 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    z-index: 1;
}

.rankings-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(43, 40, 40, 0.80) 28%, rgba(80, 80, 80, 0.80) 100%);
    z-index: -1;
}

.rankings-v2 .container {
    padding: 0;
    position: relative;
    z-index: 2;
}

.rankings-v2-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.rankings-v2-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rankings-v2-column&gt;* {
    margin: 0;
}

.rankings-v2-title {
    font-size: 2.625rem; /* 42px */
    font-style: normal;
    font-weight: 700;
    line-height: 3.5rem; /* 56px */
}

.rankings-v2-title .float-top-right {
    top: -1.25rem; /* -20px */
    position: absolute;
    transform: rotate(14.793deg);
    font-family: "Gochi Hand";
    font-size: 2.789rem; /* 44.622px */
    font-style: normal;
    font-weight: 400;
    line-height: 2.789rem; /* 44.622px */
}

.rankings-v2-subtitle {
    font-size: 1.5rem; /* 16px */
    font-weight: 400;
    line-height: 1.5; /* 20px */
    /* 125% */
}

.rankings-v2-content-rankings {
    display: grid;
    gap: 1.5rem;
}

.ranking-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* 8px */
}

.ranking-number {
    color: #F58220;
    font-size: 2.5rem; /* 40px */
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ranking-desc {
    font-size: 1.25rem; /* 20px */
    font-style: normal;
    font-weight: 500;
    line-height: 2rem; /* 32px */
}

.cta-link {
    color: white;
    font-size: 1rem; /* 16px */
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem; /* 24px */
}

.cta-link svg {
    display: none;
}

@media (min-width: 768px) {
    .rankings-v2 {
        padding: 4rem 2rem;
    }

    .rankings-v2-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 9.1875rem; /* 147px */
    }

    .rankings-v2-title {
        font-size: 2.5rem;
    }

}

@media (min-width: 1024px) {
    .rankings-v2 {
        padding: 5rem 2rem;
    }

    .rankings-v2-title {
        font-size: 6rem; /* 96px */
        line-height: 1;
        position: relative;
    }

    .rankings-v2-title .float-top-right {
        top: -3.125rem; /* -50px */
        right: -3.125rem; /* -50px */
        font-size: 6rem; /* 96px */
        font-style: normal;
        font-weight: 400;
        line-height: 6rem; /* 96px */
    }

    .rankings-v2-subtitle {
        font-size: 1.5rem; /* 20px */
        line-height: 1.5;
    }

    .rankings-v2-column {
        justify-content: space-around;
    }


    .ranking-number {
        font-size: 6rem; /* 96px */
        line-height: 1;
    }

    .ranking-desc {
        font-size: 1.5625rem; /* 25px */
        font-style: normal;
        font-weight: 700;
        line-height: 2.5rem; /* 40px */
    }

    .cta-link {
        font-size: 1.5625rem; /* 25px */
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .cta-link svg {
        display: inline;
    }
}

</pre></body></html>