/* Amministrazione Trasparente frontend */
:root {
    --nts-at-blue: #133371;
    --nts-at-accent: #7E65AA;
    --nts-at-border: #E6EAF1;
    --nts-at-muted: #667085;
    --nts-at-soft: #F2F4F8;
    --nts-at-text: #131313;
    --nts-at-search: #F8F6FA;
    --nts-at-borderdark: #D1D1D0;
    --nts-at-tablalter: #F9F9F9;
}

body {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
}

.nts-at-site-header,
.nts-at-site-header *,
.nts-at-site-footer,
.nts-at-site-footer *,
.nts-at-page,
.nts-at-page * {
    box-sizing: border-box;
}

.nts-at-site-header,
.nts-at-site-footer {
    background: #ffffff;
    border-color: var(--nts-at-border);
    color: var(--nts-at-text);
}

.nts-at-site-header {
    border-bottom: 1px solid var(--nts-at-border);
}

.nts-at-site-footer {
    border-top: 1px solid var(--nts-at-border);
    margin-top: 56px;
}

.nts-at-header-inner,
.nts-at-footer-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    padding: 38px;
}

.nts-at-site-brand {
    color: var(--nts-at-blue);
    font-weight: 700;
    text-decoration: none;
}

.nts-at-header-placeholder,
.nts-at-footer-inner {
    color: var(--nts-at-muted);
    font-size: 0.875rem;
}

.nts-at-page {
    background: #ffffff;
    color: var(--nts-at-text);
}

.nts-at-container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 38px 20px 198px;
}

.nts-at-breadcrumbs {
    align-items: center;
    color: var(--nts-at-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    font-weight: 400;
    gap: 8px;
    letter-spacing: 0;
    margin-bottom: 100px;
    text-transform: uppercase;
}

.nts-at-breadcrumbs a {
    color: var(--nts-at-muted);
    font-weight: 400;
    text-decoration: unset !important;
}

.nts-at-breadcrumbs span[aria-hidden="true"] {
    color: var(--nts-at-muted);
    font-weight: 400;
}

.nts-at-breadcrumbs span:not([aria-hidden="true"]) {
    color: var(--nts-at-accent);
    font-weight: 700;
    text-decoration: unset !important;
}

.nts-at-layout {
    align-items: start;
    display: grid;
    gap: clamp(32px, 6vw, 88px);
    grid-template-columns: minmax(400px, 400px) minmax(0, 1fr);
}

.nts-at-sidebar {
    position: sticky;
    top: 24px;
}

.nts-at-page,
.nts-at-container,
.nts-at-layout,
.nts-at-sidebar,
.nts-at-sidebar-body,
.nts-at-main,
.nts-at-main-wide {
    min-width: 0;
}

.nts-at-sidebar-heading {
    border-bottom: 4px solid #EDEDEC;
    color: var(--nts-at-blue);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 14px;
    padding: 0 0 12px;
    position: relative;
    text-transform: uppercase;
}

.nts-at-sidebar-heading::after {
    background: var(--nts-at-accent);
    bottom: -4px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 34px;
}

.nts-at-tree,
.nts-at-tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nts-at-tree .nts-at-tree {
    margin-left: 40px;
}

.nts-at-tree-item:not(.is-open)>.nts-at-tree-children {
    display: none;
}

.nts-at-tree-row {
    align-items: center;
    border-bottom: 1px solid #edf0f6;
    display: flex;
    gap: 8px;
    min-height: 30px;
}

.nts-at-tree-link {
    color: var(--nts-at-text);
    flex: 1 1 auto;
    font-size: 1.063rem;
    line-height: 1.25;
    padding: 8px 4px 8px 8px;
    text-decoration: none;
}

.nts-at-tree-link::before {
    color: var(--nts-at-text);
    content: "» ";
}

.nts-at-tree-item.is-active>.nts-at-tree-row {
    background: var(--nts-at-accent);
    border-radius: 4px;
}

.nts-at-tree-item.is-active>.nts-at-tree-row .nts-at-tree-link,
.nts-at-tree-item.is-active>.nts-at-tree-row .nts-at-tree-link::before,
.nts-at-tree-item.is-active>.nts-at-tree-row .nts-at-tree-toggle {
    color: #ffffff;
}

.nts-at-tree-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--nts-at-text);
    display: inline-flex;
    flex: 0 0 26px;
    font-size: 1.2rem;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.nts-at-tree-toggle::before {
    content: "+";
}

