.link-block-spotlight {
    @apply max-w-full flex items-center p-4 mb-2;
    @apply border border-solid border-gray;

    .wrapper-link-block-spotlight {
        @apply w-full;

        .title-wrap {
            @apply flex gap-4;

            .tag {
                @apply mb-2;
            }

            .link-block-date {
                @apply text-black-500;
            }

            h4.heading {
                @apply font-semibold m-0;
            }
        }

        p.text {
            @apply m-0;
        }
    }

    .icon {
        @apply text-red;
        transition: all 0.3s ease;
    }

    .js--clickable {
        cursor: pointer;
    }
}
.link-block-spotlight.js--clickable {
    &:hover {
        @apply no-underline shadow-md;

        .fa-chevron-right {
            transform: translateX(5px);
        }
    }
}
