/* --- PESTAÑAS RECOMENDADAS --- */
#recommended {
    display: flex;
    flex-wrap: wrap;          /* se ajusta en móviles */
    gap: 20px;                /* espacio entre pestañas */
    justify-content: center;  /* centra las pestañas */
    margin: 30px 0;
}

.tab {
    background: #242831;       /* igual que los artículos */
    border-radius: 12px;
    padding: 20px;
    width: 280px;              /* mismo ancho que los artículos */
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.tab:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(33,161,241,0.5);
}

.tab h4 {
    color: #61dafb;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #61dafb;
    font-size: 16px;
}

.tab p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e0e0e0;
}

/* PDF */
#pdfViewer {
    margin-top: 30px;   /* crea espacio visible entre elementos */
    margin-left: 60px;
}

#pdfViewer iframe {
    width: 90% !important;
    height: 750px !important;
    border: none;
}
