.college-news .articles {
    display: grid;
    grid-gap: 30px;
    /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "one one two"
    "one one three"
    ". . .";
}
.college-news .articles__item {
    border-radius: 15px;
    position: relative;
    aspect-ratio: 1;
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    padding: 12px 16px;
    overflow: hidden;
}
.college-news .articles__picture {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}
.college-news .articles__picture img {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
}
.college-news .articles__item:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    height: 150px;
    background: linear-gradient(0deg, rgba(4,61,77,1) 0%, rgba(253,187,45,0) 100%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.college-news .articles__name {
    font-weight: 700;
    position: relative;
    z-index: 11;
}
.college-news .articles__date {
    position: relative;
    z-index: 11;
}
.college-news .articles__item:nth-child(1) {
    grid-area: one;
    padding: 25px 35px;
}
.college-news .articles__item:nth-child(2) {
    grid-area: two;
}
.college-news .articles__item:nth-child(3) {
    grid-area: three;
}
.college-news .articles__item:first-child .articles__name {
    font-size: 30px;
}
@media screen and ( max-width: 782px ) {
    .college-news .articles {
        display: flex;
        gap: 20px;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .college-news .articles__item:first-child {
        padding: 12px 16px;
    }
    .college-news .articles__item:first-child .articles__name {
        font-size: 16px;
    }
}