.nts-at-tree-item.is-open>.nts-at-tree-row .nts-at-tree-toggle::before {
    content: "-";
}

.nts-at-main {
    max-width: 780px;
    width: 100%;
}

.nts-at-title {
    color: var(--nts-at-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 24px;
}

.nts-at-content,
.nts-at-term-description {
    font-size: 1rem;
    line-height: 1.75;
}

.nts-at-section-title {
    color: var(--nts-at-blue);
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 42px 0 20px;
}

.nts-at-eyebrow {
    color: var(--nts-at-accent);
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    margin: 28px 0 8px;
    text-transform: uppercase;
}

.nts-at-rich-text>*:last-child,
.nts-at-content-card>*:last-child,
.nts-at-link-card-body>*:last-child {
    margin-bottom: 0;
}

.nts-at-rich-text a {
    color: var(--nts-at-accent);
}

.nts-at-rich-text h1, .nts-at-rich-text h2, .nts-at-rich-text h3, .nts-at-rich-text h4, .nts-at-rich-text h5, .nts-at-rich-text h6 {
	color: var(--nts-at-blue);
} 

.nts-at-content-card,
.nts-at-archive-card,
.nts-at-link-card {
    background: var(--nts-at-soft);
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.nts-at-content-card {
    margin: 20px 0;
    padding: 22px 24px;
    border-left: 8px solid var(--nts-at-accent);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.nts-at-content-card a {
    color: var(--nts-at-accent);
}

.nts-at-content-card h1, .nts-at-content-card h2, .nts-at-content-card h3, .nts-at-content-card h4, .nts-at-content-card h5, .nts-at-content-card h6 {
    color: var(--nts-at-blue);
} 

.nts-at-image-block {
    margin: 28px 0;
}

.nts-at-image {
    border-radius: 8px;
    height: auto;
    max-width: 100%;
}

.nts-at-image-block figcaption {
    color: var(--nts-at-muted);
    font-size: 0.875rem;
    margin-top: 8px;
    font-style: italic;
}

.nts-at-link-card {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    margin: 14px 0;
    padding: 18px;
}

.nts-at-link-card-link {
    grid-template-columns: 32px minmax(0, 1fr);
}

.nts-at-link-card-icon {
    align-items: center;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.nts-at-link-card-icon img {
    display: block;
    height: 32px;
    width: 32px;
}

.nts-at-link-card-title,
.nts-at-archive-card-title a {
    color: var(--nts-at-blue);
    font-weight: 700;
}

.nts-at-link-card-title-link {
    color: var(--nts-at-accent);
    font-weight: 400;
}

.nts-at-link-card p,
.nts-at-archive-card p {
    color: var(--nts-at-text);
    font-size: 0.875rem;
    line-height: 1.45;
    margin: 4px 0 0;
}

.nts-at-download {
    align-items: center;
    display: inline-flex;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.nts-at-download img {
    display: block;
    height: 26px;
    width: 26px;
}

.nts-at-spacer {
    margin: 28px 0;
}

.nts-at-spacer-small {
    margin: 16px 0;
}

.nts-at-spacer-large {
    margin: 48px 0;
}

.nts-at-field-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.nts-at-field-row {
    border-bottom: 1px solid var(--nts-at-border);
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(170px, 30%) minmax(0, 1fr);
    padding: 16px 0;
}

.nts-at-field-row dt {
    color: var(--nts-at-blue);
    font-weight: 700;
}

.nts-at-field-row dd {
    margin: 0;
}

.nts-at-field-row .nts-at-link-card {
    margin: 0;
}

.nts-at-field-row .nts-at-link-card {
    margin-bottom: 12px;
}

.nts-at-archive-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.nts-at-archive-card {
    padding: 22px 24px;
}

.nts-at-subsections {
    margin-top: 34px;
}

/*.nts-at-subsection-card {
    border: 2px solid var(--nts-at-blue);
}*/

.nts-at-archive-card-title {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0;
}

.nts-at-empty {
    color: var(--nts-at-muted);
}

.nts-at-pagination {
    margin-top: 32px;
}

@media (max-width: 991.98px) {
    .nts-at-layout {
        grid-template-columns: 1fr;
    }

    .nts-at-sidebar {
        position: static;
        width: 100%;
    }

    .nts-at-sidebar:not(.nts-at-sidebar-tabular) .nts-at-sidebar-heading-icon {
        display: inline-block;
    }

    .nts-at-sidebar-collapsible.is-collapsed .nts-at-sidebar-body {
        display: none;
    }

    .nts-at-sidebar-collapsible.is-collapsed .nts-at-sidebar-heading-icon {
        transform: rotate(45deg);
    }

    .nts-at-sidebar-body {
        margin-top: 18px;
    }

    .nts-at-main {
        max-width: none;
    }
}

@media (max-width: 575.98px) {

    .nts-at-header-inner,
    .nts-at-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nts-at-breadcrumbs {
        margin-bottom: 32px;
    }

    .nts-at-field-row,
    .nts-at-link-card {
        grid-template-columns: 1fr;
    }

    .nts-at-download {
        display: none;
    }
}

.nts-at-container--tabular {
    max-width: 1280px;
    padding-left: clamp(20px, 2.5vw, 42px);
    padding-right: clamp(20px, 2.5vw, 42px);
}

.nts-at-layout--tabular {
    display: block;
}

.nts-at-layout--tabular .nts-at-sidebar {
    margin-bottom: 34px;
    position: static;
    top: auto;
    width: 100%;
}

.nts-at-layout--tabular .nts-at-main,
.nts-at-layout--tabular .nts-at-main-wide {
    max-width: none;
    width: 100%;
}

.nts-at-sidebar-heading-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 4px solid #EDEDEC;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

.nts-at-sidebar-heading-icon {
    border-color: var(--nts-at-blue);
    border-style: solid;
    border-width: 0 3px 3px 0;
    display: inline-block;
    flex: 0 0 auto;
    height: 14px;
    margin-left: 20px;
    margin-right: 8px;
    transform: rotate(-135deg);
    transition: transform 0.2s ease;
    width: 14px;
}

.nts-at-sidebar:not(.nts-at-sidebar-tabular) .nts-at-sidebar-heading-icon {
    display: none;
}

@media (max-width: 991.98px) {
    .nts-at-sidebar:not(.nts-at-sidebar-tabular) .nts-at-sidebar-heading-icon {
        display: inline-block;
    }
}

.nts-at-sidebar-body {
    max-width: 100%;
}

.nts-at-sidebar-tabular .nts-at-sidebar-body {
    margin-top: 18px;
}

.nts-at-sidebar:not(.nts-at-sidebar-tabular) .nts-at-tree-root {
    max-width: 640px;
}

.nts-at-sidebar-tabular .nts-at-tree-root {
    max-width: none;
    width: 100%;
}

.nts-at-sidebar-tabular.is-collapsed .nts-at-sidebar-body {
    display: none;
}

.nts-at-sidebar-tabular.is-collapsed .nts-at-sidebar-heading-icon {
    transform: rotate(45deg);
}
/* Amministrazione Trasparente tabular taxonomy */
.nts-at-main-wide {
    max-width: 980px;
}

.nts-at-table-filters {
    align-items: end;
    background: var(--nts-at-search);
    border: 1px solid #edf0f6;
    border-radius: 12px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(140px, 1fr)) auto;
    margin: 42px 0 52px;
    padding: 12px;
}

.nts-at-table-filters.nts-at-table-filters--tabellare {
    grid-template-columns: minmax(0, 1fr) auto;
}

.nts-at-table-filter {
    display: grid;
    gap: 6px;
}

.nts-at-table-filter span {
    color: var(--nts-at-blue);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nts-at-table-filter input {
    border: 1px solid var(--nts-at-borderdark);
    border-radius: 4px;
    height: 32px;
    padding: 8px 12px;
    width: 100%;
}

.nts-at-table-filter-submit {
    background: var(--nts-at-accent);
    border: 0;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    height: 32px;
    padding: 0 30px;
    text-transform: uppercase;
}

.nts-at-table-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin: 4px 0 0;
}

.nts-at-table-actions-label {
    color: var(--nts-at-blue);
    font-size: 1rem;
    font-weight: 500;
    margin-right: 4px;
    text-transform: uppercase;
}

.nts-at-export-button {
    align-items: center;
    border: 1px solid var(--nts-at-borderdark);
    border-radius: 4px;
    color: var(--nts-at-blue);
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 4px;
    text-decoration: none;
    width: 32px;
}

.nts-at-export-button img {
    display: block;
    height: 22px;
    width: 22px;
}

.nts-at-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}

.nts-at-table {
    border-collapse: collapse;
    color: var(--nts-at-text);
    font-size: 1rem;
    min-width: 750px;
    width: 100%;
}

.nts-at-table thead {
    background: var(--nts-at-blue);
    color: #ffffff;
}

.nts-at-table th {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
    padding: 10px 18px;
    text-align: left;
    text-transform: uppercase;
}

.nts-at-table td {
    background: #ffffff;
    border-bottom: 14px solid #ffffff;
    line-height: 1.5;
    padding: 24px 18px;
    vertical-align: top;
}
.nts-at-table .nts-at-table-col-titolo {
    min-width: 250px;
}

.nts-at-table .nts-at-table-col-data,
.nts-at-table .nts-at-table-col-cig {
    white-space: nowrap;
    width: 1%;
}


.nts-at-table tbody tr:nth-child(odd) td {
    background: var(--nts-at-tablalter);
}

.nts-at-table-title {
    font-size: 1.125rem;
    color: var(--nts-at-blue);
    font-weight: 600;
    text-decoration: underline;
}

.nts-at-table td span {
    display: block;
}

@media (max-width: 991.98px) {
    .nts-at-table-filters {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .nts-at-table-filters,
    .nts-at-table-filters.nts-at-table-filters--tabellare {
        grid-template-columns: 1fr;
    }

    .nts-at-table-actions {
        justify-content: flex-end;
    }
}

/* Site header */
.nts-at-site-header {
    background: #143b78;
    border: 0;
    color: #ffffff;
    min-height: 180px;
    width: 100%;
}

.nts-at-header-inner {
    align-items: center;
    display: flex;
    gap: clamp(32px, 8vw, 120px);
    justify-content: space-between;
    margin: 0;
    max-width: none;
    min-height: 180px;
    padding: 28px clamp(28px, 5vw, 110px);
    width: 100%;
}

.nts-at-site-brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
    text-decoration: none;
}

.nts-at-site-brand img {
    display: block;
    height: auto;
    max-height: 100px;
    max-width: min(290px, 40vw);
    width: auto;
}

.nts-at-header-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 0;
    color: #ffffff;
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 5px;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
}

.nts-at-header-toggle-line {
    background: currentColor;
    display: block;
    height: 2px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 22px;
}

.nts-at-site-header.is-menu-open .nts-at-header-toggle-line:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.nts-at-site-header.is-menu-open .nts-at-header-toggle-line:nth-child(3) {
    opacity: 0;
}

.nts-at-site-header.is-menu-open .nts-at-header-toggle-line:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.nts-at-header-content {
    align-items: flex-end;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 27px;
    justify-content: center;
    min-width: 0;
}
.nts-at-header-social {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.nts-at-header-social-link {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 24px;
    justify-content: center;
    text-decoration: none;
    width: 24px;
}

.nts-at-header-social-link svg {
    display: block;
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.nts-at-header-social-link:hover,
.nts-at-header-social-link:focus-visible {
    color: #ffffff;
    opacity: 0.78;
}

.nts-at-header-url {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.nts-at-header-url img {
    margin-left: 16px;
}

.nts-at-header-nav {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 36px);
    justify-content: flex-end;
}

.nts-at-header-nav a {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
    padding: 0 0 10px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.nts-at-header-nav a.is-active::after {
    background: #7E65AA;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}

@media (max-width: 1240px) {
    .nts-at-site-header {
        min-height: 0;
    }

    .nts-at-header-inner {
        align-items: center;
        display: grid;
        gap: 16px;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 0;
        padding: 20px;
    }

    .nts-at-site-brand {
        min-width: 0;
    }

    .nts-at-site-brand img {
        max-height: 76px;
        max-width: min(220px, 100%);
    }

    .nts-at-header-toggle {
        display: inline-flex;
    }

    .nts-at-header-content {
        align-items: stretch;
        gap: 0;
        grid-column: 1 / -1;
        width: 100%;
    }
    .nts-at-header-social {
        display: none;
        justify-content: flex-start;
        order: 2;
        padding-top: 18px;
    }

    .nts-at-site-header.is-menu-open .nts-at-header-social {
        display: flex;
    }

    .nts-at-header-social-link {
        height: 32px;
        width: 32px;
    }

    .nts-at-header-social-link svg {
        height: 22px;
        width: 22px;
    }

    .nts-at-header-url {
        display: none;
    }

    .nts-at-header-nav {
        align-items: stretch;
        display: none;
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        order: 1;
        padding-top: 8px;
        width: 100%;
    }

    .nts-at-site-header.is-menu-open .nts-at-header-nav {
        display: flex;
    }

    .nts-at-header-nav a {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        font-size: 1rem;
        line-height: 1.2;
        padding: 14px 0;
        white-space: normal;
    }

    .nts-at-header-nav a.is-active::after {
        bottom: 0;
        height: 100%;
        left: -20px;
        width: 4px;
    }
}

@media (max-width: 575.98px) {
    .nts-at-header-inner {
        padding: 18px 16px;
    }

    .nts-at-site-brand img {
        max-height: 64px;
        max-width: min(190px, 100%);
    }

    .nts-at-header-nav a.is-active::after {
        left: -16px;
    }
}
/* Site footer */
.nts-at-site-footer {
    background: #143b78;
    border: 0;
    color: #ffffff;
    margin-top: 72px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.nts-at-footer-top {
    background: #7e67ad;
    min-height: 260px;
    position: relative;
}

.nts-at-footer-top::after {
    border-left: 170px solid transparent;
    border-right: 170px solid transparent;
    border-top: 66px solid #7e67ad;
    bottom: -65px;
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.nts-at-footer-top-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
    min-height: 260px;
    padding: 34px 20px 56px;
    text-align: center;
}

.nts-at-footer-top-border-inner {
    display: flex;
    flex-direction: column;
    min-height: 10px;
    background-color: var(--nts-at-border);
}

.nts-at-footer-site-link {
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.625rem);
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
}

.nts-at-footer-home-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: underline;
    text-transform: uppercase;
}

.nts-at-footer-home-link img {
    display: inline-block;
    margin-left: 10px;
    text-decoration: none;
}

.nts-at-footer-main {
    background: #133371;
    min-height: 470px;
    position: relative;
}

.nts-at-footer-bg {
    height: auto;
    max-height: 340px;
    max-width: min(270px, 32vw);
    opacity: 0.72;
    position: absolute;
    right: -8px;
    top: 58px;
    z-index: 1;
}

.nts-at-footer-main-inner {
    margin: 0 auto;
    max-width: 1280px;
    padding: 126px 20px 38px;
    position: relative;
    z-index: 2;
}

.nts-at-footer-brand-row {
    align-items: center;
    display: flex;
    gap: clamp(42px, 7vw, 86px);
    margin-bottom: 58px;
}

.nts-at-footer-brand {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
}

.nts-at-footer-brand img {
    display: block;
    height: auto;
    max-height: 100px;
    max-width: min(280px, 42vw);
    width: auto;
}

.nts-at-footer-contacts {
    color: #ffffff;
    font-size: 0.938rem;
    font-style: normal;
    line-height: 1.45;
    margin: 0;
}

.nts-at-footer-contacts strong {
    font-weight: 700;
}

.nts-at-footer-contacts a {
    color: #ffffff;
}

.nts-at-footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-top: 24px;
}

.nts-at-footer-copy,
.nts-at-footer-legal a {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
}

.nts-at-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 2.5vw, 34px);
    justify-content: flex-end;
    font-size: 0.875rem;
    font-weight: 400;
}

.nts-at-footer-legal a {
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .nts-at-footer-bg {
        max-width: 300px;
        opacity: 0.35;
    }

    .nts-at-footer-brand-row,
    .nts-at-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .nts-at-footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .nts-at-footer-top::after {
        border-left-width: 95px;
        border-right-width: 95px;
        border-top-width: 42px;
        bottom: -42px;
    }

    .nts-at-footer-main-inner {
        padding-top: 96px;
    }

    .nts-at-footer-bg {
        display: none;
    }

    .nts-at-footer-brand img {
        max-width: 260px;
    }
}