/* ---- Board Passing Rates Section ---- */
.fnf-boards-container {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 900px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.fnf-boards-left {
    flex: 1.4;
}

.fnf-boards-right {
    flex: 1;
}

.fnf-board-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.4);
}

.fnf-board-table th {
    background-color: #da202b;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.8vw, 18px);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 8px;
    text-align: center;
    border: 2px solid #222;
    line-height: 1.2;
}

.fnf-board-table th.th-split {
    font-size: clamp(11px, 1.6vw, 14px);
}

.fnf-board-table th.col-num-hdr {
    width: 30%;
}

.fnf-board-table td {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(9px, 1vw, 14px);
    color: #1a1a1a;
    padding: 6px 8px;
    border: 2px solid #222;
    font-weight: 700;
}

.fnf-board-table td.col-num {
    font-family: Impact, 'Poppins', sans-serif;
    font-size: clamp(12px, 1.4vw, 18px);
    font-weight: normal;
    text-align: center;
    width: 12%;
    color: #000000;
    background: rgba(190, 190, 190, 0.8);
}

.fnf-board-table td.col-prog {
    text-align: left;
    text-transform: uppercase;
    background: #f1f2f2;
}

@media (max-width: 992px) {
    .fnf-boards-container {
        flex-direction: column;
        width: 85%;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .fnf-boards-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 90%;
        margin: -20px auto 20px auto;
    }

    .fnf-board-table th {
        font-size: 14px;
        padding: 8px 5px;
    }

    .fnf-board-table th.th-split {
        font-size: 12px;
    }

    .fnf-board-table td {
        font-size: 9px;
        padding: 5px;
    }

    .fnf-board-table td.col-num {
        font-size: 12px;
    }
}
