/* Artículos relacionados */
.related-articles {
    margin: 3em 0 2em 0;
}
.related-articles h2 {
    font-size: 1.3em;
    margin-bottom: 1em;
    color: #1a237e;
}
.related-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: flex-start;
}
.related-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f5f7fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-decoration: none;
    color: #222;
    max-width: 420px;
    min-width: 260px;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}
.related-card:hover {
    box-shadow: 0 4px 16px rgba(26,35,126,0.10);
    transform: translateY(-2px) scale(1.02);
}
.related-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
    margin-right: 1em;
    background: #e3eafc;
}
.related-card div {
    padding: 0.7em 1em 0.7em 0;
}
.related-card h3 {
    font-size: 1.05em;
    margin: 0 0 0.3em 0;
    color: #1976d2;
}
.related-card p {
    font-size: 0.98em;
    color: #444;
    margin: 0;
}
@media (max-width: 700px) {
    .related-cards {
        flex-direction: column;
        gap: 1em;
    }
    .related-card {
        max-width: 100%;
        min-width: 0;
    }
    .related-card img {
        width: 70px;
        height: 70px;
        margin-right: 0.7em;
    }
}
/* Estilos profesionales para la tabla comparativa de IA, ML y DL */

.table-responsive {
    overflow-x: auto;
    margin: 1.5em 0;
}

.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.07);
    font-size: 1.04rem;
    margin: 0 auto;
    overflow: hidden;
}

.styled-table thead tr {
    background: #e3f2fd;
    color: #1976d2;
    font-size: 1.08em;
}

.styled-table th, .styled-table td {
    padding: 14px 10px;
    text-align: left;
}

.styled-table th {
    font-weight: 700;
    border-bottom: 2px solid #90caf9;
}

.styled-table td {
    border-bottom: 1px solid #e3e8ee;
}

.styled-table tbody tr:nth-child(even) {
    background: #f5faff;
}

.styled-table tbody tr:nth-child(odd) {
    background: #fff;
}

.styled-table tbody tr:last-child td {
    border-bottom: none;
}

.styled-table td strong {
    color: #1976d2;
}

@media (max-width: 600px) {
    .styled-table th, .styled-table td {
        padding: 10px 6px;
        font-size: 0.97rem;
    }
}
