*,
*::before,
*::after {
    box-sizing: border-box;
    border-radius: 0;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--grc-header); overflow-x: clip; }

body {
    margin: 0;
    color: var(--grc-text);
    background: var(--grc-white);
    font-family: var(--font-sans);
    line-height: var(--grc-body-leading);
    overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: inherit; }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(var(--grc-container), calc(100% - (var(--grc-gutter) * 2)));
    margin-inline: auto;
}

.container--narrow { --grc-container: 860px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: var(--grc-white);
    top: 0;
    width: 100%;
    transform-origin: top center;
    transition: top .48s cubic-bezier(.22, 1, .36, 1), box-shadow .32s ease, backdrop-filter .32s ease, transform .48s cubic-bezier(.22, 1, .36, 1);
}

.site-header--hidden {
    top: calc(-1 * var(--grc-header-hide));
    pointer-events: none;
}

.site-header--visible {
    box-shadow: 0 18px 44px rgba(12, 18, 28, .18);
    backdrop-filter: blur(14px);
}

.site-header--scrolled {
    --grc-header: 76px;
    /* Removed the global transform and border-radius so it only shrinks vertically */
}

.topbar {
    min-height: 48px;
    background: rgba(23, 33, 45, .74);
    font-size: 14px;
    max-height: 48px;
    overflow: hidden;
    transition: max-height .34s ease, opacity .28s ease, transform .34s ease, background-color .32s ease, border-color .32s ease;
}

.topbar__inner,
.mainbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__inner {
    min-height: 48px;
    gap: 24px;
    width: 100%;
    padding-inline: var(--grc-shell-pad);
}
.topbar__info { display: flex; flex-wrap: wrap; gap: 12px 26px; min-width: 0; }
.topbar__info span,
.topbar__info a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    white-space: nowrap;
}

.topbar__info svg { width: 16px; height: 16px; stroke-width: 1.7; }

.topbar__social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    transition: color var(--grc-speed);
}

.topbar__social a:hover { color: var(--grc-white); }
.topbar__social svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.mainbar {
    position: relative;
    min-height: var(--grc-header);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: background-color .32s ease, border-color .32s ease;
}

.site-header--visible .topbar { background: rgba(16, 23, 34, .9); }
.site-header--visible .mainbar { background: rgba(27, 38, 53, .76); }
.site-header--scrolled .topbar {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}
.site-header--scrolled .mainbar { background: rgba(27, 38, 53, .82); }

.mainbar__inner {
    display: grid;
    grid-template-columns: var(--grc-brand-width) minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: var(--grc-header);
    transition: min-height .34s ease, height .34s ease;
    gap: 0;
    width: 100%;
    padding-left: var(--grc-shell-pad);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: var(--grc-brand-width);
    min-width: 0;
    max-width: none;
    color: var(--grc-white);
    text-decoration: none;
}

.site-brand img,
.site-brand__logo { 
    width: auto; 
    max-height: 62px; 
    display: block; 
    transition: max-height .34s ease, transform .34s ease; 
}
.site-header--scrolled .site-brand img,
.site-header--scrolled .site-brand__logo {
    max-height: 48px;
}
.site-brand__mark { font-size: 42px; line-height: 1; font-weight: 900; }
.site-brand__text { max-width: 168px; font-size: 13px; line-height: 1.08; text-transform: uppercase; font-weight: 800; }

.primary-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    min-width: 0;
    margin-left: var(--grc-nav-gap);
}

.primary-nav__panel {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.primary-nav__panel-header,
.menu-close { display: none; }

.primary-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
    height: var(--grc-header);
    min-height: var(--grc-header);
    transition: min-height .34s ease, height .34s ease;
    min-width: 0;
}

.primary-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
    height: inherit;
    min-height: inherit;
}

.primary-menu > li + li,
.primary-menu .sub-menu li + li { margin-top: 0; }

.primary-menu > li > a {
    display: flex;
    align-items: center;
    height: inherit;
    min-height: inherit;
    padding: 0 14px;
    color: rgba(255, 255, 255, .94);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    transition: color var(--grc-speed), transform var(--grc-speed);
}

.primary-menu > li:hover > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a { color: var(--grc-blue-600); }

.primary-menu > li.menu-item-has-children > a::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
    transition: transform var(--grc-speed);
}

