.specialisations {
    margin-block: 24px;

    @media (width > 768px) {
        margin-block: 48px;
    }

    h2 {
        color: var(--_bg-color);
    }

    .specialisations-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        
        @media (width > 768px) {
            grid-template-columns: repeat(2, 1fr);
        }

        .specialisation {
            display: flex;
            flex-direction: column;
            gap: 16px;

            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 8px;

                @media (width > 768px) {
                    border-radius: 16px;
                }
            }

            p, h4 {
                margin: 0;
            }

            h4 {
                color: var(--_bg-color);
                font-size: 1.8rem;

                @media (width > 768px) {
                    font-size: 2.4rem;
                }

                &:before {
                    display: none;
                }
            }
        }
    }
}