html,
body,
html.video {
    overflow-x: hidden !important;
}

.tickers-featured-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.ticker-featured-item {
    padding: 24px 24px 35px;
    width: calc((100% - 48px) / 4);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 2.4px 6.66px rgba(0, 0, 0, 0.045),
    0px 12px 41px rgba(0, 0, 0, 0.25);
}

.ticker-featured-title {
    width: fit-content;
    padding: 26px 26px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.ticker-featured-title h3 {
    font-family: 'new-frank';
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.ticker-featured-description {
    font-family: 'new-frank';
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin-top: 10px;
    line-height: 1.3;
}

.ticker-featured-info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.ticker-featured-info-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    font-size: 20px;
    color: #7D909D;
}

.ticker-featured-info-text + .ticker-featured-info-text {
    margin-top: 10px;
}

.ticker-featured-link,
.ticker-featured-info-text span {
    font-family: 'new-frank';
    font-size: 22px;
    font-weight: 700;
    color: #4FAEEE;
    align-self: center;
    line-height: 1;
}

.ticker-featured-info-text span {
    color: #00b1f4;
}

.ticker-featured-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 26px;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.ticker-featured-link:hover {
    color: #4FAEEE;
    opacity: 0.8;
}

.ticker-featured-link svg {
    height: 12px;
    fill: #4FAEEE;
    margin-bottom: 3px;
}

.tickers-featured-disclaimer {
    color: #7a7a7a;
    font-family: "new-frank", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3em;
}

.tickers-featured-button {
    margin: 115px 0 95px 0;
    text-align: center;
}

.tickers-featured-button a {
    font-family: "new-frank", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    border: 3px solid #4FAEEE;
    color: #24a5e0;
    border-radius: 6px 6px 6px 6px;
    padding: 28px 40px 22px 40px;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.tickers-featured-button a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .ticker-featured-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 580px) {
    .ticker-featured-item {
        width: 100%;
    }
}