.event.gridy {
    display: flex;
    flex-wrap: wrap;
}

.event.gridy p {
    font-weight: 400;
    color: #fff !important;
}

.event.gridy h3 {
    margin-top: 0;
    letter-spacing: 0px;
    color: #fff !important;
    font-size: 30px;
}

.event.gridy .blog_card.first-post {
    width: 100%;
    min-height: 360px;
    position: relative;
    padding: 10px;
    text-decoration: none;
    padding: 40px;
}

.event.gridy .blog_card.first-post::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    transition: .8s;
    z-index: 1;
    border-radius: 20px;
    background: linear-gradient(268.69deg, rgba(7, 43, 97, 0) -22.17%, rgba(8, 20, 37, 0.292368) 20.97%, rgba(7, 13, 23, 0.8) 95.87%);
}

.event.gridy .blog_card .custom {
    width: 100%;
}

.event.gridy .first-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 99;
}

.event.gridy .blog_card.first-post .image {
    position: absolute;
    z-index: 0;
    width: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.event.gridy .blog_card.first-post .first-post-image img {
    width: 100%;
    border-radius: 10px;
}

.event.gridy .blog_card.first-post .first-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event.gridy .blog_card .image img {
    width: 100%;
    height: auto;
}

.event.gridy p.read-more {
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    fill: #000000;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .5s;
    margin: 0;
}

.event.gridy .blog_card:hover p.read-more {
    gap: 13px;
}

.event.gridy svg {
    height: 13px;
}

@media (min-width: 1025px) {

    .event.gridy {
        gap: 20px;
    }

    .event.gridy .blog_card.first-post {
        gap: 60px;
        margin-bottom: 80px;
    }

    .event.gridy .blog_card.other-post {
        width: calc(33.333% - 20px);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .event.gridy .blog_card.first-post .first-post-content h3 {
        font-size: 40px;
    }

}

@media (max-width: 1024px) {
    .event.gridy .blog_card.first-post {
        margin-bottom: 30px;
        gap: 10px;
    }

    .blog_card.other-post {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 2px solid orange;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .event.gridy .blog_card.other-post {
        width: calc(50% - 20px);
    }

    .event.gridy .blog_card.first-post {
        flex-direction: column;
    }

    .event.gridy .blog_card.other-post {
        width: 100%;
    }

    .event.gridy h3 {
        font-size: 25px;
    }

    .event.gridy .blog_card.first-post {
        min-height: 300px;
        padding: 25px;
    }
}