/* Sanguine Works header: title, main tabs, product tabs.
   Shared by the Sanguine pages and every product site under them.
   Everything is set explicitly so a product's own styles.css can't change it. */

.sw-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

.sw-title a {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    white-space: nowrap;
    color: #000;
    text-decoration: none;
}

.sw-tabs {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sw-tabs a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.sw-tabs a.inactive {
    color: #aaa;
}

.sw-tabs a:hover {
    color: #666;
}

/* Product row under Software / Hardware */
.sw-sub {
    margin-top: 16px;
}

/* White band that holds the header above a product site */
.sw-top {
    background: #fff;
    padding: 60px 40px;
}

/* Sanguine footer: the same on every page.
   A product site only changes the colours, through
   --sw-footer-color (text), --sw-footer-bg (background) and --sw-footer-line (top line). */
.sw-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 48px 0;
    border-top: 1px solid var(--sw-footer-line, var(--sw-footer-color, #000));
    background: var(--sw-footer-bg, transparent);
    color: var(--sw-footer-color, #000);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.2;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.sw-footer .sw-col {
    display: flex;
    flex-direction: column;
}

.sw-footer a {
    color: var(--sw-footer-color, #000);
    text-decoration: none;
}

.sw-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .sw-footer {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}
