:root {
--tc-header-height:     70px;
--tc-header-logo-h:     40px;
--tc-header-logo-color: #111111;
--tc-header-menu-color: #333333;
--tc-header-menu-hover: #1a73e8;
--tc-header-icon-color: #333333;
--tc-header-icon-hover: #1a73e8;
} #masthead {
width: 100%; }
.tc-header-inner {
position: relative;
width: 100%;
min-height: var(--tc-header-height); }
.tc-header-overlay {
position: absolute;
inset: 0;
pointer-events: none;
display: none;
z-index: 0;
} .tc-header-wrap {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
max-width: var(--tc-content-width, 1200px);
margin: 0 auto;
padding: 0 var(--tc-padding-h, 40px);
min-height: var(--tc-header-height); } .tc-header-logo { flex-shrink: 0; }
.tc-logo-link {
display: flex;
align-items: center;
text-decoration: none !important;
gap: 10px;
}
.tc-logo-img {
height: var(--tc-header-logo-h);
width: auto;
display: block;
object-fit: contain;
transition: opacity .2s;
max-height: var(--tc-header-logo-h);
}
.tc-logo-img:hover { opacity: .85; }
.tc-logo-text {
font-family: var(--tc-font-heading);
font-size: 1.4rem;
font-weight: 700;
color: var(--tc-header-logo-color);
text-decoration: none;
line-height: 1;
letter-spacing: -.02em;
white-space: nowrap;
} .tc-header-nav {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end; }
.tc-nav-menu {
list-style: none;
display: flex;
align-items: center;
gap: 2px;
margin: 0;
padding: 0;
} .tc-nav-menu li {
position: relative;
list-style: none;
} .tc-nav-menu > li > a {
display: flex;
align-items: center;
gap: 5px;
padding: 8px 13px;
font-size: var(--tc-header-menu-size, 15px);
font-weight: var(--tc-header-menu-weight, 600);
font-family: var(--tc-header-menu-font, var(--tc-font-body));
letter-spacing: var(--tc-header-menu-spacing, 0);
text-transform: var(--tc-header-menu-transform, none);
color: var(--tc-header-menu-color);
text-decoration: none;
border-radius: 5px;
transition: color .2s, background .2s;
white-space: nowrap;
line-height: 1;
}
.tc-nav-menu > li > a:hover,
.tc-nav-menu > li.current-menu-item > a,
.tc-nav-menu > li.current-menu-ancestor > a {
color: var(--tc-header-menu-active, var(--tc-header-menu-hover));
background: rgba(0,0,0,.05);
text-decoration: none;
} .tc-nav-menu > li.menu-item-has-children > a::after {
content: '';
display: inline-block;
width: 5px;
height: 5px;
border-right: 1.5px solid currentColor;
border-bottom: 1.5px solid currentColor;
transform: rotate(45deg) translateY(-2px);
transition: transform .2s;
flex-shrink: 0;
}
.tc-nav-menu > li.menu-item-has-children:hover > a::after,
.tc-nav-menu > li.menu-item-has-children:focus-within > a::after {
transform: rotate(-135deg) translateY(1px);
} .tc-nav-menu .sub-menu { visibility: hidden;
opacity: 0;
pointer-events: none;
transition: opacity .15s, visibility .15s;
position: absolute;
list-style: none;
margin: 0;
padding: 6px 0;
min-width: 200px;
background: #ffffff;
border: 1px solid rgba(0,0,0,.10);
border-radius: 8px;
box-shadow: 0 8px 28px rgba(0,0,0,.14);
} .tc-nav-menu > li > .sub-menu {
top: 100%;
left: 0;
z-index: 9900;
} .tc-nav-menu > li > .sub-menu::before {
content: '';
position: absolute;
top: -12px;
left: 0;
right: 0;
height: 12px;
} .tc-nav-menu .sub-menu .sub-menu {
top: -7px;
left: 100%;
z-index: 9950;
} .tc-nav-menu .sub-menu .sub-menu .sub-menu {
z-index: 9999;
} .tc-nav-menu .sub-menu li > .sub-menu::before {
content: '';
position: absolute;
top: 0;
left: -10px;
width: 10px;
height: 100%;
} .tc-nav-menu li:hover > .sub-menu,
.tc-nav-menu li:focus-within > .sub-menu {
visibility: visible;
opacity: 1;
pointer-events: auto;
} .tc-nav-menu .sub-menu li a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 9px 16px; font-size: calc( var(--tc-header-menu-size, 15px) * 0.9 );
font-weight: var(--tc-header-menu-weight, 600);
font-family: var(--tc-header-menu-font, inherit);
letter-spacing: var(--tc-header-menu-spacing, 0);
color: var(--tc-header-menu-color, #333);
text-decoration: none;
white-space: nowrap;
transition: color .15s, background .15s;
}
.tc-nav-menu .sub-menu li a:hover {
color: var(--tc-header-menu-hover);
background: #f5f7fa;
text-decoration: none;
}
.tc-nav-menu .sub-menu li.current-menu-item > a {
color: var(--tc-header-menu-active, var(--tc-header-menu-hover));
font-weight: 700;
} .tc-nav-menu .sub-menu li.menu-item-has-children > a::after {
content: '›';
font-size: 1.1rem;
line-height: 1;
color: #bbb;
flex-shrink: 0;
} .tc-header-icons {
display: flex;
align-items: center;
gap: 4px;
flex-shrink: 0;
}
.tc-header-icon {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 6px;
color: var(--tc-header-icon-color);
text-decoration: none;
transition: color .2s, background .2s;
flex-shrink: 0;
}
.tc-header-icon:hover {
color: var(--tc-header-icon-hover);
background: rgba(0,0,0,.06);
text-decoration: none;
}
.tc-header-icon svg {
width: 20px;
height: 20px;
display: block;
flex-shrink: 0;
} .tc-hamburger {
display: none; flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
width: 40px;
height: 40px;
padding: 8px;
background: none;
border: none;
cursor: pointer;
border-radius: 6px;
transition: background .2s;
flex-shrink: 0; position: relative;
z-index: 9000;
}
.tc-hamburger:hover { background: rgba(0,0,0,.06); }
.tc-hamburger span {
display: block;
height: 2px;
width: 22px;
background: var(--tc-header-menu-color);
border-radius: 2px;
transition: transform .3s, opacity .3s;
pointer-events: none;
}
.tc-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tc-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tc-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (max-width: 900px) { .tc-hamburger { display: flex; } .tc-drawer-header { display: flex; } .tc-header-nav    { display: none; }
.tc-header-icons  { display: none; } .tc-nav-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,.5);
z-index: 8500;
}
.tc-nav-overlay.tc-open { display: block; } .admin-bar .tc-nav-overlay { top: 46px; }
@media screen and (min-width: 783px) {
.admin-bar .tc-nav-overlay { top: 32px; }
} .tc-header-nav {
display: flex !important;
position: fixed;
top: 10vh; right: -320px;
bottom: 10vh; width: 300px;
max-width: 80vw;
height: auto; z-index: 9000;
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
background: var(--tc-drawer-bg, #ffffff);
border-radius: 12px 0 0 12px; box-shadow: -4px 0 40px rgba(0,0,0,.25);
transition: right .28s cubic-bezier(.4,0,.2,1);
overflow-y: auto;
overflow-x: hidden;
padding: 0;
filter: none !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
isolation: isolate;
} .admin-bar .tc-header-nav {
top: max(10vh, 46px + 8px); }
@media screen and (min-width: 783px) {
.admin-bar .tc-header-nav {
top: max(10vh, 32px + 8px);
}
}
.tc-header-nav.tc-open { right: 0; } .tc-drawer-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 16px;
min-height: 56px;
border-bottom: 1px solid var(--tc-drawer-border, #eee);
flex-shrink: 0;
} .tc-drawer-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none !important;
overflow: hidden;
max-width: calc(100% - 48px);
flex: 1;
min-width: 0;
}
.tc-drawer-logo img { display: block !important;
visibility: visible !important;
opacity: 1 !important;
flex-shrink: 0;
object-fit: contain;
min-width: 20px; }
.tc-drawer-logo span {
font-family: var(--tc-font-heading);
font-size: 1.05rem;
font-weight: 700;
color: var(--tc-drawer-text, #111);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tc-drawer-title {
font-size: .78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--tc-drawer-text-muted, #aaa);
}
.tc-drawer-close {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border: none;
background: none;
cursor: pointer;
border-radius: 6px;
font-size: 1.3rem;
color: var(--tc-drawer-text, #555);
transition: background .2s, color .2s;
flex-shrink: 0;
}
.tc-drawer-close:hover { background: rgba(0,0,0,.06); } .tc-nav-menu {
flex-direction: column;
align-items: stretch;
gap: 0;
padding: 8px 0;
overflow: visible;
} .tc-nav-menu > li { position: static; }
.tc-nav-menu > li > a {
color: var(--tc-drawer-text, #333);
display: flex;
align-items: center;
justify-content: space-between;
padding: 13px 20px;
border-radius: 0;
border-bottom: 1px solid var(--tc-drawer-border, #f2f2f2);
font-size: .97rem;
min-height: unset;
gap: 8px;
}
.tc-nav-menu > li:last-child > a { border-bottom: none; } .tc-nav-menu > li.menu-item-has-children > a::after {
content: '';
width: 7px;
height: 7px;
border-right: 2px solid var(--tc-drawer-text-muted, #aaa);
border-bottom: 2px solid var(--tc-drawer-text-muted, #aaa);
transform: rotate(45deg);
transition: transform .25s;
flex-shrink: 0;
margin-left: auto;
}
.tc-nav-menu > li.menu-item-has-children.tc-open > a::after {
transform: rotate(-135deg) translateY(4px);
} .tc-nav-menu .sub-menu {
position: static !important; visibility: visible !important;
opacity: 1 !important;
pointer-events: auto !important;
display: none !important; transition: none !important;
box-shadow: none !important;
border: none !important;
border-radius: 0 !important;
background: var(--tc-drawer-submenu-bg, #f7f8fa) !important;
padding: 4px 0 !important;
min-width: unset !important;
z-index: auto !important;
} .tc-nav-menu li.tc-open > .sub-menu { display: block !important; } .tc-nav-menu .sub-menu::before,
.tc-nav-menu .sub-menu li > .sub-menu::before { display: none; } .tc-nav-menu .sub-menu li a {
padding: 10px 20px 10px 36px;
font-size: calc( var(--tc-header-menu-size, 15px) * 0.9 );
font-weight: var(--tc-header-menu-weight, 600);
font-family: var(--tc-header-menu-font, inherit);
color: var(--tc-drawer-text, #555);
border-bottom: 1px solid var(--tc-drawer-border, #ececec);
justify-content: space-between;
white-space: normal; }
.tc-nav-menu .sub-menu li:last-child > a { border-bottom: none; } .tc-nav-menu .sub-menu .sub-menu { background: var(--tc-drawer-submenu-bg-2, #eef0f4) !important; }
.tc-nav-menu .sub-menu .sub-menu li a { padding-left: 52px; font-size: calc( var(--tc-header-menu-size, 15px) * 0.85 ); } .tc-nav-menu .sub-menu li.menu-item-has-children > a::after {
content: '';
display: inline-block;
width: 6px;
height: 6px;
border-right: 2px solid #bbb;
border-bottom: 2px solid #bbb;
transform: rotate(45deg);
transition: transform .25s;
flex-shrink: 0;
margin-left: auto;
}
.tc-nav-menu .sub-menu li.menu-item-has-children.tc-open > a::after {
transform: rotate(-135deg) translateY(3px);
}  .tc-header-icons {
display: flex !important;
gap: 2px;
flex-shrink: 0;
}
.tc-header-icon { width: 34px; height: 34px; }
.tc-header-icon svg { width: 17px; height: 17px; }
} .tc-drawer-header { display: none; }
@media (max-width: 600px) {
.tc-header-wrap { padding: 0 16px; gap: 10px; }
.tc-logo-text   { font-size: 1.1rem; }
.tc-logo-img    { height: 32px !important; max-height: 32px !important; }
} #masthead.tc-header-transparent {
position: fixed !important; top: 0;
left: 0;
right: 0;
z-index: 1000; } .admin-bar #masthead.tc-header-transparent { top: 32px; }
@media screen and (max-width: 782px) {
.admin-bar #masthead.tc-header-transparent { top: 46px; }
}
#masthead.tc-header-transparent .tc-header-inner {
background: transparent !important;
transition: background .3s ease, box-shadow .3s ease;
} #masthead.tc-header-transparent.tc-scrolled .tc-header-inner {
background: var(--tc-header-bg-solid, rgba(255,255,255,.96)) !important;
box-shadow: 0 2px 16px rgba(0,0,0,.10);
} body.has-transparent-header #primary {
padding-top: var(--tc-header-height, 70px);
} .admin-bar body.has-transparent-header #primary,
body.admin-bar.has-transparent-header #primary {
padding-top: calc( var(--tc-header-height, 70px) ); } @media (max-width: 900px) {
.tc-logo-img {
height: var(--tc-header-logo-h-mobile, 32px) !important;
max-height: var(--tc-header-logo-h-mobile, 32px) !important;
}
.tc-drawer-logo img {
height: var(--tc-header-logo-h-mobile, 32px) !important;
max-height: var(--tc-header-logo-h-mobile, 32px) !important;
}
}