.cpmclz-documentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.documento-item {
    flex: 1 1 calc(25% - 20px);
    border: 0.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.documento-item:hover,
.documento-item:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
    outline: 2px solid #378ADD;
}

.documento-thumb {
    background-size: cover;
    background-position: center;
    height: 200px;
}

.documento-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.documento-titulo {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.documento-extracto {
    color: #666;
    font-size: 0.9rem;
    flex-grow: 1;
    margin: 0;
}

@media (max-width: 900px) {
    .documento-item { flex: 1 1 calc(50% - 20px); }
}

@media (max-width: 600px) {
    .documento-item { flex: 1 1 100%; }
    .cpmclz-documentos-grid { gap: 16px; }
}