:root {
    color-scheme: light dark;
    --bg: #eee7e7;
    --surface: #ffffff;
    --surface-muted: #fbf7f4;
    --surface-soft: #f8f2f7;
    --input-bg: #ffffff;
    --text: #26222a;
    --muted: #635f69;
    --line: #ddd1cc;
    --line-strong: #cfc3cf;
    --brand: #8f3aa3;
    --brand-dark: #5a275e;
    --brand-contrast: #ffffff;
    --accent: #0f6f78;
    --focus: #8f3aa3;
    --danger: #9b1c1c;
    --status-note: #5f2f68;
    --ok: #16724a;
    --shadow: 0 18px 45px rgba(25, 31, 38, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 14px clamp(16px, 4vw, 48px);
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
}

.brand picture,
.brand img {
    display: block;
}

.brand img {
    position: relative;
    top: -3px;
    width: 146px;
    height: auto;
    object-fit: contain;
}

.brand span {
    padding-left: 44px;
    border-left: 1px solid var(--line);
    white-space: nowrap;
    font-size: 1.15em;
}

.top-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.top-nav a {
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--muted);
    text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a[aria-current="page"] {
    color: var(--brand-contrast);
    background: var(--brand);
}

.app-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: clamp(18px, 3vw, 32px);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.results-panel .search-copy {
    margin-bottom: 20px;
}

.results-panel .search-form {
    margin-bottom: 22px;
}

.search-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-row {
    display: flex;
    gap: 0;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--brand) 36%, var(--line-strong));
    border-radius: 4px;
    background: color-mix(in srgb, var(--brand) 4%, var(--input-bg));
}

.search-row:focus-within {
    border-color: var(--focus);
    outline: 4px solid color-mix(in srgb, var(--focus) 18%, transparent);
}

.search-row input {
    width: 100%;
    min-height: 52px;
    padding: 10px 15px;
    border: 0;
    border-radius: 0;
    color: var(--text);
    background: transparent;
}

.search-row input:focus {
    outline: none;
}

.search-row button {
    min-height: 44px;
    padding: 7px 18px;
    border: 0;
    border-left: 1px solid color-mix(in srgb, var(--brand-dark) 42%, transparent);
    border-radius: 0;
    color: var(--brand-contrast);
    background: var(--brand);
    font-weight: 700;
    cursor: pointer;
}

.search-row button:hover,
.search-row button:focus-visible {
    background: var(--brand-dark);
}

.search-hint {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
    min-height: 1.4em;
}

.search-hint.error {
    color: var(--status-note);
}

.content-grid {
    display: block;
    margin-top: 0;
}

.results-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.results-panel {
    min-height: 430px;
    padding: clamp(16px, 3vw, 26px);
}

.search-page .results-panel,
.help-page .results-panel {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.search-page .results-panel::before,
.help-page .results-panel::before {
    position: absolute;
    inset: 0 0 auto 0;
    height: 170px;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.5) 62%, var(--surface) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.7) 52%, rgba(255, 255, 255, 0.36) 100%),
        url("../images/programcki.jpg") center top / cover no-repeat;
}

.search-page .results-panel > *,
.help-page .results-panel > * {
    position: relative;
    z-index: 1;
}

.search-page .results-panel.has-results .search-intro,
.search-page .results-panel.has-message .search-intro,
.search-page .results-panel.is-loading .search-intro {
    display: none;
}

.search-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.search-intro article {
    min-height: 130px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface-soft);
}

.search-intro h2 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 1rem;
}

.search-intro a {
    color: var(--accent);
    font-weight: 700;
}

.result-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.result-card {
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.result-list .result-card:last-child {
    border-bottom: 0;
}

.result-button {
    width: 100%;
    padding: 13px 6px;
    border: 0;
    color: var(--text);
    background: var(--surface);
    text-align: left;
    cursor: pointer;
}

.result-button:hover,
.result-button:focus-visible {
    background: var(--surface-soft);
    outline: none;
}

.result-title {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-dark);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.28;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 14px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.38;
}

.result-warning {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    color: var(--brand-dark);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 700;
}

