.article-preview {
    position: relative;
    display: grid;
    /*pointer-events: none;*/
    z-index: 12;
}
.article-preview:hover .article-preview__img {
    transform: scale(1.05);
}
.article-preview__heading {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 5.6vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3.1vw;
    max-width: 78vw;
}
@media (min-width: 1000px) {
    .article-preview__heading {
        font-size: 44px;
        margin-bottom: 0;
        max-width: 800px;
        overflow: hidden;
        text-overflow: ellipsis;
        position: absolute;
        bottom: 25%;
        left: 2%;
        z-index: 10;
    }
}
.article-preview__photo {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    width: 90vw;
    height: 63vw;
    display: grid;
    place-items: center;
    margin-bottom: 3.1vw;
    z-index: 1;
    pointer-events: none;
}
.article-preview__photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    opacity: 0.8;
    border-radius: 4px;
    z-index: 3;
}
@media (min-width: 1000px) {
    .article-preview__photo {
        display: grid;
        margin-bottom: 0;
        width: 100%;
        background: no-repeat top left;
        background-size: cover;
        max-height: 580px;
    }
}
.article-preview__img {
    max-width: 150%;
    place-self: stretch;
    height: auto;
    z-index: 1;
    transition: transform 5000ms ease;
}
.article-preview__tags {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 3;
    pointer-events: all;
}
@media (min-width: 1000px) {
    .article-preview__tags {
        top: 2%;
        left: 2%;
    }
}
.article-preview__tag {
    display: inline-block;
    margin: 0 10px 10px 0;
}
.article-preview__statistics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 0;
    grid-template-areas: ". ." ". .";
    margin-bottom: 6.2vw;
}
@media (min-width: 1000px) {
    .article-preview__statistics {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0;
        grid-template-areas: ". . . .";
        max-width: 750px;
        position: absolute;
        bottom: 5%;
        left: 0;
        z-index: 4;
        margin-bottom: 0;
    }
}
.article-preview__author, .article-preview__time-reading, .article-preview__views, .article-preview__published {
    margin-left: 10.5vw;
    position: relative;
}
@media (min-width: 1000px) {
    .article-preview__author, .article-preview__time-reading, .article-preview__views, .article-preview__published {
        margin-left: 55px;
    }
}
.article-preview__author::before, .article-preview__time-reading::before, .article-preview__views::before, .article-preview__published::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 7.5vw;
    height: 7.5vw;
}
@media (min-width: 1000px) {
    .article-preview__author::before, .article-preview__time-reading::before, .article-preview__views::before, .article-preview__published::before {
        width: 24px;
        height: 24px;
    }
}
.article-preview__author-title, .article-preview__author-name, .article-preview__time-reading-title, .article-preview__time-reading-name, .article-preview__views-title, .article-preview__views-name, .article-preview__published-title, .article-preview__published-name {
    display: block;
    text-transform: uppercase;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
}
@media (min-width: 1000px) {
    .article-preview__author-title, .article-preview__author-name, .article-preview__time-reading-title, .article-preview__time-reading-name, .article-preview__views-title, .article-preview__views-name, .article-preview__published-title, .article-preview__published-name {
        font-size: 16px;
    }
}
.article-preview__author-name, .article-preview__time-reading-name, .article-preview__views-name, .article-preview__published-name {
    color: #fff;
}
.article-preview__author::before {
    background: url("../images/author.svg") center center no-repeat;
    background-size: contain;
}
.article-preview__time-reading::before {
    background: url("../images/clock.svg") center center no-repeat;
    background-size: contain;
}
.article-preview__views::before {
    background: url("../images/eye.svg") center center no-repeat;
    background-size: contain;
}
.article-preview__published::before {
    background: url("../images/calendar.svg") center center no-repeat;
    background-size: contain;
}
.article-preview__excerpt {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 4.3vw;
    color: #fff;
}
@media (min-width: 1000px) {
    .article-preview__excerpt_mob {
        display: none;
    }
}
.article-preview__excerpt_pc {
    display: none;
}
@media (min-width: 1000px) {
    .article-preview__excerpt_pc {
        display: block;
        font-size: 22px;
        position: absolute;
        bottom: 18%;
        left: 2%;
        z-index: 5;
    }
}
.article-preview__block-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    pointer-events: all;
}

.main {
    padding: 3.1vw 4.3vw;
    background-color: #0b234f;
}
.main__container {
    max-width: 1700px;
    margin: 0 auto;
}
@media (min-width: 2000px) {
    .main__container {
        overflow-x: hidden;
    }
}
.main__page-indicator {
    display: inline-block;
    font-size: 3.7vw;
    margin-bottom: 6.2vw;
}

