/* =========================================================
   Southern Steel — Product Standards Page
   product-standard.css
   ========================================================= */

:root {
    --ss-navy: #fa2660;
    --ss-header-bg: #000;
    --ss-border: #d9d9d9;
    --ss-text: #fa2660;
    --ss-max-width: 1280px;
}
.product-standard-banner {
    width: 100%;
    background-color: #fa2660;;
}
.product-standard-banner img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.ps-section {
    background: #ffffff;
    padding: 50px 24px 80px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.ps-inner {
    max-width: var(--ss-max-width);
    margin: 0 auto;
}
.ps-title {
    color: var(--ss-navy);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 26px 0;
}
.ps-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--ss-border);
    -webkit-overflow-scrolling: touch;
}
.ps-table {
    width: 100%;
    min-width: 950px;
    border-collapse: collapse;
    font-size: 13px;
}
.ps-table thead th {
    background: var(--ss-header-bg);
    color: #ffffff;
    text-align: left;
    font-weight: 600;
    padding: 10px 14px;
    white-space: nowrap;
}
.ps-table td {
    border: 1px solid var(--ss-border);
    padding: 10px 14px;
    vertical-align: top;
    color: var(--ss-text);
    line-height: 1.5;
}
.ps-table td.col-company {
    font-weight: 600;
    white-space: nowrap;
    vertical-align: top;
}
.ps-table col.col-company {
    width: 14%;
}
.ps-table col.col-product {
    width: 40%;
}
.ps-table col.col-standard {
    width: 24%;
}
.ps-table col.col-grade {
    width: 22%;
}


@media (max-width: 900px) {
    .product-standard-banner img {
        height: 190px;
    }
}

@media (max-width: 600px) {
    .product-standard-banner img {
        height: 108px;
    }
}

@media (max-width: 768px) {
    .ps-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .ps-table {
        min-width: 1200px;
        font-size: 12.5px;
    }
    .ps-table thead th,
    .ps-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .ps-section {
        padding: 30px 16px 50px;
    }
    .ps-title {
        font-size: 20px;
    }
    .ps-table {
        min-width: 1200px;
    }
}