/**
* RUTA: /assets/css/last-ln.css
* VERSIÓN: v.1.0.2
* CODIFICACIÓN: UTF-8
* METODOLOGÍA: BEM (Bloque last-ln)
* INICIO: Línea 1
*/

.last-ln {
    margin: 0 0 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
}

.last-ln__media {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.last-ln__media .ln-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.last-ln__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.last-ln__content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.last-ln__text-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.last-ln__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #ff6b00;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    align-self: flex-start;
    width: fit-content;
}

.last-ln__title {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.last-ln__excerpt {
    font-size: 1rem;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

.last-ln__more {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff6b00;
    margin-top: 0.5rem;
}

.last-ln__text-link:hover .last-ln__more {
    text-decoration: underline;
}

.ln-section-divider {
    border: none;
    border-top: 1px solid #555555;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .last-ln {
        flex-direction: column;
    }
    .last-ln__media {
        flex: none;
        max-width: 100%;
    }
    .last-ln__media .ln-card-img-link {
        min-height: 200px;
    }
    .last-ln__content {
        padding: 1rem;
    }
    .last-ln__title {
        font-size: 1.2rem;
    }
}

/**
* FIN: /assets/css/last-ln.css
*/