.main__page-indicator a,
.main__page-indicator ul,
.main__page-indicator li {
    display: inline-block;
}
@media (min-width: 1000px) {
    .main__page-indicator {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (min-width: 1340px) {
    .categories {
        display: grid;
        grid-template-columns: 1.4fr 0.6fr;
        grid-template-rows: 1fr;
        gap: 0px 30px;
        grid-template-areas: ". .";
    }
}
.categories__sidebar {
    display: none;
}
.categories__sidebar-heading {
    display: none;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}
@media (min-width: 1340px) {
    .categories__sidebar-heading {
        display: block;
        margin-top: 15px;
    }
}
@media (min-width: 1340px) {
    .categories__sidebar {
        display: block;
    }
}
.categories__heading {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 7.5vw;
    font-weight: 700;
    margin-bottom: 6.2vw;
}
@media (min-width: 1000px) {
    .categories__heading {
        font-size: 44px;
        margin-bottom: 30px;
    }
}
.categories__heading_category {
    color: #b6de12;
}
.categories__heading_football {
    color: #c2ff13 !important;
}
.categories__heading_table-tennis {
    color: #0dae31 !important;
}
.categories__heading_volleyball {
    color: #ffe24d !important;
}
.categories__heading_basketball {
    color: #ff8413 !important;
}
.categories__heading_ice-hockey {
    color: #13b8ff !important;
}
.categories__heading_cricket {
    color: #7b13ff !important;
}
.categories__heading_tennis {
    color: #ffcb13 !important;
}
.categories__articles-item {
    margin-bottom: 12.5vw;
}
@media (min-width: 1000px) {
    .categories__articles-item {
        margin-bottom: 60px;
    }
}

.subscribe {
    width: 100%;
    padding: 9.3vw 4.3vw;
    background: url("../images/subscribe-bg.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.subscribe::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0b234f;
    opacity: 0.7;
    z-index: -1;
}
@media (min-width: 1000px) {
    .subscribe {
        padding: 30px 62px;
    }
}
@media (min-width: 1400px) {
    .subscribe {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}
.subscribe__heading {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 8.1vw;
    color: #fff;
    margin-bottom: 18vw;
}
@media (min-width: 1000px) {
    .subscribe__heading {
        font-size: 2.6rem;
        max-width: 540px;
        margin-bottom: 18px;
    }
}
.subscribe__heading span {
    color: #f8ff13;
}
.subscribe__form {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1000px) {
    .subscribe__form {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 640px;
    }
}
.subscribe__form-label {
    flex-basis: 65%;
}
.subscribe__form-input {
    width: 100%;
    height: 44px;
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 2px;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
    color: #000;
    padding: 4.6vw 5.6vw;
    margin-bottom: 9.3vw;
}
@media (min-width: 1000px) {
    .subscribe__form-input {
        font-size: 16px;
        padding: 20px 25px;
        height: 60px;
        margin: 0;
    }
}
.subscribe__form-input:placeholder {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 3.7vw;
    color: #000;
    opacity: 0.5;
    text-transform: uppercase;
}
@media (min-width: 1000px) {
    .subscribe__form-input:placeholder {
        font-size: 16px;
    }
}
@media (min-width: 1000px) {
    .subscribe__button {
        flex-basis: 30%;
    }
}

.article-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 10px 0;
    grid-template-areas: "." ".";
    pointer-events: none;
}
@media (min-width: 1600px) {
    .article-card {
        gap: 30px 0;
    }
}
.article-card:hover .article-card__img {
    transform: scale(1.05);
}
.article-card__photo {
    position: relative;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
/*.article-card__photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}*/
.article-card__img {
    width: 100%;
    z-index: 1;
    transition: transform 5000ms ease;
}
.article-card__tags {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 2;
    pointer-events: all;
}
.article-card__tag {
    display: inline-block;
    margin: 0 2.3vw 1vw 0;
}
.article-card__description {
    opacity: 1;
    transition: opacity 300ms ease;
}
.article-card__description:hover {
    cursor: pointer;
    opacity: 0.7;
}
.article-card__title {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 5.6vw;
    color: #fff;
    margin-bottom: 1.5vw;
    text-transform: capitalize;
    pointer-events: none;
}
@media (min-width: 1000px) {
    .article-card__title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}
.article-card__excerpt {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 4.3vw;
    color: #fff;
    margin-bottom: 3.7vw;
}
@media (min-width: 1000px) {
    .article-card__excerpt {
        font-size: 1.2rem;
    }
}
.article-card__view {
    color: #fff;
    position: relative;
    transition: opacity 300ms ease;
    /* margin-left: 30px; */
    margin-right: 10px;
}

.article-card__view-icon {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/eye.svg") center center no-repeat;
    background-size: contain;
}
.article-card__view:hover {
    cursor: pointer;
    opacity: 0.7;
}
@media (min-width: 1340px) {
    .article-card__view {
        margin-left: 0;
    }
}
.article-card__info-pc {
    display: none;
}

.article-card__info-mob {
    display: flex;
}
@media (min-width: 1000px) {
    .article-card__info-pc {
        display: flex;
        z-index: 2;
        position: absolute;
        bottom: 5%;
        left: 5%;
    }
}
@media (min-width: 1000px) {
    .article-card__info-mob {
        display: none;
    }
}
.article-card__block-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    pointer-events: all;
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background: #000;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #7a7a7a;
    font-size: 16px;
}