.primary-menu > li:hover > a::after,
.primary-menu > li:focus-within > a::after { transform: rotate(225deg) translateY(-1px); }

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: var(--grc-white);
    color: var(--grc-text);
    border-top: 3px solid var(--grc-blue-600);
    box-shadow: 0 18px 38px rgba(22, 32, 46, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity var(--grc-speed), transform var(--grc-speed), visibility var(--grc-speed);
    z-index: 20;
}

.primary-menu .sub-menu .sub-menu {
    top: -15px;
    left: calc(100% - 4px);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li { position: relative; }

.primary-menu .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    color: var(--grc-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.primary-menu .sub-menu li + li > a { border-top: 1px solid rgba(23, 33, 45, .08); }

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu li.current-menu-item > a,
.primary-menu .sub-menu li.current-menu-ancestor > a {
    background: var(--grc-blue-100);
    color: var(--grc-blue-600);
}

.submenu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
}

.submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--grc-speed);
}

.menu-item-has-children.is-submenu-open > .submenu-toggle::before { transform: rotate(-135deg) translate(-1px, -1px); }

.header-phone {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 324px;
    margin-left: auto;
    padding-inline: 25px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .035));
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, .16), inset 0 0 42px rgba(255, 255, 255, .055);
    backdrop-filter: blur(18px) saturate(132%);
    -webkit-backdrop-filter: blur(18px) saturate(132%);
    color: var(--grc-white);
    text-decoration: none;
    text-align: center;
    transition: transform .34s ease, padding .34s ease;
    transform-origin: right center;
}

.site-header--scrolled .header-phone {
    transform: scale(0.9);
}

.header-phone svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--grc-navy-900);
}

.header-phone svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-phone small { display: block; margin-bottom: 4px; font-size: 13.5px; opacity: .9; }
.header-phone strong { display: block; font-size: 19.8px; line-height: 1.1; }

.menu-toggle {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--grc-white);
    cursor: pointer;
}

.menu-toggle__line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform var(--grc-speed), opacity var(--grc-speed);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__line:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-main { min-height: 55vh; }

/* 11.5 — CLS prevention: explicit min-height on archive sidebar+grid layout */
.archive-cards-grid { min-height: 300px; }
.page-with-sidebar > .sidebar-nav { min-height: 200px; }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section__grid { display: grid; gap: 56px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }

.page-shell { padding: 84px 0 168px; }
.page-shell__grid { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 48px; align-items: start; }
.page-content { padding: 84px 0 168px; background: var(--grc-slate-100); }
.archive-list { padding: 84px 0 168px; }
.archive-grid { display: grid; gap: 24px; }
.archive-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.site-footer {
    background-color: var(--grc-navy-950);
    color: rgba(255,255,255,.72);
    border-top: 4px solid var(--grc-gold);
    position: relative;
}

/* ── CTA BANNER ──────────────────────────────────────────────────── */
.footer-cta { transform: translateY(-80px); margin-bottom: -80px; }
.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 5rem 4rem;
    background-color: var(--grc-navy-900);
    background-image: linear-gradient(130deg, rgba(10,15,28,0) 0%, rgba(10,15,28,.65) 35%, rgba(10,15,28,.96) 65%), url('/wp-content/uploads/2026/05/grc%20denetim%20ba%C4%9F%C4%B1ms%C4%B1z%20denetim%20ileti%C5%9Fim1%20kopya.webp');
    background-size: cover;
    background-position: center;
    background-origin: border-box;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
}
.footer-cta__text { max-width: 60%; }
.footer-cta__text .eyebrow { color: var(--grc-gold); }
.footer-cta__text h2 { margin: 0 0 24px; font-size: clamp(22px, calc(19.33px + 0.74vw), 30px); line-height: 1.2; color: var(--grc-white); }
.footer-cta__text p { margin: 0; color: rgba(255,255,255,.78); }

/* ── FOOTER TOP: BRAND + NEWSLETTER ─────────────────────────────── */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-col {
    padding: 3rem 4rem 3rem 0;
    border-right: 1px solid rgba(255,255,255,.08);
}
.footer-logo-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 1rem; }
.footer-logo-img { max-height: 70px; width: auto; }
.footer-brand-slogan {
    display: block;
    font-size: 16px;
    color: var(--grc-gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
}
.footer-brand-promise { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 500px; font-weight: 300; line-height: 1.65; margin: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 1.75rem; }
.footer-social__icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: border-color .2s, color .2s, background-color .2s, transform .2s;
}
.footer-social__icon svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social__icon:hover { border-color: var(--grc-gold); color: var(--grc-gold); background-color: rgba(201,164,72,.06); transform: translateY(-2px); }

