/* =============================================================================
   LF PROJECT — SINGLE PROJECT CARD USING lf-grid FOR COLUMN LAYOUT
   ============================================================================= */

.lf-project {
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lf-project__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    text-decoration: none;
    color: inherit;
}

.lf-project__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin-bottom: 1rem;
}

.lf-project__image img {
    width: 100%;
    height: 100%;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 0 !important;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.lf-project__image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1) !important;
}

.lf-project__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lf-project__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0 !important;
    word-wrap: break-word;
    /* COLOR SET INLINE VIA CONTENT TEXT PARAM */
}

.lf-project__excerpt {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 0 10px 0;
    margin: 0;
    /* COLOR SET INLINE VIA CONTENT TEXT PARAM */
}

.lf-project__learn-more {
    text-decoration: underline;
    font-size: 1rem;
    margin-top: auto;
    color: inherit;
    /* INHERITS THEME LINK COLOR — NO FORCED BLACK, NO >> ARROWS */
}