/*---------- TEMPERATURE SUB-TABS ----------*/

.lt-spec-block {

    margin-bottom: 10px;

}

.lt-temp-tabs {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 16px;

}

.lt-temp-tab {

    padding: 9px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .15);

    color: #9FB1C2;

    font-family: 'Orbitron', sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .5px;

    cursor: pointer;

    transition: .3s;

}

.lt-temp-tab:hover {

    color: white;

    border-color: rgba(79, 246, 255, .35);

}

.lt-temp-tab.active {

    color: #05070B;

    background: linear-gradient(135deg, var(--blue), var(--cyan));

    border-color: transparent;

    box-shadow: 0 8px 22px rgba(79, 246, 255, .25);

}

/* Capacity column gets a subtle highlight so it reads as "live" data */

.ac-table td.lt-cap-cell {

    color: var(--cyan);

    font-weight: 600;

}

.ac-table th.lt-cap-header {

    color: var(--cyan);

}

/*---------- SERIES COMPARISON TABLE ----------*/

.lt-compare-wrap {

    max-width: 900px;

    margin: clamp(50px, 8vw, 80px) auto 0;

    overflow-x: auto;

    border-radius: 20px;

    border: 1px solid rgba(79, 246, 255, .1);

    background: rgba(255, 255, 255, .02);

}

.lt-compare-table {

    width: 100%;

    border-collapse: collapse;

    min-width: 560px;

    font-size: 14px;

}

.lt-compare-table thead th {

    text-align: left;

    padding: 18px 22px;

    color: var(--cyan);

    font-size: 11px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    background: rgba(79, 246, 255, .06);

    white-space: nowrap;

}

.lt-compare-table thead th:not(:first-child) {

    text-align: center;

}

.lt-compare-table tbody td {

    padding: 15px 22px;

    color: #C7D3DE;

    border-top: 1px solid rgba(255, 255, 255, .05);

}

.lt-compare-table tbody td:not(:first-child) {

    text-align: center;

}

.lt-compare-table tbody td:first-child {

    color: white;

    font-weight: 600;

    white-space: nowrap;

}

.lt-compare-table tbody tr:hover {

    background: rgba(79, 246, 255, .03);

}

/*---------- SELECTION GUIDE ----------*/

.lt-guide-grid {

    max-width: 1100px;

    margin: clamp(50px, 8vw, 80px) auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;

}

.lt-guide-card {

    padding: clamp(26px, 3vw, 34px);

    border-radius: 22px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .08);

}

.lt-guide-card h3 {

    font-size: 18px;

    margin-bottom: 10px;

}

.lt-guide-card>p {

    color: #9FB1C2;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;

}

.lt-guide-table {

    width: 100%;

    border-collapse: collapse;

    font-size: 13.5px;

}

.lt-guide-table thead th {

    text-align: left;

    padding: 10px 4px;

    color: var(--cyan);

    font-size: 10.5px;

    letter-spacing: 1px;

    text-transform: uppercase;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.lt-guide-table tbody td {

    padding: 12px 4px;

    color: #C7D3DE;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

}

.lt-guide-table tbody td:first-child {

    color: white;

    font-weight: 600;

    font-family: 'Orbitron', sans-serif;

    font-size: 12.5px;

    white-space: nowrap;

}

@media(max-width:800px) {

    .lt-guide-grid {

        grid-template-columns: 1fr;

    }

}

/*---------- WORKED EXAMPLE CALLOUT ----------*/

.lt-example-card {

    max-width: 820px;

    margin: 30px auto 0;

    padding: 26px 30px;

    border-radius: 18px;

    background: linear-gradient(135deg, rgba(66, 165, 255, .08), rgba(79, 246, 255, .03));

    border: 1px solid rgba(79, 246, 255, .18);

}

.lt-example-tag {

    display: inline-block;

    color: var(--cyan);

    font-size: 11px;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    margin-bottom: 12px;

}

.lt-example-card p {

    color: #C7D3DE;

    line-height: 1.85;

    font-size: 14.5px;

}

.lt-example-card p b {

    color: white;

}