.link-list-education-wrap .heading {
    @apply mb-6 block;
}

.link-list-education {
    @apply grid grid-cols-1 md:grid-cols-2 grid-rows-2 md:grid-rows-none shadow-2xl;

    .column:first-child {
        @apply bg-red;
    }

    .education-panel {
        @apply h-full;
    }

    .white {
        @apply h-full;
    }

    .information-links {
        @apply text-white p-8 relative;

        &:before {
            content: '';
            @apply w-0 h-0 absolute;
            top: -17px;
            left: 32px;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-bottom: 18px solid #e03131;
        }

        li {
            @apply mb-8;

            a {
                @apply flex text-h4 font-semibold;

                &:hover .icon {
                    transform: translateX(5px);
                    @apply no-underline;
                }

                span {
                    @apply -mt-1;

                    &:hover {
                        @apply underline;
                    }
                }

                .icon {
                    @apply pt-2 w-10;
                    transition: all 0.3s ease;
                }
            }
        }
    }
}
