body {
  padding-top: 60px !important;
}

/* ===========================
   ESTILO EDITORIAL PRO
   Para artículos PromolinkCo
=========================== */

/* Contenedor general del artículo */
.articulo-contenido {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px;
}

/* Título principal */
.titulo-principal {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin: 40px auto 10px auto;
    max-width: 900px;
    padding: 0 20px;
}

/* Intro editorial */
.intro {
    font-size: 1.25rem;
    color: #444;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    padding: 0 20px;
}

/* Imagen hero dentro del artículo */
.hero-articulo {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 12px;
}

/* Texto del artículo */
.texto-articulo {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #222;
    max-width: 820px;
    margin: 0 auto;
}

.texto-articulo p {
    margin-bottom: 22px;
}

/* Subtítulos dentro del contenido */
.texto-articulo h2,
.texto-articulo h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.texto-articulo h2 {
    font-size: 1.8rem;
}

.texto-articulo h3 {
    font-size: 1.5rem;
}

/* ===========================
   PRODUCTOS EDITORIALES
=========================== */

.articulo-productos {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.articulo-productos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.articulo-productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.articulo-producto {
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 12px;
    background: #fafafa;
    text-align: center;
}

.articulo-producto img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    margin-bottom: 15px;
}

.articulo-producto h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.articulo-producto p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.boton-articulo {
    display: inline-block;
    padding: 10px 18px;
    background: #0077ff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.boton-articulo:hover {
    background: #005fcc;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {

    .titulo-principal {
        font-size: 1.9rem;
        margin-top: 25px;
    }

    .intro {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-articulo {
        margin-bottom: 30px;
    }

    .texto-articulo {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .articulo-productos-grid {
        grid-template-columns: 1fr;
    }
}