/* LAYOUT GENERAL */
#ayuda-wrapper {
    width: 100%;
    background: #FFFFFF;
    padding: 40px 0;
}

.hc-main {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 95%;
    margin: 0 auto;
}

/* SIDEBAR */
.hc-sidebar {
    width: 220px;
    background: #F9F8F2;
    padding: 20px;
    border: 1px solid #D8CAA8;
    border-radius: 8px;
}

.hc-sidebar h3 {
    font-family: Georgia, serif;
    font-size: 18px;
    margin-bottom: 14px;
    color: #363842;
}

.hc-sidebar ul {
    list-style: none;
    padding-left: 0;
}

.hc-sidebar ul li {
    margin-bottom: 10px;
}

.hc-sidebar ul li a {
    color: #5B832F;
    font-weight: bold;
}

/* CONTENIDO */
.hc-content {
    flex: 1;
    padding: 10px;
}

.hc-breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.hc-feat {
    background: #FFFDF5;
    border: 1px solid #D8CAA8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.hc-cards {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.hc-card {
    flex: 1;
    background: #F9F8F2;
    border: 1px solid #D8CAA8;
    padding: 20px;
    border-radius: 8px;
}

.hc-card h3 a {
    color: #5B832F;
    text-decoration: none;
}
/* ======================================================
   TABLA ESTILO CARD MODERNO (TANTUM)
====================================================== */
/* BLOQUE FINAL — tabla garantizada */
.hc-content table.hc-table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin-top: 20px;
    background: #FFFFFF;
    border: 1px solid #D8CAA8;
    border-radius: 10px;
    overflow: hidden;
}

.hc-content table.hc-table th {
    text-align: left;
    background: #F1F1F1;
    border-bottom: 2px solid #D8CAA8;
    padding: 12px;
}

.hc-content table.hc-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #E4E4E4;
    border-right: 1px solid #E4E4E4;
    color: #333 !important;
}

.hc-content table.hc-table tr:last-child td {
    border-bottom: none;
}

.hc-content table.hc-table td:last-child {
    border-right: none;
}

.hc-table tr:hover td {
    background: #FAFAFA;
}


/* Ícono de YouTube */
.yt-icon {
    height: 28px;              /* ajusta al alto de la fila, auto-scale */
    width: auto;
    display: inline-block;
    vertical-align: middle;
    transition: transform .2s;
}

.yt-icon:hover {
    transform: scale(1.10);
}
