body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Nunito, sans-serif
}

.anuncio small,
small {
    display: block;
    color: #777
}

body {
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #4169e1
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-radius: 8px
}

.anuncio {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    text-align: left
}

.anuncio img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px
}

.anuncio-content {
    flex: 1
}

.anuncio h2 a {
    text-decoration: none;
    font-size: 1em;
    color: #4169e1;
    margin-bottom: 10px;
    display: block
}

.anuncio h2 a:hover {
    color: #007bff
}

.anuncio p {
    margin: 10px 0;
    line-height: 1.5
}

.anuncio small {
    margin-top: 10px
}

@media (max-width:768px) {
    .anuncio h2 a {
        text-align: initial
    }

    .anuncio {
        flex-direction: column;
        text-align: center
    }

    .anuncio img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: auto
    }

    .anuncio-content {
        text-align: justify;
        hyphens: auto
    }
}

.descripcion-articulo {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6
}

.imagen-articulo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px
}

.contacto-info {
    text-align: center;
    display: inline-block;
    margin: 20px auto
}

.contacto-info div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.icono-contacto {
    width: 24px;
    height: 24px;
    margin-right: 10px
}

.contacto-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 700
}

.contacto-info a:hover {
    text-decoration: underline
}

small {
    margin-top: 20px;
    font-size: .9em
}

.fixed-img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}

.anuncio-des {
    background-color: #ffe6f9;
    /* Fondo suave en rosado claro */
    border: 1px solid #ff69b4;
    /* Borde en un tono de rosa más oscuro */
    position: relative;
    animation: 2s infinite glowEffect;
    transition: .3s ease-in-out;
}

@keyframes glowEffect {

    0%,
    100% {
        box-shadow: 0 0 15px 5px rgba(255, 105, 180, .5);
        /* Suave efecto rosado */
    }

    50% {
        box-shadow: 0 0 30px 15px rgba(255, 105, 180, .8);
        /* Brillo intermedio en rosado */
    }
}


.ad-normal {
    display: block;
}

.ad-responsive {
    display: none;
}

/* Mostrar anuncios responsive solo en pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .ad-normal {
        display: none;
    }
    .ad-responsive {
        display: block;
    }
}