/* ASE Specifications - Product Page Table */

/* Flex row: specs left + description right — exact 50/50 */
.ase-spec-row {
    display: flex;
    margin: 30px 0;
    padding: 0;
}

.ase-spec-row .ase-specifications {
    width: 50%;
    flex: 0 0 50%;
    margin: 0;
    padding-right: 30px;
    box-sizing: border-box;
}

.ase-spec-row .ase-spec-tabs-side {
    width: 50%;
    flex: 0 0 50%;
    margin: 0;
    padding-left: 30px;
    box-sizing: border-box;
}

/* Section heading — match cross reference style */
.ase-specifications h2,
.ase-spec-tabs-side h2 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* Spec table — match cross reference table style */
.ase-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ase-spec-table thead th {
    text-align: left;
    padding: 8px 12px;
    font-weight: 600;
    background: #f7f8f9;
    border-bottom: 2px solid #ddd;
}

.ase-spec-table tbody td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

/* Description content */
.ase-spec-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.ase-spec-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ase-spec-row {
        flex-direction: column;
    }
    .ase-spec-row .ase-specifications,
    .ase-spec-row .ase-spec-tabs-side {
        width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }
}
