.download-page {
    overflow-x: hidden;
    background: #fff;
    color: #222;
}

.download-container {
    width: 1200px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

.download-section {
    padding: 28px 0 18px;
}

.download-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.download-sidebar,
.download-list {
    min-width: 0;
}

.download-category-toggle {
    display: none;
}

.download-sidebar h1,
.download-list h2 {
    margin: 0;
    color: #06111f;
    font-family: "Oswald-Regular", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0;
}

.download-sidebar h1 {
    margin-bottom: 13px;
    font-size: 38px;
    line-height: 1.8;
}

.download-list h2 {
    margin-bottom: 14px;
    font-size: 38px;
}

.download-categories {
    padding-left: 17px;
}

.download-categories a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

.download-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.download-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    color: #06111f;
    font-size: 14px;
}

.download-table th,
.download-table td {
    padding: 8px 7px;
    text-align: left;
    vertical-align: top;
}

.download-table th {
    color: #000;
    font-weight: 700;
}

.download-table tr {
    border-top: 1px solid #c8c8c8;
}

.download-table tr:first-child {
    border-top: 0;
}

.download-table td {
    padding-top: 13px;
    color: #1b2a3a;
}

.download-table th:nth-child(1),
.download-table td:nth-child(1) {
    width: 42%;
}

.download-table th:nth-child(2),
.download-table td:nth-child(2) {
    width: 12%;
}

.download-table th:nth-child(3),
.download-table td:nth-child(3),
.download-table th:nth-child(4),
.download-table td:nth-child(4),
.download-table th:nth-child(5),
.download-table td:nth-child(5) {
    width: 12%;
}

.download-table th:nth-child(6),
.download-table td:nth-child(6) {
    width: 10%;
}

.download-table a {
    color: #1b2a3a;
}

.download-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .download-categories a:hover,
    .download-table a:hover {
        color: #d9b500;
    }
}

@media (max-width: 1024px) {
    .download-container {
        max-width: calc(100% - 40px);
    }
    .download-layout {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .download-container {
        max-width: calc(100% - 24px);
    }
    .download-section {
        padding: 24px 0 36px;
    }
    .download-category-toggle {
        width: 100%;
        min-height: 58px;
        border: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        color: #06111f;
        font-family: "Oswald-Regular", Arial, sans-serif;
        font-size: 34px;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        cursor: pointer;
    }
    .download-category-toggle i {
        font-size: 18px;
        transition: transform .25s ease;
    }
    .download-sidebar.is-open .download-category-toggle i {
        transform: rotate(180deg);
    }
    .download-sidebar h1 {
        display: none;
    }
    .download-list h2 {
        font-size: 30px;
    }
    .download-categories {
        padding-left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .download-sidebar.is-open .download-categories {
        max-height: 260px;
        padding-top: 8px;
    }
    .download-layout {
        grid-template-columns: 1fr;
    }
}
