/**
 * OSFRJ Projetos Culturais - Estilos
 * Plugin: OSFRJ Intervenções Fabrica de Plugins
 */

.osfrj-pc-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Lista / Grid de 1 Coluna */
.osfrj-pc-list {
    display: flex;
    flex-direction: column;
    gap: var(--osfrj-pc-card-gap, 32px);
    width: 100%;
    box-sizing: border-box;
}

/* Card Individual (Horizontal no Desktop) */
.osfrj-pc-card {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--osfrj-pc-radius, 16px);
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.osfrj-pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.1);
}

/* Coluna da Imagem (Lado Esquerdo) */
.osfrj-pc-media {
    position: relative;
    flex: 0 0 var(--osfrj-pc-img-width, 40%);
    width: var(--osfrj-pc-img-width, 40%);
    min-height: 280px;
    background-color: #f1f5f9;
    overflow: hidden;
}

.osfrj-pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #e2e8f0;
}

/* Coluna de Conteúdo (Lado Direito) */
.osfrj-pc-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 36px;
    box-sizing: border-box;
    justify-content: center;
}

/* Título */
.osfrj-pc-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: #0f172a;
    letter-spacing: -0.2px;
}

/* Texto Completo na Íntegra */
.osfrj-pc-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 20px 0;
}

.osfrj-pc-text p {
    margin: 0 0 12px 0;
}

.osfrj-pc-text p:last-child {
    margin-bottom: 0;
}

/* Frase de Impacto (Destaque Maior) */
.osfrj-pc-impact {
    position: relative;
    margin-top: 4px;
    padding: 16px 20px 16px 22px;
    background: #f0fdf4;
    border-left: 4px solid #036845;
    border-radius: 0 10px 10px 0;
    box-sizing: border-box;
}

.osfrj-pc-impact-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.6;
    color: #065f46;
    margin: 0;
    position: relative;
}

/* Responsividade Mobile e Telas Menores */
@media (max-width: 880px) {
    .osfrj-pc-card {
        flex-direction: column;
    }

    .osfrj-pc-media {
        flex: none;
        width: 100%;
        height: 260px;
        min-height: auto;
    }

    .osfrj-pc-content {
        padding: 24px 20px;
    }

    .osfrj-pc-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .osfrj-pc-text {
        font-size: 14.5px;
        margin-bottom: 16px;
    }

    .osfrj-pc-impact {
        padding: 14px 16px 14px 18px;
    }

    .osfrj-pc-impact-text {
        font-size: 15px;
    }
}

/* Empty State */
.osfrj-pc-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-size: 15px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
}

