.next-event-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 7px solid #c82127;
    box-shadow: 0 18px 55px rgba(5, 34, 23, .13);
    padding: 0 !important;
    margin-top: -52px;
    z-index: 99;
    position: relative;
    background-color: white;
    
    &>div {
        padding: 25px 30px;
        border-right: 1px solid #d8ded9;

        &:last-child {
            border-right: none;
            display: flex;
            align-items: center;
        }

        p {
            margin: 0;
            font-size: var(--wp--preset--font-size--extra-small);
            color: #67716a;

            &.tag {
                font-weight: 700;
                text-transform: uppercase;
                color: #c82127;
                letter-spacing: .13em;
            }

            &.title {
                font-size: var(--wp--preset--font-size--large);
                font-family: var(--wp--preset--font-family--barlow-condensed);
                font-weight: 700;
                line-height: 1.2;
                color: black;
            }
        }

        button {
            background-color: #c82127;
            border-radius: 3px;
            border: 2px solid #c82127;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: var(--wp--preset--font-size--small);
            padding: 18px 22px;
        }
    }
}