.news {
    color: #292929;
    padding: 130px 50px 115px;
}

.news__title {
    font-family: "Bounded";
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.news__subtitle {
    font-family: "Bounded";
    font-size: 55px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.news__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 55px;
}

.news__card {
    flex: 1;
	height: auto;
	min-height: max-content;
    color: #292929;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 8px;
	padding-bottom: 20px;
    overflow: hidden;
    cursor: pointer !important;
}

.news__photo {
    margin-bottom: 25px;
}

.news__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news__card-title {
    max-width: 400px;
    font-family: "Manrope";
    font-size: 22px;
    font-weight: 600;
    padding: 0 17px;
    margin-bottom: 20px;
}

.news__date {
    color: #AEAAAA;
    font-family: "Manrope";
    font-size: 12px;
    font-weight: 600;
    padding-left: 17px;
}

.news__link {
    width: 185px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #292929;
    font-family: "Manrope";
    text-decoration: none;
    border: 1px solid #292929;
    border-radius: 5px;
}

@media (max-width: 1600px) {
    .news__title, .news__card-title {
        font-size: 18px;
    }

    .news__subtitle {
        max-width: 675px;
        font-size: 40px;
    }

    .news__card {
        display: flex;
        flex-direction: column;
    }

    .news__date {
        flex: 1;
        display: flex;
        align-items: flex-end;
    }
}

@media (max-width: 1200px) {
    .news__card-title {
        font-size: 15px;
    }

    .news__date {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    .news__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .news__date {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 0px 15px 60px;
    }

    .news__title {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .news__subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .news__cards {
        gap: 10px;
        margin-bottom: 25px;
    }

    .news__card {
        border: none;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(48, 48, 48, 0.1);
		padding-bottom: 10px;
    }

    .news__photo {
        margin-bottom: 10px;
    }

    .news__card-title {
        max-width: 135px;
        font-size: 13px;
        padding-left: 13px;
        margin-bottom: 10px;
    }

    .news__date {
        font-size: 8px;
        padding-left: 13px;
    }

    .news__link {
        width: 160px;
        height: 40px;
        font-size: 13px;
    }
}