body {
    font-family: 'Arial', sans-serif;
    margin: 40px;
    background-color: #f4f4f9;
    color: #333;
}
.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 15px;
}
img {
    width: 100%; 
    height: 300px; 
    display: block;
    margin-top: 0; 
    margin-bottom: 20px; 
    object-fit: cover;
}
.posdata{
    font-size: 14px;
    color: #4e4e4e;
}
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-image {
    width: 100%;
    display: none; /* Ocultar imágenes que no están activas */
    transition: opacity 1s ease;
}

.carousel-image.active {
    display: block; /* Mostrar solo la imagen activa */
}

@media (max-width: 768px) {
    body {
        margin: 20px;
    }
    .container {
        padding: 10px;
    }
}
