.library-news-events .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.library-news-events .first {
    grid-row: span 2 / span 2;
}

.library-news-events .content-holder {
    padding-left: 20px;
    padding-right: 5px;
}

.library-news-events .content-holder .icon-holder {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.library-news-events .icon-holder .icon-item {
    display: flex;
    align-items: center;
    gap: 2px;
}

.library-news-events .art-contain {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.library-news-events .second,
.library-news-events .third {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.library-news-events .second {
    flex-direction: row-reverse;
}

.library-news-events .second > div,
.library-news-events .third > div{
    flex: 1 1 auto;
    width: 100%;
    max-width: 50%;
}

.library-news-events .img-contain {
    position: relative;
    z-index: 1;
}

.library-news-events .img-contain::after{
    content: '';
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotateZ(45deg);
    width: 30px;
    height: 30px;
    background: #F4F4F4;
    z-index: inherit;
}

.library-news-events .second .img-contain::after{
    bottom: 50%;
    left: -15px;
    transform: translateY(-50%) rotateZ(45deg);
}

.library-news-events .third .img-contain::after{
    bottom: 50%;
    left: auto;
    right: -15px;
    transform: translateY(-50%) rotateZ(45deg);
}

.library-news-events .img-contain img{
    display: block;
    height: 100%;
    object-fit: cover;
}

.library-news-events .art-contain {
    position: relative;
    z-index: 2;
}

.library-news-events .morebtn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
}