/* SuperMind shared header/footer shell */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #eceff3;
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    height: 46px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.nav a {
    color: #344054;
    text-decoration: none;
}

.nav a:hover {
    color: #f89a1c;
}

.nav .nav-cta,
.nav a.nav-cta {
    padding: 10px 15px;
    border-radius: 999px;
    background: #fffaf2;
    border: 1px solid rgba(248,154,28,.28);
    color: #f89a1c;
}

.sm-contact-footer {
    margin-top: 80px;
    background: #fcfcfb;
    border-top: 1px solid #eceff3;
    font-family: Inter, Arial, sans-serif;
}

.sm-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 58px 22px 40px;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.sm-footer-brand {
    max-width: 430px;
}

.sm-footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 18px;
}

.sm-footer-description {
    color: #667085;
    line-height: 1.9;
    font-size: 15px;
}

.sm-footer-links {
    display: flex;
    gap: 76px;
}

.sm-footer-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #98a2b3;
    margin-bottom: 16px;
}

.sm-footer-group a {
    display: block;
    color: #344054;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
}

.sm-footer-group a:hover {
    color: #f89a1c;
}

.sm-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 22px 42px;
    border-top: 1px solid #eef0f4;
    display: flex;
    justify-content: space-between;
    gap: 42px;
    color: #98a2b3;
    font-size: 13px;
    line-height: 1.8;
}

.sm-footer-address {
    max-width: 520px;
}

.sm-footer-map {
    color: inherit;
    text-decoration: none;
}

.sm-footer-map:hover {
    color: #f89a1c;
}

.sm-footer-license {
    margin-top: 8px;
}

.sm-footer-legal {
    max-width: 460px;
    text-align: right;
}

.sm-footer-company {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.8;
    color: inherit;
}

@media (max-width: 768px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .brand img {
        height: 42px;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 4px;
        font-size: 13px;
    }

    .sm-footer-inner {
        flex-direction: column;
        gap: 36px;
        padding: 46px 22px 32px;
    }

    .sm-footer-links {
        flex-direction: column;
        gap: 28px;
    }

    .sm-footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .sm-footer-legal {
        text-align: left;
        max-width: none;
    }
}

/* Header parity with News page */

.site-header {
    width: 100%;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px;
}

.brand {
    gap: 12px;
}

.brand img {
    height: 52px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 18px;
    font-weight: 800;
    color: #1f2933;
}

.brand-text span {
    font-size: 13px;
    font-weight: 700;
    color: #667085;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 14px 16px;
    }

    .brand img {
        height: 46px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text span {
        font-size: 12px;
    }
}

/* Exact News header parity */

.site-header {
    border-bottom: 1px solid #eceff3;
    background: rgba(255,255,255,.96);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.brand img {
    height: 48px;
    width: auto;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-family: "Inter", Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #1f2933;
}

.brand-subtitle {
    margin-top: 5px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    color: #667085;
}

.nav {
    font-family: "Inter", Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: #394150;
}

.nav a:hover {
    color: #f89a1c;
}

@media (max-width:768px){

    .header-inner{
        padding:14px 16px;
    }

    .brand{
        min-width:auto;
    }

    .brand img{
        height:44px;
    }
}

/* Final lock: identical header position across news/article */

.site-header .header-inner {
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
}

.site-header .brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-width: 260px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .brand img {
    height: 48px !important;
    width: auto !important;
    max-width: none !important;
}

.site-header .brand-copy {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

@media (max-width: 768px) {
    .site-header .header-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .site-header .brand {
        min-width: 260px !important;
    }

    .site-header .brand img {
        height: 44px !important;
    }
}

/* NEWS-PARITY SHARED SHELL OVERRIDE */

.site-header {
    border-bottom: 1px solid #eceff3 !important;
    background: rgba(255,255,255,.96) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
}

.header-inner {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 18px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

.brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-width: 260px !important;
    width: auto !important;
    justify-content: flex-start !important;
}

.brand img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
}

.brand-copy {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.brand-title {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    color: #1f2933 !important;
}

.brand-subtitle {
    margin-top: 5px !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 12px !important;
    color: #667085 !important;
    line-height: 1.35 !important;
}

.nav {
    font-family: "Inter", Arial, sans-serif !important;
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #394150 !important;
}

.nav a {
    font-weight: 700 !important;
}

.nav a:hover {
    color: #f89a1c !important;
}

@media (max-width:768px) {
    .header-inner {
        padding: 14px 16px !important;
        gap: 12px !important;
    }

    .brand {
        min-width: auto !important;
        gap: 12px !important;
    }

    .brand img {
        height: 44px !important;
    }

    .brand-title {
        font-size: 18px !important;
    }

    .brand-subtitle {
        font-size: 11px !important;
    }

    .nav {
        width: 100% !important;
        overflow-x: auto !important;
        gap: 18px !important;
        font-size: 13px !important;
        padding-bottom: 4px !important;
    }
}

/* Header logo-only alignment */

.site-header .brand {
    min-width: 0 !important;
    width: auto !important;
}

.site-header .header-inner {
    max-width: 1280px !important;
}

.site-header .nav {
    margin-left: 0 !important;
}

/* FINAL logo-only header alignment */

.site-header .header-inner {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 18px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

.site-header .brand {
    min-width: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
    gap: 0 !important;
}

.site-header .brand img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
}

.site-header .nav {
    margin-left: auto !important;
    width: auto !important;
    flex: 0 1 auto !important;
}

@media (max-width:768px){
    .site-header .header-inner{
        padding:14px 16px !important;
    }

    .site-header .brand img{
        height:44px !important;
    }
}
