/* Estilo básico para la tabla */
.article-post table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #f9f9f9;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* Estilo para las celdas y encabezados */
.article-post th,
.article-post td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.article-post th {
    background-color: #007BFF;
    color: #ffffff;
    font-weight: bold;
}

/* Alternar colores de las filas */
.article-post tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Modo responsive: tarjetas en pantallas pequeñas */
@media screen and (max-width: 950px) {
    .article-post table {
        border: 0;
    }

    .article-post thead {
        display: none;
    }

    .article-post tr {
        display: block;
        margin-bottom: 15px;
        box-shadow: 0 2px 3px rgba(0,0,0,0.1);
        border-radius: 5px;
        background-color: #ffffff;
        padding: 10px;
    }

    .article-post td {
        display: block;
        text-align: right;
        padding: 10px;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

    .article-post td:last-child {
        border-bottom: 0;
    }

    .article-post td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }

    .article-post td[data-label] {
        padding-left: 50%;
    }
}

.article-post .product-image img {
    box-shadow: 0px 0px 2px black, 0px 0px 10px white, 0px 0px 3px black;
    border-radius: 10px;
    padding: 10px;
}
.article-post a.product-link {
    color: black;
    border-radius: 10px;
    background: #85c0ff;
    padding: 10px 20px;
    font-weight: bold;
    border: 1px solid #007bff;
}