/*
 * Downloads style.css
 */

.lead {
    max-width: 760px;
    color: var(--muted);
    margin: 0;
    font-size: 16px;
}

.content-section {
    padding-top: 34px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.download-group {
    margin-bottom: 30px;
}

.download-group h3 {
    background: var(--navy);
    color: #fff;
    padding: 11px 15px;
    border-radius: 4px 4px 0 0;
}

.table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.downloads-table {
    width: 100%;
    border-collapse: collapse;
}

.downloads-table th {
    background: #edf1f5;
    color: #475663;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.downloads-table th,
.downloads-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.downloads-table tbody tr:last-child td {
    border-bottom: 0;
}

.downloads-table tbody tr:hover {
    background: #fafbfd;
}

.platform {
    font-weight: 600;
    white-space: nowrap;
}

.artifact-name {
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    color: #33414d;
    overflow-wrap: anywhere;
}

.artifact-type {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.actions {
    white-space: nowrap;
}

.button {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.button-primary {
    background: var(--blue);
    color: #fff;
}

.button-primary:hover {
    background: var(--blue-hover);
}

.checksum-link {
    margin-left: 10px;
    font-size: 12px;
    text-decoration: none;
}

.checksum-link:hover {
    text-decoration: underline;
}

.information {
    padding-bottom: 40px;
}

.info-box {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--success);
    padding: 20px 22px;
}

.info-box p {
    margin: 5px 0 18px;
    color: var(--muted);
}

.commands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.commands div {
    background: #f5f7f9;
    border: 1px solid var(--border-light);
    padding: 12px;
}

.commands span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 600;
}

code {
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.site-footer {
    background: var(--navy-dark);
    color: #c7d1dc;
    font-size: 12px;
}

.footer-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 720px) {
    .header-inner {
        min-height: 64px;
    }

    nav {
        display: none;
    }

    h1 {
        font-size: 25px;
    }

    .downloads-table th:nth-child(3),
    .downloads-table td:nth-child(3),
    .downloads-table th:nth-child(4),
    .downloads-table td:nth-child(4) {
        display: none;
    }

    .commands {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
}
