/* MAJARA_PROJECT_ARROW_SOURCE_V5 */

.project-card {
    position: relative;
}

.project-card .project-card__title,
.project-card .project-card__title a {
    padding-left: 60px !important;
}

.project-card .project-card__arrow,
.project-card a.project-card__arrow {
    position: absolute !important;
    z-index: 20 !important;
    right: auto !important;
    left: 15px !important;
    bottom: 15px !important;

    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;

    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(255,255,255,.42) !important;
    border-radius: 50% !important;
    background: rgba(28,24,21,.86) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.22) !important;

    color: #ddb078 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease,
        color .22s ease !important;
}

/* No Emoji, old text or pseudo arrow may survive. */
.project-card .project-card__arrow img.emoji,
.project-card .project-card__arrow img.wp-smiley,
.project-card .project-card__arrow::before,
.project-card .project-card__arrow::after {
    display: none !important;
    content: none !important;
}

/* The only icon shown inside the project action. */
.project-card .project-card__arrow .mj-project-card-arrow-source,
.project-card a.project-card__arrow .mj-project-card-arrow-source {
    display: inline-block !important;
    color: currentColor !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.project-card:hover .project-card__arrow,
.project-card:hover a.project-card__arrow,
.project-card .project-card__arrow:hover,
.project-card a.project-card__arrow:hover,
.project-card .project-card__arrow:focus-visible,
.project-card a.project-card__arrow:focus-visible {
    border-color: var(--mj-brand-primary) !important;
    background: var(--mj-brand-primary) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}

.project-card .project-card__arrow:focus-visible,
.project-card a.project-card__arrow:focus-visible {
    outline: 3px solid rgba(197,139,82,.48) !important;
    outline-offset: 3px !important;
}

@media (max-width: 620px) {
    .project-card .project-card__title,
    .project-card .project-card__title a {
        padding-left: 56px !important;
    }

    .project-card .project-card__arrow,
    .project-card a.project-card__arrow {
        left: 12px !important;
        bottom: 12px !important;
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
    }
}