.detail-panel {
    display: grid;
    gap: 18px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.detail-header h2 {
    margin-bottom: 4px;
    color: var(--brand-dark);
    font-size: 1.45rem;
    line-height: 1.22;
    letter-spacing: 0;
}

.back-button,
.detail-header-actions button {
    min-height: 36px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
}

.detail-header-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.detail-grid {
    display: grid;
    gap: 0;
}

.detail-item {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.detail-item dt {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.detail-item dd {
    margin: 0;
    overflow-wrap: anywhere;
    white-space: pre-line;
}

.detail-status-extra {
    margin-left: 8px;
    color: var(--muted);
    font-weight: 400;
}

.copy-value {
    font-weight: 700;
}

.copy-button {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-left: 6px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--muted);
    background: transparent;
    line-height: 1;
    vertical-align: middle;
    opacity: 0.42;
    cursor: pointer;
}

.copy-button::before {
    content: "⧉";
    font-size: 1rem;
}

.detail-item:hover .copy-button,
.account-row:hover .copy-button,
.copy-button:focus-visible,
.copy-button.is-copied {
    border-color: var(--line-strong);
    opacity: 1;
}

.copy-button:hover,
.copy-button.is-copied {
    color: var(--brand-dark);
    background: color-mix(in srgb, var(--brand) 7%, var(--surface));
}

.account-list-wrap {
    display: grid;
    gap: 8px;
}

.account-list-wrap h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 1rem;
}

.account-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.account-row {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.account-label {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.account-value {
    overflow-wrap: anywhere;
}

.account-value a {
    color: var(--accent);
}

.account-meta {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.9rem;
}

.empty-accounts {
    margin: 0;
    padding: 10px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.detail-source {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.detail-source p {
    margin: 0;
}

.detail-source p + p {
    margin-top: 3px;
}

.detail-source a {
    color: var(--accent);
}

.map-panel {
    display: grid;
    gap: 8px;
    margin-top: 26px;
}

.map-panel h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 1rem;
}

.map-canvas {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 300px;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.9rem;
}

.database-details {
    display: grid;
    gap: 4px;
    grid-column: 1 / -1;
    margin: 0;
}

.database-details[hidden] {
    display: none;
}

.database-details div {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 0;
    border-top: 0;
}

.database-details div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.database-details dt {
    color: var(--muted);
}

.database-details dd {
    margin: 0;
    font-weight: 700;
    text-align: left;
    color: var(--text);
}

.notice {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.4;
}

.site-footer {
    width: min(1120px, 100%);
    margin: auto auto 0;
    padding: 0 clamp(16px, 4vw, 42px) 28px;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.footer-data {
    margin-bottom: 6px;
}

.footer-data a,
.site-footer a {
    color: inherit;
}

.help-content-grid {
    margin-top: 0;
}

.help-main {
    display: grid;
    align-content: start;
    gap: 16px;
    min-width: 0;
}

.help-main .search-copy {
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    --faq-summary-y: 15px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.faq-item:not([open]) {
    font-size: 0;
    line-height: 0;
}

.faq-item summary {
    padding: var(--faq-summary-y) 18px;
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.5;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
    background: var(--surface-soft);
}

.faq-answer {
    padding: 0 18px 16px;
}

.faq-item:not([open]) > .faq-answer {
    display: none;
}

.faq-answer > * {
    max-width: 860px;
}

.faq-answer .code-example,
.faq-answer .api-example {
    max-width: none;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
    margin-bottom: 0;
}

.faq-answer a,
.contact-strip a {
    color: var(--accent);
    font-weight: 700;
}

.callout {
    padding: 12px;
    border-left: 4px solid var(--brand);
    background: var(--surface-muted);
}

.api-example {
    overflow-x: auto;
    margin: 0 0 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: 0.9rem;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.code-examples h2 {
    margin: 18px 0 6px;
    font-size: 1rem;
}

.code-examples h2:first-child {
    margin-top: 4px;
}

.code-example {
    overflow-x: auto;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.45;
    tab-size: 4;
}

.code-example code {
    font-family: Consolas, "Liberation Mono", Menlo, monospace;
}

.api-field-list {
    display: grid;
    gap: 8px;
    max-width: 860px;
    margin: 12px 0 18px;
}

.api-field-list div {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface-soft);
}

.api-field-list dt {
    margin: 0 0 4px;
    color: var(--brand-dark);
    font-weight: 700;
}

.api-field-list dd {
    margin: 0;
}

.faq-item:target {
    border-color: var(--brand);
}

.contact-strip {
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
}

.contact-strip h2 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.contact-strip p {
    margin-bottom: 0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #000000;
        --surface: #080808;
        --surface-muted: #000000;
        --surface-soft: #080808;
        --input-bg: #000000;
        --text: #f5f1f6;
        --muted: #c9becd;
        --line: rgba(255, 255, 255, 0.28);
        --line-strong: rgba(255, 255, 255, 0.46);
        --brand: #b45ac1;
        --brand-dark: #d897e1;
        --brand-contrast: #ffffff;
        --accent: #83d6dc;
        --focus: #d06ede;
        --danger: #ff8f9a;
        --status-note: #f0a0ff;
        --ok: #67d69b;
        --shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    }

    .site-header {
        background: #000000;
        border-bottom-color: rgba(255, 255, 255, 0.32);
    }

    .brand span {
        border-left-color: rgba(255, 255, 255, 0.32);
    }

    .top-nav a:hover,
    .top-nav a:focus-visible,
    .top-nav a[aria-current="page"] {
        color: #120915;
    }

    .search-page .results-panel,
    .help-page .results-panel {
        background: #080808;
    }

    .search-page .results-panel::before,
    .help-page .results-panel::before {
        display: none;
    }

    .search-row input::placeholder {
        color: #8f8393;
    }

    .results-panel,
    .detail-item,
    .account-list-wrap,
    .account-row,
    .empty-accounts,
    .map-canvas,
    .faq-item,
    .api-example,
    .code-example,
    .search-intro article,
    .api-field-list div {
        border-color: rgba(255, 255, 255, 0.34);
        border-radius: 0;
        background: #080808;
    }

    .result-button,
    .result-button:hover,
    .result-button:focus-visible,
    .callout {
        background: #000000;
    }

    .result-title {
        color: #ffffff;
    }

    .search-row {
        border-color: rgba(255, 255, 255, 0.46);
        border-radius: 0;
        background: #000000;
    }

    .back-button,
    .detail-header-actions button {
        border-color: rgba(255, 255, 255, 0.42);
    }

    .site-footer {
        padding-top: 18px;
    }
}


@media (max-width: 900px) {
    .content-grid {
        display: block;
    }

    .site-header-inner {
        gap: 12px;
        padding: 8px 12px;
    }

    .brand {
        flex: 0 0 auto;
        font-size: 1rem;
    }

    .brand img {
        width: 126px;
        height: auto;
    }

    .brand span {
        padding-left: 22px;
        font-size: 1rem;
    }

    .top-nav {
        flex-wrap: nowrap;
        justify-content: flex-end;
        min-width: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .top-nav::-webkit-scrollbar {
        display: none;
    }

    .top-nav a {
        min-height: 34px;
        padding: 6px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .top-nav a[aria-current="page"] {
        display: none;
    }

    .app-shell {
        padding: 10px 12px 18px;
    }


    .search-page .results-panel.is-loading .search-copy,
    .search-page .results-panel.has-results .search-copy,
    .search-page .results-panel.has-message .search-copy {
        display: none;
    }

    .search-form {
        margin: 0 0 12px;
    }

    .search-row input,
    .search-row button {
        min-height: 40px;
    }

    .search-row button {
        padding: 5px 14px;
    }

    .content-grid {
        margin-top: 8px;
    }

    .results-panel {
        min-height: 0;
        padding: 12px;
        border-radius: 4px;
    }

    .search-page .results-panel::before,
    .help-page .results-panel::before {
        height: 170px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0.7) 62%, var(--surface) 100%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 100%),
            url("../images/programcki.jpg") center top / auto 180px no-repeat;
    }

    .results-panel .search-form {
        margin-bottom: 12px;
    }

    .search-intro {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
        font-size: 0.9rem;
    }

    .search-intro article {
        min-height: 0;
        padding: 12px;
    }

    #results {
        margin-top: 16px;
    }

    .results-panel.is-empty #results {
        margin-top: 0;
    }

    .content-grid > * + * {
        margin-top: 10px;
    }

    .result-list {
        margin-right: -4px;
        margin-left: -4px;
    }

    .result-button {
        padding: 12px 4px;
    }

    .result-title {
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .result-meta {
        display: grid;
        gap: 2px;
        font-size: 0.85rem;
    }

    .detail-panel {
        gap: 16px;
    }

    .detail-header {
        padding-top: 2px;
    }

    .faq-item summary {
        padding: var(--faq-summary-y) 12px;
    }

    .faq-item {
        --faq-summary-y: 11px;
    }

    .faq-answer {
        padding: 0 12px 12px;
    }

    .contact-strip {
        padding-top: 12px;
    }

    .detail-item,
    .account-row {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 9px 0;
    }

    .detail-status-extra {
        display: block;
        margin-left: 0;
    }
}

.map-alternative {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.map-alternative a {
    color: var(--accent);
}

@media print {
    @page {
        margin: 16mm 14mm;
    }

    :root {
        color-scheme: light;
        --bg: #ffffff;
        --surface: #ffffff;
        --surface-muted: #ffffff;
        --surface-soft: #ffffff;
        --text: #000000;
        --muted: #444444;
        --line: #bdbdbd;
        --line-strong: #888888;
        --brand: #000000;
        --brand-dark: #000000;
        --accent: #000000;
        --shadow: none;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    html,
    body {
        min-width: 0;
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 10.5pt;
        line-height: 1.35;
    }

    body {
        display: block;
        min-height: 0;
    }

    .site-header,
    .site-footer,
    .search-copy,
    .search-form,
    .search-hint,
    .search-intro,
    .result-list,
    .back-button,
    .detail-header-actions button,
    .copy-button,
    .map-panel {
        display: none !important;
    }

    .app-shell,
    .content-grid,
    .results-panel,
    #results,
    .detail-panel {
        display: block !important;
        width: auto !important;
        max-width: none !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        overflow: visible !important;
    }

    .search-page .results-panel::before,
    .help-page .results-panel::before {
        display: none !important;
    }

    .detail-header {
        display: block;
        margin-bottom: 12mm;
        padding-bottom: 5mm;
        border-bottom: 1px solid #000000;
    }

    .detail-header h2 {
        margin: 0 0 2mm;
        color: #000000;
        font-size: 16pt;
        line-height: 1.2;
    }

    .detail-header p {
        margin: 0;
        color: #000000;
    }

    .detail-grid,
    .account-list-wrap {
        margin-bottom: 7mm;
    }

    .detail-item,
    .account-row {
        display: grid;
        grid-template-columns: 48mm minmax(0, 1fr);
        gap: 7mm;
        padding: 2.6mm 0;
        border-top: 1px solid #c8c8c8;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .detail-item dt,
    .account-label {
        color: #333333;
        font-size: 9.5pt;
        font-weight: 700;
    }

    .detail-item dd,
    .account-value {
        color: #000000;
        overflow-wrap: anywhere;
    }

    .detail-status-extra {
        color: #333333;
    }

    .copy-value {
        font-weight: 700;
    }

    .account-list-wrap h2 {
        margin: 0 0 2mm;
        color: #000000;
        font-size: 12pt;
    }

    .account-list {
        border-top: 1px solid #c8c8c8;
    }

    .account-row {
        border-bottom: 1px solid #c8c8c8;
    }

    .account-meta {
        color: #333333;
        font-size: 9.5pt;
    }

    .account-value a {
        color: #000000;
        text-decoration: none;
    }

    .empty-accounts {
        padding: 2.6mm 0;
        border-top: 1px solid #c8c8c8;
        border-bottom: 1px solid #c8c8c8;
        color: #333333;
    }

    .detail-source {
        margin-top: 6mm;
        color: #333333;
        font-size: 9.5pt;
    }

    .detail-source p {
        margin: 0;
    }

    .detail-source p + p {
        margin-top: 1.5mm;
    }

    .detail-source a {
        color: #000000;
        text-decoration: none;
    }
}

@media (max-width: 520px) {
    .brand {
        font-size: 0.95rem;
    }

    .brand img {
        width: 118px;
    }

    .top-nav a {
        font-size: 0.8rem;
    }

    .top-nav a[href^="https://inetis.com"] {
        display: none;
    }

    .search-row button {
        width: auto;
    }

    .detail-header {
        display: grid;
    }

    .detail-header-actions {
        justify-content: start;
    }

    .map-canvas {
        min-height: 230px;
        aspect-ratio: 4 / 3;
        border-radius: 4px;
    }

    .site-footer {
        padding: 0 12px 20px;
    }
}
