table tbody th, table tbody td {border-bottom: 1px solid #adaca8;}

table.no-stripes tbody tr:nth-child(odd) {background-color:transparent;}

h1 {
	margin:0;
}

.row.apns {
    max-width: 71.0625rem;
}

.breadcrumbs a, .breadcrumbs a:link {
    color: #adaca8;
}

.breadcrumbs .breadcrumb-item {
    font-weight: 600;
    color: #0a0a0a;
    font-size: .6875rem;
    cursor: default;
    text-transform: uppercase;
}

    .breadcrumbs .breadcrumb-item:not(:last-child)::after {
        content: "|";
        color: #adaca8;
        font-size: .75rem;
        margin: 0 .75rem;
        position: relative;
        top: -1px;
    }

.identification table thead th {
    background-color: #4a4a4a;
    border: 1px solid #4a4a4a;
}

.identification table thead th, .identification table thead td {
    border-bottom: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
}

.technical-documents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
}


    .technical-documents li {
        display: flex; /* Allows child elements to be easily centered if needed */
        align-items: center;
        justify-content: center;
        position: relative; /* Needed for absolute positioning of the image */
        min-height: 275px;
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        cursor: pointer;
        border-radius: 20px;
    }

main ul.technical-documents li::before {
    content: '';
    margin: 0;
    padding: 0;
}


.technical-documents img.image-document {
    /* Make the image stretch to fill its parent */
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps the correct aspect ratio but crops if needed */
    z-index: 1;
    transform: scale(236%);
    filter: brightness(0.65);
}

.technical-documents li:last-child img.image-document {
    filter: none;
    transform: scale(120%);
    top: 0;
}

.technical-documents img.icon-document {
    position: relative;
    z-index: 2;
    width: 130px;
    height: auto;
    top: 0;
    margin-top: -40px;
}


.technical-documents li a {
    font-weight: 800;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 3;
    width: 75%;
    text-align: center;
    font-size: 20px;
    line-height: normal;
}

.technical-documents li:last-child a {
    bottom: 26px;
}


.technical-documents li a:hover {
    text-decoration: underline;
}