.footer-kap-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.75);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    transition: border-color .2s, color .2s, background-color .2s;
}
.footer-kap-btn svg { flex-shrink: 0; opacity: .8; transition: opacity .2s, transform .2s; }
.footer-kap-btn:hover { border-color: var(--grc-blue-600); color: var(--grc-blue-600); background-color: rgba(46,171,226,.06); }
.footer-kap-btn:hover svg { opacity: 1; transform: translate(2px, -2px); }
.footer-newsletter-col { padding: 3rem 0 3rem 4rem; }
.footer-eyebrow {
    display: block;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grc-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}
.footer-newsletter-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin: 0 0 1.5rem;
    font-weight: 300;
}

/* ── FOOTER MATRIX (3-col nav) ───────────────────────────────────── */
.footer-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-matrix__col {
    padding: 3.5rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
}
.footer-matrix__col:first-child { padding-left: 0; }
.footer-matrix__col:last-child  { border-right: none; padding-right: 0; }
.footer-matrix__title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--grc-gold);
    margin: 0 0 1.5rem;
    padding: 0;
}
.footer-matrix__toggle-icon { display: none; }
.footer-matrix__links { list-style: none; padding: 0; margin: 0; }
.footer-matrix__links li { margin-bottom: .7rem; }
.footer-matrix__links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color .2s ease, transform .2s ease;
}
.footer-matrix__links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--grc-gold);
    transition: width .2s ease;
}
.footer-matrix__links a:hover { color: var(--grc-white); transform: translateX(12px); }
.footer-matrix__links a:hover::before { width: 6px; }

/* Cookie Placeholder Button */
.footer-cookie-btn {
    margin-top: auto;
    padding-top: 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.35);
    font-family: var(--font-sans);
    font-size: .8125rem;
    cursor: pointer;
    transition: color .2s;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.footer-cookie-btn:hover { color: rgba(255,255,255,.7); }
.footer-cookie-btn__toggle {
    flex-shrink: 0;
    width: 36px;
    height: 18px;
    border: 1px solid rgba(255,255,255,.25);
    position: relative;
    background-color: rgba(0,0,0,.2);
    transition: border-color .2s;
}
.footer-cookie-btn__knob {
    position: absolute;
    top: 2px; left: 2px;
    width: 12px; height: 12px;
    background-color: rgba(255,255,255,.35);
    transition: transform .2s, background-color .2s;
}
.footer-cookie-btn:hover .footer-cookie-btn__toggle { border-color: var(--grc-gold); }
.footer-cookie-btn:hover .footer-cookie-btn__knob { background-color: var(--grc-gold); transform: translateX(18px); }

.grc-cookie-layer {
    position: relative;
    z-index: 9999;
}

