.forecasts-article-wrap {
    margin-bottom: 20px;
}
.forecasts-article-wrap h2 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: left;
}
@media screen and (min-width: 1024px) {
    .forecasts-article-wrap h2 {
        text-align: left;
        font-size: 28px;
        margin-bottom: 15px;
    }
}
.forecasts-article-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}
.forecasts-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}
@media (min-width: 600px) {
    .forecasts-article {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
}
.forecasts-article-imgblock {
    width: 100%;
    overflow: hidden;
}
@media (min-width: 600px) {
    .forecasts-article-imgblock {
        width: 125px;
        min-width: 125px;
    }
}
.forecasts-article-imgblock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}
.forecasts-article-infoblock {
    display: flex;
    padding: 8px 12px 12px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}
@media (min-width: 600px) {
    .forecasts-article-infoblock {
        padding: 8px 12px;
        gap: 12px;
    }
}
.forecasts-article-user {
    display: flex;
    align-items: center;
    gap: 6px;
}
.forecasts-article-user b {
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.forecasts-article-user span {
    color: #747bac;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.img-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}
.img-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.forecasts-article-link {
    color: #2d3144;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.56px;
    text-decoration: underline;
}
.forecasts-article-link:hover {
    text-decoration: none;
}
.forecasts-article-details {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
@media (max-width: 599px) {
    .forecasts-article-details {
        position: absolute;
        right: 7px;
        top: 10px;
    }
}
@media (min-width: 600px) {
    .forecasts-article-details {
        margin-left: auto;
        margin-right: 0;
        padding: 8px 12px;
    }
}
.forecasts-article-sport {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: #f2f4ff;
}
.forecasts-article-sport img {
    width: 18px;
    height: 18px;
}
.forecasts-article-league {
    display: flex;
    height: 24px;
    padding: 0 8px 0 4px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 24px;
    background: #f2f4ff;
    color: #50556c;
    font-size: 11px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
}
.load-more-articles {
    cursor: pointer;
    display: flex;
    height: 36px;
    padding: 0 18px;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid #e3e6fa;
    background: #fff;
    color: #445662;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    transition: opacity 0.4s ease-in-out;
}
.load-more-articles:hover {
    opacity: 0.8;
}
.load-more-articles:after {
    content: '';
    width: 8px;
    height: 4px;
    background-image: url("../../images/pronostici/icon/arrow-button.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.load-more-articles.all-visible:after {
    transform: rotate(180deg);
}
