.job-item {
    $this: &;

    padding: 30px;
    box-shadow: $rocket-shadow-md;
    display: flex;
    flex-direction: column;
    height: 100%;

    &__content {
        margin-bottom: 70px;
    }

    &__title {
        color: var(--rocket-color-secondary-100);
        font-size: 2.1875rem;
        font-weight: 600;
        line-height: 1.2;
    }

    &__title-link {
        text-decoration: none;

        @include event {
            text-decoration: underline;
        }
    }

    &__logo {
        margin-top: 30px;
    }

    &__logo-img {
        max-width: 100%;
    }

    &__tags {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 22px;
        margin-top: 48px;
    }

    &__action {
        @include transition(transform);

        font-size: 1.375rem;
        margin-top: auto;
        align-self: flex-start;
        text-decoration: none;
        display: inline-flex;
        column-gap: 45px;
        color: var(--rocket-color-secondary-100);

        @include event {
            #{$this}__action-icon {
                transform: translateX(5px);
            }
        }
    }

    &__action-text {
        font-size: inherit;
        color: inherit;
        border-bottom: 2px solid currentColor;
        padding-bottom: 12px;
        display: block;
    }

    &__action-icon {
        transition: inherit;
    }
}