.grc-cookie-banner {
    position: fixed;
    left: clamp(16px, 3vw, 40px);
    right: clamp(16px, 3vw, 40px);
    bottom: clamp(16px, 3vw, 34px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(10, 16, 24, .96);
    color: var(--grc-white);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.grc-cookie-banner[hidden],
.grc-cookie-modal[hidden] {
    display: none !important;
}

.grc-cookie-banner__title {
    margin: 0 0 6px;
    color: var(--grc-gold);
    font-size: .8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.grc-cookie-banner__text {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.72);
    font-size: .9375rem;
    line-height: 1.55;
}

.grc-cookie-banner__actions,
.grc-cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.grc-cookie-btn,
.grc-cookie-link {
    min-height: 42px;
    border: 1px solid var(--grc-gold);
    background: var(--grc-gold);
    color: #101820;
    padding: 0 16px;
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.grc-cookie-btn:hover {
    background: transparent;
    color: var(--grc-gold);
}

.grc-cookie-btn--ghost,
.grc-cookie-link {
    background: transparent;
    color: rgba(255,255,255,.82);
    border-color: rgba(255,255,255,.24);
}

.grc-cookie-btn--ghost:hover,
.grc-cookie-link:hover {
    border-color: var(--grc-gold);
    color: var(--grc-gold);
}

.grc-cookie-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(5, 9, 14, .72);
    backdrop-filter: blur(8px);
}

.grc-cookie-modal__panel {
    position: relative;
    width: min(100%, 640px);
    max-height: calc(100svh - 40px);
    overflow: auto;
    padding: clamp(24px, 4vw, 40px);
    background: var(--grc-white);
    color: var(--grc-navy);
    box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.grc-cookie-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(16,24,32,.16);
    background: transparent;
    color: var(--grc-navy);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.grc-cookie-modal__eyebrow {
    margin: 0 0 8px;
    color: var(--grc-gold);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.grc-cookie-modal h2 {
    margin: 0 44px 12px 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.grc-cookie-modal__desc {
    margin: 0 0 22px;
    color: rgba(21,32,44,.72);
    line-height: 1.6;
}

.grc-cookie-options {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.grc-cookie-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(21,32,44,.12);
    cursor: pointer;
}

.grc-cookie-option strong,
.grc-cookie-option em {
    display: block;
}

.grc-cookie-option strong {
    margin-bottom: 4px;
    font-size: .9375rem;
}

.grc-cookie-option em {
    color: rgba(21,32,44,.62);
    font-size: .8125rem;
    font-style: normal;
    line-height: 1.45;
}

.grc-cookie-option input {
    width: 22px;
    height: 22px;
    accent-color: var(--grc-gold);
}

.grc-cookie-option.is-locked {
    cursor: default;
    background: rgba(21,32,44,.035);
}

.grc-cookie-modal__actions .grc-cookie-btn--ghost {
    color: var(--grc-navy);
    border-color: rgba(21,32,44,.22);
}

.grc-cookie-modal__actions .grc-cookie-btn--ghost:hover {
    color: var(--grc-gold);
    border-color: var(--grc-gold);
}

@media (max-width: 767px) {
    .grc-cookie-banner {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .grc-cookie-banner__actions,
    .grc-cookie-modal__actions {
        justify-content: stretch;
    }

    .grc-cookie-btn,
    .grc-cookie-link {
        width: 100%;
    }
}

/* ── FOOTER BOTTOM BAR ───────────────────────────────────────────── */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 1.5rem 0;
    color: rgba(255,255,255,.28);
    font-size: .5625rem;
    letter-spacing: .02em;
    font-weight: 300;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { font-size: .625rem; }
.footer-bottom a { color: rgba(255,255,255,.42); text-decoration: none; font-weight: 400; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.72); }
.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}
.footer-legal-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.footer-legal-links a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .75rem; letter-spacing: .02em; font-weight: 300; transition: color .2s; margin: 0; padding: 0; display: inline-flex; align-items: center; }
.footer-legal-links a:hover { color: rgba(255,255,255,.72); }

/* Newsletter form: lightweight theme markup, no plugin shortcode CSS required. */
.grc-newsletter--footer .pnr-newsletter-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0; }
.grc-newsletter--footer .pnr-newsletter-form input[type="email"] { width: 100%; height: 52px; padding: 0 1.25rem; border: 1px solid rgba(255,255,255,.18); border-right: 0; background: transparent; color: #fff; font-size: .9375rem; border-radius: 0; outline: none; transition: border-color .2s, background .2s; }
.grc-newsletter--footer .pnr-newsletter-form input[type="email"]:focus { border-color: var(--grc-gold); background: rgba(255,255,255,.03); }
.grc-newsletter--footer .pnr-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.48); }
.grc-newsletter--footer .pnr-newsletter-form button { height: 52px; min-height: 52px; padding: 0 1.5rem; background: var(--grc-white); color: var(--grc-navy-950); border: 1px solid var(--grc-white); font-weight: 700; font-size: .8125rem; text-transform: uppercase; border-radius: 0; cursor: pointer; transition: background .2s, border-color .2s; white-space: nowrap; box-shadow: none; transform: none; }
.grc-newsletter--footer .pnr-newsletter-form button:hover { background: var(--grc-gold); border-color: var(--grc-gold); color: var(--grc-navy-950); box-shadow: none; transform: none; }
.grc-newsletter--footer .pnr-newsletter-form button[aria-busy="true"] { opacity: .72; pointer-events: none; }
.pnr-newsletter-form__consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.35; text-align: left; }
.pnr-newsletter-form__consent input[type="checkbox"] { flex: 0 0 auto; width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--grc-gold); }
.pnr-newsletter-form__consent a { color: var(--grc-gold); text-decoration: none; }
.pnr-newsletter-form__consent a:hover { color: var(--grc-white); }
.pnr-newsletter-form__response { grid-column: 1 / -1; min-height: 20px; margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.35; }
.pnr-newsletter-form__response.is-success { color: #a7f3d0; }
.pnr-newsletter-form__response.is-error { color: #fecaca; }
