/* Diseño Global para la Página de Mascotas */
#primary .content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ast-post-format- .entry-header {
    text-align: center;
    margin-bottom: 20px;
}

.ast-post-format- .entry-header .post-thumb {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ast-post-format- .entry-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ast-post-format- .entry-meta {
    font-size: 0.9rem;
    color: #666;
}

.ast-post-format- .entry-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wpuf_customs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpuf_customs li {
    padding: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.wpuf_customs li label {
    font-weight: bold;
    color: #333;
}

.wpuf_customs li p,
.wpuf_customs li a {
    font-size: 1rem;
    color: #555;
}

.wpuf_customs li a {
    text-decoration: none;
    color: #007bff;
}

.wpuf_customs li a:hover {
    text-decoration: underline;
}

/* Iconos de Comunicación */
.icon-phone, .icon-gmaps, .icon-whatsapp {
    font-size: 30px;
    color: #007bff;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.icon-phone:hover, .icon-gmaps:hover, .icon-whatsapp:hover {
    color: #0056b3;
}

.navigation.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-top: 30px;
}

.navigation.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.navigation.post-navigation .nav-previous a {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.navigation.post-navigation .nav-previous a:hover {
    background-color: #0056b3;
}

/* Estilo Responsivo para Móviles */
@media (max-width: 767px) {
    .ast-post-format- .entry-header .post-thumb {
        max-width: 300px;
        margin: 0 auto;
    }

    .wpuf_customs li {
        font-size: 0.9rem;
    }

    .navigation.post-navigation {
        flex-direction: column;
        align-items: center;
    }

    .navigation.post-navigation .nav-previous a {
        width: 100%;
        margin-top: 10px;
    }

    .icon-phone, .icon-gmaps, .icon-whatsapp {
        font-size: 28px;
        margin: 10px;
    }
}


