.workshops-grid-section{
    padding: 100px 0 180px 0;
    @media (max-width: 768px) {
        padding: 80px 0 80px 0;
    }
    & .custom-pagination{
        & ul{
            list-style: none;
            display: flex;
            gap: 16px;
            align-items: center;
            justify-content: center;
            margin-top: 64px;
            & .page-numbers.current SVG{
                border: 1px solid #FA7B24;
                border-radius: 50%;
            }
        }
    }
    & .top-row{
        display: grid;
        grid-template-columns: 539px auto;
        justify-content: space-between;
        align-items: end;
        @media (max-width: 768px) {
            grid-template-columns: 1fr;
        }
        & h2{
            margin-bottom: 24px;
            font-family: var(--wp--preset--font-family--worker);
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            line-height: 110%;
            text-transform: uppercase;
        }
        & highlight{
            color: var(--wp--preset--color--dingo);
            font-family: var(--wp--preset--font-family--worker);
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            line-height: 110%;
            text-transform: uppercase;
        }
        & p{
            color: #421E17;           
            font-family: var(--wp--preset--font-family--sweet-sans-pro);
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%; /* 21.6px */
            margin-bottom: 0px;
            @media (max-width: 768px) {
                margin-bottom: 16px;
            }
        }
        & a{
            border: 1.5px dashed #FA7B24;
            color: #421E17;
            font-family: var(--wp--preset--font-family--worker);
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px; /* 150% */
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 12px 20px;
            width: fit-content;
        }
    }
    & .workshop-grid{
        display: grid;
        grid-template-columns: repeat(auto-fill, 440px);
        gap: 24px;
        margin-top: 64px;
        justify-content: center;
        @media (max-width: 768px) {
            grid-template-columns: 1fr;
        }
        & .workshop-item{
            background: #FDF7EC;
            transition: .5s ease all;
            cursor: pointer;
            &:hover{
                box-shadow: 0px 0px 30px 5px #B9AC97;
                & figure{                    
                    & img{                      
                        transform: scale(1.1);
                    }
                }
            }
            
            & figure{
                height: 278px;
                overflow: hidden;
                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: .5s ease all;
                    &:hover{
                        transform: scale(1.1);
                        object-fit:cover;
                    }
                }
            }
            & .worksop-details{
                padding: 24px;
                & .highlighted_text{
                    color: #FA7B24;
                    font-family: var(--wp--preset--font-family--sweet-sans-pro);
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 120%;
                    margin-bottom: 35px;
                }
                & .flex-p{
                    display: flex;
                    gap: 8px;
                    align-items: center;
                }
                & a{
                    color: #421E17;
                    font-family: var(--wp--preset--font-family--worker);
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 24px; /* 150% */
                    letter-spacing: 0.8px;
                    text-transform: uppercase;
                    display: flex;
                    height: 48px;
                    padding: 12px 20px;
                    align-items: center;
                    gap: 8px;
                    border: 1.5px dashed #FA7B24;
                    width: fit-content;
                }
            }
            & h4{
                color: var(--wp--preset--color--hereford);
                font-family: var(--wp--preset--font-family--worker);
                font-size: 18px;
                font-style: normal;
                font-weight: 700;
                line-height: 120%;
                text-transform: uppercase;
                margin-bottom: 16px;
            }
        }
    }
}