/* CONTENEDOR DEL SLIDER */
.pato-ph-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

/* TRACK HORIZONTAL */
.pato-ph-slider-track {
    display: flex !important;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* CADA SLIDE OCUPA 100% DEL ANCHO */
.pato-ph-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* WRAPPER INTERNO */
.pato-ph-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #f5f5f7;
    padding: 20px;
    border-radius: 18px;
}

/* POST PRINCIPAL */
.pato-ph-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.pato-ph-main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENIDO PRINCIPAL SOBRE IMAGEN */
.pato-ph-main-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
}

/* BADGE CATEGORÍA (color se controla desde Elementor también) */
.pato-ph-category a {
    display: inline-block;
    background: #00c853;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-decoration: none;
}

/* TÍTULOS */
.pato-ph-main-title a {
    color: #fff;
    text-decoration: none;
}

.pato-ph-small-title a {
    color: #111;
    text-decoration: none;
}

/* META */
.pato-ph-meta {
    font-size: 13px;
    opacity: .9;
    margin-top: 8px;
}

.pato-ph-author::after {
    content: " • ";
}

/* EXTRACTO Y BOTÓN */
.pato-ph-excerpt {
    margin-top: 10px;
}

.pato-ph-read-more {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: #fff;
    color: #111;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
}

/* LISTA DE POSTS PEQUEÑOS */
.pato-ph-small-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pato-ph-small-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pato-ph-small-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.pato-ph-small-content {
    padding: 12px 14px 16px;
}

/* FECHA EN TARJETAS */
.pato-ph-date {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

/* FLECHAS DEL SLIDER */
.pato-ph-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
}

.pato-ph-arrow-left {
    left: 10px;
}

.pato-ph-arrow-right {
    right: 10px;
}

.pato-ph-arrow:hover {
    background: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pato-ph-wrapper {
        padding: 16px;
        gap: 18px;
    }

    .pato-ph-small-list {
        grid-template-columns: 1fr;
    }

    .pato-ph-main-content {
        padding: 18px;
    }
}
