.news-page {
    width: 100%;
    height: auto;
}

.news-page .container {
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.news-page .heading-wrap {
    width: 100%;
    height: auto;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.news-page .heading-wrap .heading {
    font-size: 48px;
    font-weight: bolder;
    color: var(--color-9);
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-semibold);
}

.news-page .heading-wrap .paragraph {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    text-align: center;
    font-family: var(--font-light);
    margin: 0;
}

.news-page .sperator {
    display: block;
    width: 2px;
    height: 48px;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary);
}

.news-page .card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.news-page .card-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-right: 25px;
    text-decoration: none;
}

.news-page .card-item .media {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.news-page .card-item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    transition: all 0.3s ease-in;
}

.news-page .card-item:hover .media img {
    transform: scale(1.1);
}

.news-page .card-item .content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 20px;
    min-height: 200px;
}

.news-page .card-item .wrap {
    width: 100%;
    height: auto;
}

.news-page .card-item .wrap .date {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    font-family: var(--font-light);
    margin-bottom: 10px
}

.news-page .card-item .wrap .text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--primary);
    font-family: var(--font-regular);
    transition: all 0.3s ease;
}

.news-page .card-item .wrap .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    height: auto;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-9);
    font-family: var(--font-regular);
}

.news-page .card-item .wrap .link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-left: 10px;
    transition: all 0.3s ease;
    color: var(--primary);
}

.news-page .card-item:hover .wrap .link .icon {
    margin-left: 20px;
}

@media only screen and (max-width:600px) {
    .news-page .container {
        margin-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-page .card-list {
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
    }

    .news-page .card-item .media {
        height: 200px;
    }

    .news-page .card-item .content {
        min-height: 150px;
    }

}

@media (min-width:481px) and (max-width:767px) {
    .news-page .container {
        margin-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-page .card-list {
        grid-template-columns: 1fr;
    }

    .news-page .card-item .media {
        height: 200px;
    }

    .news-page .card-item .content {
        height: 120px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .news-page .container {
        margin-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-page .card-list {
        grid-template-columns: 1fr 1fr;
    }

    .news-page .card-item .media {
        height: 200px;
    }

    .news-page .card-item .content {
        height: 120px;
    }
}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {
    .news-page .container {
        margin-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-page .card-list {
        grid-template-columns: 1fr 1fr;
    }

    .news-page .card-item .media {
        height: 200px;
    }

    .news-page .card-item .content {
        height: 120px;
    }
}