.gbp-header {
position: sticky;
top: var(--wp-admin-bar-offset);
z-index: var(--z-sticky);
background: #203731;
border-bottom: 1px solid rgba(255,182,18,0.20);
transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
} .gbp-header::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg,
transparent 0%,
rgba(255,182,18,0.40) 15%,
#FFB612 40%,
#FFB612 60%,
rgba(255,182,18,0.40) 85%,
transparent 100%
);
pointer-events: none;
z-index: 1;
} .gbp-header--scrolled {
background: rgba(24,44,39,0.97);
backdrop-filter: blur(18px) saturate(1.2);
-webkit-backdrop-filter: blur(18px) saturate(1.2);
box-shadow: 0 1px 0 rgba(255,182,18,0.22), 0 4px 32px rgba(0,0,0,0.35);
border-bottom-color: rgba(255,182,18,0.28);
}
.gbp-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-5);
height: 68px;
padding-inline: clamp(16px, 3vw, 32px);
max-width: var(--width-site);
margin-inline: auto;
}
.gbp-header__left  { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.gbp-header__right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; } .gbp-header__right > .gbp-header__sep {
width: 1px;
height: 22px;
background: rgba(255,255,255,0.10);
margin: 0 4px;
flex-shrink: 0;
} .gbp-header__social {
display: flex;
align-items: center;
gap: 1px;
padding-right: 6px;
margin-right: 4px;
border-right: 1px solid rgba(255,255,255,0.08);
}
.gbp-header__social-link {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
color: #d49a0a;
border-radius: 6px;
transition: color 0.18s, background 0.18s;
text-decoration: none;
}
.gbp-header__social-link:hover {
color: #FFB612;
background: rgba(255,182,18,0.10);
} .gbp-header__search-btn {
background: none;
border: none;
color: var(--gbp-muted);
cursor: pointer;
padding: 7px;
display: flex;
align-items: center;
border-radius: 6px;
transition: color .18s, background .18s;
}
.gbp-header__search-btn:hover {
color: #FFB612;
background: rgba(255,182,18,0.10);
} .gbp-header__cta,
.gbp-support-cta-btn {
display: inline-flex;
align-items: center;
padding: 8px 16px !important;
font-family: var(--font-headline) !important;
font-size: 12px !important;
font-weight: 700 !important;
letter-spacing: 0.08em !important;
text-transform: uppercase !important;
background: #FFB612 !important;
color: #07130D !important;
border: none !important;
border-radius: var(--radius-md) !important;
text-decoration: none;
white-space: nowrap;
transition: background .18s, box-shadow .18s, transform .15s !important;
box-shadow: 0 2px 8px rgba(255,182,18,0.22) !important;
}
.gbp-header__cta:hover,
.gbp-support-cta-btn:hover {
background: #FFCA44 !important;
color: #07130D !important;
box-shadow: 0 4px 18px rgba(255,182,18,0.40) !important;
transform: translateY(-1px) !important;
} .gbp-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.gbp-nav__list {
display: flex;
align-items: center;
list-style: none;
gap: 1px;
}
.gbp-nav__item { position: relative; } .gbp-nav__link {
display: flex;
align-items: center;
gap: 4px;
padding: 7px 12px;
font-family: var(--font-headline);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--gbp-white-soft);
border-radius: 5px;
transition: color .18s, background .18s;
white-space: nowrap;
text-decoration: none;
position: relative;
}
.gbp-nav__link::after {
content: '';
position: absolute;
bottom: 3px;
left: 12px;
right: 12px;
height: 2px;
background: #d49a0a;
border-radius: 2px;
transform: scaleX(0);
transform-origin: center;
transition: transform .20s ease;
}
.gbp-nav__link:hover {
color: #FFB612;
background: rgba(255,182,18,0.07);
}
.gbp-nav__link:hover::after { transform: scaleX(1); } .gbp-nav__item--active > .gbp-nav__link,
.current-menu-item > .gbp-nav__link,
.current-menu-ancestor > .gbp-nav__link {
color: #d49a0a;
background: rgba(212,154,10,0.09);
}
.gbp-nav__item--active > .gbp-nav__link::after,
.current-menu-item > .gbp-nav__link::after,
.current-menu-ancestor > .gbp-nav__link::after {
transform: scaleX(1);
}
.gbp-nav__item--ancestor > .gbp-nav__link {
color: rgba(212,154,10,0.75);
} button.gbp-nav__link,
.gbp-nav__link--toggle {
background: none;
border: none;
cursor: pointer;
font-family: var(--font-headline);
} .gbp-nav__link--toggle::after { display: none; }
.gbp-nav__chevron {
color: rgba(248,248,242,0.28);
transition: transform .18s, color .18s;
flex-shrink: 0;
}
.gbp-nav__link:hover .gbp-nav__chevron,
.gbp-nav__item--has-children:hover .gbp-nav__chevron {
transform: rotate(180deg);
color: rgba(255,182,18,0.70);
} .gbp-nav__item--cta .gbp-nav__link {
background: #FFB612;
color: #07130D;
border-radius: 6px;
padding: 7px 14px;
font-weight: 700;
}
.gbp-nav__item--cta .gbp-nav__link::after { display: none; }
.gbp-nav__item--cta .gbp-nav__link:hover {
background: #FFCA44;
color: #07130D;
} .gbp-nav__dropdown::before {
content: '';
position: absolute;
top: -8px;
left: 0; right: 0;
height: 8px; }
.gbp-nav__dropdown {
position: absolute;
top: calc(100% + 6px);
left: 0;
min-width: 210px;
background: #F8F5EE;
border: 1px solid rgba(32,55,49,0.16);
border-top: 2px solid #FFB612;
border-radius: 0 0 10px 10px;
padding: 6px 0;
list-style: none;
box-shadow: 0 16px 48px rgba(7,19,13,0.25), 0 2px 8px rgba(7,19,13,0.12);
opacity: 0;
pointer-events: none;
transform: translateY(-4px);
transition: opacity .18s ease, transform .18s ease;
z-index: var(--z-dropdown);
}
.gbp-nav__dropdown--visible,
.gbp-nav__item--has-children:hover .gbp-nav__dropdown,
.gbp-nav__item--has-children:focus-within .gbp-nav__dropdown {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}
.gbp-nav__link--sub {
display: flex;
align-items: center;
padding: 10px 18px 10px 16px;
font-family: var(--font-headline);
font-size: 13px;
font-weight: 600;
text-transform: none;
letter-spacing: 0.01em;
color: #203731;
border-left: 2px solid transparent;
transition: background .14s, color .14s, border-color .14s, padding-left .14s;
}
.gbp-nav__link--sub:hover {
background: rgba(32,55,49,0.07);
color: #203731;
border-left-color: #FFB612;
padding-left: 20px;
}
.gbp-nav__item.current-menu-item .gbp-nav__link--sub,
.gbp-nav__item--active .gbp-nav__link--sub {
color: #203731;
border-left-color: #FFB612;
background: rgba(255,182,18,0.10);
} .gbp-nav-toggle {
display: none;
background: none;
border: 1px solid rgba(255,255,255,0.22);
border-radius: 6px;
color: rgba(248,245,238,0.85);
cursor: pointer;
padding: 6px 8px;
transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.gbp-nav-toggle:hover {
color: #FFB612;
border-color: rgba(255,182,18,0.35);
background: rgba(255,182,18,0.07);
}
.gbp-nav-toggle__close { display: none; }
.gbp-nav-open .gbp-nav-toggle__open  { display: none; }
.gbp-nav-open .gbp-nav-toggle__close { display: block; } @media (max-width: 1180px) {
.gbp-header__social { display: none; }
.gbp-nav__link { padding: 7px 9px; font-size: 12px; }
}
@media (max-width: 1024px) {
.gbp-nav { display: none; }
.gbp-nav-toggle { display: flex; }
}
@media (max-width: 720px) {
.gbp-header__cta,
.gbp-support-cta-btn {
display: inline-flex !important;
padding: 7px 12px !important;
font-size: 11px !important;
animation: gbp-header-pulse 2.4s ease-in-out infinite;
}
}
@keyframes gbp-header-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255,182,18,0.55); }
50%       { box-shadow: 0 0 0 6px rgba(255,182,18,0); }
}
@media (max-width: 480px) {
.gbp-header__inner { height: 58px; }
}  .gbp-nav-overlay {
position: fixed;
inset: 0;
background: rgba(2, 4, 3, 0.80);
z-index: calc(var(--z-overlay) - 1);
opacity: 0;
pointer-events: none;
transition: opacity .30s ease;
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
}
.gbp-nav-open .gbp-nav-overlay {
opacity: 1;
pointer-events: auto;
} .gbp-mobile-nav {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: min(340px, 92vw);
background: #203731;
border-right: 1px solid rgba(255,182,18,0.18);
z-index: var(--z-overlay);
transform: translateX(-100%);
transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1);
overflow-y: auto;
display: flex;
flex-direction: column;
scrollbar-width: thin;
scrollbar-color: rgba(255,182,18,0.25) transparent;
box-shadow: 4px 0 32px rgba(7,19,13,0.40);
} .gbp-mobile-nav::before {
content: '';
display: block;
height: 3px;
flex-shrink: 0;
background: linear-gradient(90deg,
#FFB612 0%,
rgba(255,182,18,0.5) 70%,
transparent 100%
);
}
.gbp-nav-open .gbp-mobile-nav { transform: translateX(0); } body.admin-bar .gbp-mobile-nav { top: 32px; }
@media screen and (max-width: 782px) {
body.admin-bar .gbp-mobile-nav { top: 46px; }
}
@media screen and (max-width: 600px) {
body.admin-bar .gbp-mobile-nav { top: 0; }
}
body.gbp-nav-open,
body.gbp-search-open { overflow: hidden; } .gbp-mobile-nav__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px 13px;
border-bottom: 1px solid rgba(255,182,18,0.14);
flex-shrink: 0;
background: #1a2f26;
position: sticky;
top: 0;
z-index: 2;
}
.gbp-mobile-nav__close {
background: none;
border: 1px solid rgba(255,255,255,0.18);
border-radius: 6px;
color: rgba(248,245,238,0.45);
cursor: pointer;
padding: 6px 8px;
display: flex;
align-items: center;
transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.gbp-mobile-nav__close:hover {
color: #FFB612;
border-color: rgba(255,182,18,0.45);
background: rgba(255,182,18,0.08);
} .gbp-mobile-nav__search {
padding: 12px 16px;
border-bottom: 1px solid rgba(255,182,18,0.10);
}
.gbp-mobile-nav__search .gbp-search-form {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.16);
}
.gbp-mobile-nav__search .gbp-search-form:focus-within {
border-color: rgba(255,182,18,0.50);
}
.gbp-mobile-nav__search .gbp-search-form__input {
color: #F8F5EE;
}
.gbp-mobile-nav__search .gbp-search-form__input::placeholder {
color: rgba(248,245,238,0.38);
}
.gbp-mobile-nav__search .gbp-search-form__btn {
color: rgba(248,245,238,0.45);
}
.gbp-mobile-nav__search .gbp-search-form__btn:hover {
color: #FFB612;
} .gbp-mobile-nav__list { list-style: none; flex: 1; padding: 6px 0; }
.gbp-mobile-nav__item { border-bottom: 1px solid rgba(255,255,255,0.06); } .gbp-mobile-nav__link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
font-family: 'Barlow Condensed', sans-serif;
font-size: 17px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.09em;
color: rgba(248,245,238,0.85);
text-decoration: none;
transition: color .15s, background .15s, padding-left .15s, border-color .15s;
border-left: 3px solid transparent;
}
.gbp-mobile-nav__link:hover {
color: #FFB612;
background: rgba(255,182,18,0.08);
padding-left: 26px;
border-left-color: #FFB612;
}
.gbp-mobile-nav__item--active > .gbp-mobile-nav__link,
.gbp-mobile-nav__item--active > .gbp-mobile-nav__parent-row > .gbp-mobile-nav__link {
color: #FFB612;
border-left-color: #FFB612;
background: rgba(255,182,18,0.10);
font-weight: 800;
} .gbp-mobile-nav__item--cta > .gbp-mobile-nav__link {
color: #FFB612;
font-weight: 800;
border-left-color: rgba(255,182,18,0.4);
}
.gbp-mobile-nav__item--cta > .gbp-mobile-nav__link:hover {
background: rgba(255,182,18,0.12);
border-left-color: #FFB612;
padding-left: 26px;
} .gbp-mobile-nav__parent-row {
display: flex;
align-items: stretch;
}
.gbp-mobile-nav__parent-row .gbp-mobile-nav__link {
flex: 1;
}
.gbp-mobile-nav__parent-btn {
background: none;
border: none;
border-left: 1px solid rgba(255,255,255,0.10);
color: rgba(248,245,238,0.32);
cursor: pointer;
padding: 0 16px;
flex-shrink: 0;
display: flex;
align-items: center;
transition: color .15s, background .15s;
}
.gbp-mobile-nav__parent-btn:hover { color: rgba(248,245,238,0.85); background: rgba(255,182,18,0.08); }
.gbp-mobile-nav__parent-btn[aria-expanded="true"] {
color: #FFB612;
transform: rotate(180deg);
} .gbp-mobile-nav__parent-btn--fc {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 14px 20px;
background: none;
border: none;
border-left: 3px solid transparent;
cursor: pointer;
font-family: 'Barlow Condensed', sans-serif;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.09em;
color: rgba(248,245,238,0.85);
transition: color .15s, background .15s, border-color .15s;
}
.gbp-mobile-nav__parent-btn--fc:hover {
color: #FFB612;
background: rgba(255,182,18,0.08);
border-left-color: #FFB612;
}
.gbp-mobile-nav__item--active .gbp-mobile-nav__parent-btn--fc {
border-left-color: #FFB612;
background: rgba(255,182,18,0.10);
color: #FFB612;
font-weight: 800;
}
.gbp-mobile-nav__parent-btn--fc[aria-expanded="true"] {
transform: none;
color: #FFB612;
border-left-color: #FFB612;
background: rgba(255,182,18,0.08);
}
.gbp-mobile-nav__chevron-icon {
flex-shrink: 0;
color: rgba(248,245,238,0.28);
transition: transform .18s, color .18s;
}
.gbp-mobile-nav__parent-btn--fc[aria-expanded="true"] .gbp-mobile-nav__chevron-icon {
transform: rotate(180deg);
color: #FFB612;
} .gbp-mobile-nav__sub {
list-style: none;
background: rgba(0,0,0,0.18);
border-top: 1px solid rgba(255,182,18,0.10);
display: none;
}
.gbp-mobile-nav__sub--open { display: block; }
.gbp-mobile-nav__sub .gbp-mobile-nav__item { border-bottom-color: rgba(255,255,255,0.04); }
.gbp-mobile-nav__sub .gbp-mobile-nav__link {
padding: 13px 20px 13px 32px;
font-family: 'Barlow Condensed', sans-serif;
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.07em;
color: rgba(248,245,238,0.60);
border-left: 2px solid transparent;
}
.gbp-mobile-nav__sub .gbp-mobile-nav__link:hover {
color: #FFB612;
padding-left: 38px;
border-left-color: #FFB612;
background: rgba(255,182,18,0.08);
}
.gbp-mobile-nav__sub .gbp-mobile-nav__item--active .gbp-mobile-nav__link {
color: #FFB612;
border-left-color: #FFB612;
background: rgba(255,182,18,0.10);
font-weight: 700;
} .gbp-mobile-nav__cta-wrap {
padding: 16px 16px;
border-top: 1px solid rgba(255,182,18,0.12);
flex-shrink: 0;
}
.gbp-mobile-nav__cta-wrap .gbp-btn {
padding: 20px 28px !important;
font-size: 17px !important;
letter-spacing: 0.08em;
width: 100%;
text-align: center;
justify-content: center;
min-height: 58px !important;
} .gbp-mobile-nav__social {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 16px 20px;
border-top: 1px solid rgba(255,182,18,0.10);
flex-shrink: 0;
}
.gbp-mobile-nav__social a {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
height: 48px;
border-radius: 10px;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,182,18,0.15);
color: #d49a0a;
transition: color .15s, background .15s, border-color .15s;
text-decoration: none;
}
.gbp-mobile-nav__social a svg { width: 20px; height: 20px; }
.gbp-mobile-nav__social a:hover {
color: #FFB612;
background: rgba(255,182,18,0.15);
border-color: rgba(255,182,18,0.45);
}  .gbp-main {
flex: 1;
background:
radial-gradient(circle at 88% 12%, rgba(255,182,18,0.05) 0%, transparent 32%),
radial-gradient(circle at 12% 62%, rgba(32,55,49,0.22) 0%, transparent 42%),
linear-gradient(180deg,
#050C08  0%,
#0A1A12 22%,
#0D1E15 50%,
#0A1A12 76%,
#050C08 100%
);
}  #section-rychle-spravy {
position: relative;
z-index: 2;
}
#section-rychle-spravy::after {
content: '';
position: absolute;
bottom: -48px;
left: 0;
right: 0;
height: 96px;
background: linear-gradient(to bottom,
transparent                 0%,
rgba(5,12,8,0.52)          35%,
rgba(5,12,8,0.72)          50%,
rgba(5,12,8,0.52)          65%,
transparent                100%
);
pointer-events: none;
z-index: 4;
} .gbp-home-top {
display: grid;
grid-template-columns: 1fr 380px;
gap: 0;
background: var(--gbp-bg-dark);
}
.gbp-home-top__main { min-height: 480px; }
.gbp-home-top__side {
display: flex;
flex-direction: column;
border-left: 1px solid var(--gbp-divider);
} .gbp-home-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
background: var(--gbp-bg-dark);
}
.gbp-home-split__col {
padding: var(--section-padding-y) var(--section-padding-x);
}
.gbp-home-split__col + .gbp-home-split__col {
border-left: 1px solid var(--gbp-divider);
}
@media (max-width: 1100px) {
.gbp-home-top { grid-template-columns: 1fr; }
.gbp-home-top__side { border-left: none; border-top: 1px solid var(--gbp-divider); display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.gbp-home-top__side { grid-template-columns: 1fr; }
.gbp-home-split { grid-template-columns: 1fr; }
.gbp-home-split__col + .gbp-home-split__col { border-left: none; border-top: 1px solid var(--gbp-divider); }
}  .gbp-hero {
position: relative;
background: #142B25;
overflow: hidden;
} .gbp-hero__bg {
position: absolute;
inset: 0;
z-index: 0;
}
.gbp-hero__bg img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 55%;
}
.gbp-hero__bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
105deg,
rgba(20, 43, 37, 0.97) 0%,
rgba(20, 43, 37, 0.88) 30%,
rgba(20, 43, 37, 0.72) 55%,
rgba(20, 43, 37, 0.55) 100%
);
} .gbp-hero__body {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 420px;
gap: var(--space-8);
align-items: center;
width: 100%;
max-width: var(--width-content);
margin: 0 auto;
padding: 60px var(--section-padding-x) 48px;
} .gbp-hero__main {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.gbp-hero__eyebrow {
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 700;
text-transform: uppercase;
letter-spacing: var(--ls-wider);
color: var(--packers-gold);
margin: 0 0 16px;
}
.gbp-hero__title {
font-family: var(--font-headline);
font-size: clamp(2.4rem, 4.5vw, 3.75rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: var(--gbp-white-soft);
line-height: 1.05;
margin: 0 0 20px;
}
.gbp-hero__title-gold {
display: block;
color: var(--packers-gold);
font-style: normal;
text-transform: none;
font-size: 0.9em;
letter-spacing: -0.01em;
} .gbp-hero__title-sk {
background: linear-gradient(90deg, #ffffff 0%, #0B4EA2 50%, #EE1C25 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .gbp-hero__title-cz {
background: linear-gradient(90deg, #11457E 0%, #ffffff 50%, #D7141A 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gbp-hero__excerpt {
font-size: var(--text-md);
color: rgba(248, 248, 242, 0.80);
line-height: 1.65;
margin: 0 0 32px;
max-width: 500px;
}
.gbp-hero__actions {
display: flex;
gap: var(--space-3);
align-items: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
.gbp-hero__trip-link {
display: inline-flex;
align-items: center;
gap: 5px;
color: var(--packers-gold);
font-family: var(--font-headline);
font-size: var(--text-sm);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
text-decoration: none;
transition: opacity 0.15s;
}
.gbp-hero__trip-link:hover { opacity: 0.75; } .gbp-hero__card {
background: rgba(7, 19, 13, 0.82);
border: 1px solid rgba(255, 182, 18, 0.32);
border-radius: 12px;
overflow: hidden;
backdrop-filter: blur(6px);
}
.gbp-hero__card-head {
padding: 18px 24px 14px;
border-bottom: 1px solid rgba(255, 182, 18, 0.18);
text-align: center;
}
.gbp-hero__card-eyebrow {
font-family: var(--font-headline);
font-size: 1.45rem;
font-weight: 800;
font-style: italic;
color: var(--packers-gold);
text-transform: uppercase;
letter-spacing: 0.03em;
margin: 0 0 5px;
line-height: 1.1;
}
.gbp-hero__card-sub {
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 700;
color: var(--gbp-white-soft);
text-transform: uppercase;
letter-spacing: 0.09em;
margin: 0;
}
.gbp-hero__card-img {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #07130D;
position: relative;
}
.gbp-hero__card-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 65%;
display: block;
} .gbp-card-slider__track {
position: absolute;
inset: 0;
}
.gbp-card-slider__slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.6s ease;
}
.gbp-card-slider__slide.is-active {
opacity: 1;
}
.gbp-card-slider__slide img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 65%;
display: block;
} .gbp-card-slider__prev,
.gbp-card-slider__next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 3;
background: rgba(0, 0, 0, 0.45);
border: 1px solid rgba(255, 182, 18, 0.3);
color: var(--gbp-white-soft);
font-size: 22px;
line-height: 1;
width: 32px;
height: 32px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s, background 0.2s;
padding: 0;
}
.gbp-card-slider__prev { left: 8px; }
.gbp-card-slider__next { right: 8px; }
.gbp-card-slider:hover .gbp-card-slider__prev,
.gbp-card-slider:hover .gbp-card-slider__next { opacity: 1; }
.gbp-card-slider__prev:hover,
.gbp-card-slider__next:hover { background: rgba(255, 182, 18, 0.25); } .gbp-card-slider__dots {
position: absolute;
bottom: 9px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 6px;
z-index: 3;
}
.gbp-card-slider__dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.35);
border: none;
cursor: pointer;
padding: 0;
transition: background 0.2s, transform 0.2s;
}
.gbp-card-slider__dot.is-active {
background: var(--packers-gold);
transform: scale(1.35);
} @media (max-width: 768px) {
.gbp-card-slider__prev,
.gbp-card-slider__next { opacity: 0.8; }
}
.gbp-hero__card-body {
padding: 16px 20px 18px;
}
.gbp-hero__card-text {
font-size: 13px;
color: rgba(248, 248, 242, 0.72);
line-height: 1.6;
margin: 0 0 14px;
} .gbp-hero__card-nav {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 7px;
}
.gbp-hero__card-nav-btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
padding: 10px 4px;
background: rgba(32, 55, 49, 0.55);
border: 1px solid rgba(255, 182, 18, 0.18);
border-radius: 8px;
color: var(--gbp-white-soft);
font-family: var(--font-headline);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
text-decoration: none;
text-align: center;
line-height: 1.2;
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gbp-hero__card-nav-btn:hover {
background: rgba(255, 182, 18, 0.14);
border-color: rgba(255, 182, 18, 0.45);
color: var(--packers-gold);
}
.gbp-hero__card-nav-icon {
display: flex;
align-items: center;
justify-content: center;
color: var(--packers-gold);
width: 24px;
height: 24px;
} .gbp-hero__card-nav-icon--img img {
width: 24px;
height: 24px;
filter: brightness(0) saturate(100%) invert(73%) sepia(45%) saturate(635%) hue-rotate(357deg) brightness(104%);
}
.gbp-hero__card-nav-btn:hover .gbp-hero__card-nav-icon--img img {
filter: brightness(0) saturate(100%) invert(73%) sepia(45%) saturate(700%) hue-rotate(357deg) brightness(115%);
} .gbp-hero__hl-row {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1px solid rgba(255, 182, 18, 0.14);
}
.gbp-hero__hl-card {
display: flex;
align-items: center;
gap: 14px;
padding: 20px 24px;
background: rgba(5, 14, 9, 0.80);
border-right: 1px solid rgba(255, 182, 18, 0.10);
text-decoration: none;
transition: background 0.15s;
}
.gbp-hero__hl-card:last-child { border-right: none; }
.gbp-hero__hl-card:hover { background: rgba(32, 55, 49, 0.70); }
.gbp-hero__hl-icon {
flex-shrink: 0;
width: 46px;
height: 46px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 2px solid var(--packers-gold);
color: var(--packers-gold);
}
.gbp-hero__hl-body { flex: 1; min-width: 0; }
.gbp-hero__hl-title {
font-family: var(--font-headline);
font-size: var(--text-sm);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--gbp-white-soft);
margin: 0 0 4px;
line-height: 1.2;
}
.gbp-hero__hl-text {
font-size: 12px;
color: var(--gbp-muted);
line-height: 1.5;
margin: 0;
}
.gbp-hero__hl-arrow {
flex-shrink: 0;
color: var(--packers-gold);
font-size: 20px;
line-height: 1;
opacity: 0.6;
transition: opacity 0.15s, transform 0.15s;
}
.gbp-hero__hl-card:hover .gbp-hero__hl-arrow {
opacity: 1;
transform: translateX(4px);
} @media (max-width: 1024px) {
.gbp-hero__body {
grid-template-columns: 1fr 360px;
gap: var(--space-6);
padding-top: 48px;
}
}
@media (max-width: 768px) {
.gbp-hero__body {
grid-template-columns: 1fr;
padding: 40px var(--section-padding-x) 32px;
}
.gbp-hero__title { font-size: clamp(2rem, 7vw, 2.6rem); }
.gbp-hero__excerpt { font-size: var(--text-sm); margin-bottom: 24px; }
.gbp-hero__hl-row { grid-template-columns: repeat(2, 1fr); }
.gbp-hero__hl-card:nth-child(2) { border-right: none; }
.gbp-hero__hl-card:nth-child(3) { border-right: 1px solid rgba(255,182,18,0.10); border-top: 1px solid rgba(255,182,18,0.10); }
.gbp-hero__hl-card:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,182,18,0.10); }
.gbp-hero__bg::after {
background: linear-gradient(
to bottom,
rgba(2, 4, 3, 0.88) 0%,
rgba(2, 4, 3, 0.75) 100%
);
}
}
@media (max-width: 480px) {
.gbp-hero__body { padding: 32px var(--section-padding-x) 24px; }
.gbp-hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
.gbp-hero__actions .gbp-btn { justify-content: center; }
.gbp-hero__hl-row { grid-template-columns: 1fr; }
.gbp-hero__hl-card { border-right: none !important; border-top: 1px solid rgba(255,182,18,0.10); }
.gbp-hero__hl-card:first-child { border-top: none; }
.gbp-hero__card-nav { grid-template-columns: repeat(4, 1fr); }
.gbp-hero__card-nav-btn { font-size: 9px; padding: 8px 2px; }
}   .gbp-quick-news {
flex: 1;
} .gbp-quick-news__list { margin-top: var(--space-4); }
.gbp-quick-news__empty { color: var(--gbp-muted); font-size: var(--text-sm); padding: var(--space-4) 0; margin: 0; font-style: italic; }
.gbp-quick-news__live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ff4444; animation: qn-pulse 1.8s ease-in-out infinite; }
@keyframes qn-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.gbp-quick-news__header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.gbp-quick-news__title { font-size: 15px; font-weight: 700; color: var(--gbp-white-soft); text-transform: uppercase; letter-spacing: .06em; margin: 0; } .gbp-game-center {
background: var(--gbp-card-dark);
padding: var(--space-6);
border-top: 1px solid var(--gbp-divider);
}
.gbp-game-center__matchup {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-6);
margin: var(--space-6) 0;
}
.gbp-game-center__team { text-align: center; }
.gbp-game-center__logo {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--gbp-bg-section);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-2);
font-family: var(--font-headline);
font-size: 1.5rem;
font-weight: 800;
color: var(--packers-gold);
overflow: hidden;
}
.gbp-game-center__logo img { width: 100%; height: 100%; object-fit: contain; }
.gbp-game-center__team-name {
font-family: var(--font-headline);
font-size: var(--text-sm);
font-weight: 700;
text-transform: uppercase;
color: var(--gbp-white-soft);
}
.gbp-game-center__vs {
font-family: var(--font-headline);
font-size: var(--text-h3);
font-weight: 700;
color: var(--gbp-muted-dark);
}
.gbp-game-center__meta {
display: flex;
flex-direction: column;
gap: var(--space-2);
margin-bottom: var(--space-5);
}
.gbp-game-center__meta-row {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--gbp-muted);
}
.gbp-game-center__time { color: var(--packers-gold); font-weight: 700; font-size: var(--text-h4); text-align: center; margin-bottom: var(--space-4); }
.gbp-game-center__venue-icon, .gbp-game-center__date-icon { color: var(--packers-gold); }
.gbp-game-center__ctas { display: flex; flex-direction: column; gap: var(--space-3); }
.gbp-game-center__placeholder {
text-align: center;
padding: var(--space-8) var(--space-4);
color: var(--gbp-muted);
font-size: var(--text-sm);
}
.gbp-countdown {
display: flex;
justify-content: center;
gap: var(--space-4);
margin: var(--space-5) 0;
padding: var(--space-4);
background: rgba(0,0,0,0.2);
border-radius: var(--radius-md);
}
.gbp-countdown__unit { text-align: center; }
.gbp-countdown__value {
font-family: var(--font-headline);
font-size: 1.75rem;
font-weight: 800;
color: var(--packers-gold);
line-height: 1;
display: block;
}
.gbp-countdown__label { font-size: 10px; text-transform: uppercase; letter-spacing: var(--ls-wider); color: var(--gbp-muted-dark); } .gbp-latest-articles {
background: var(--gbp-bg-dark);
padding: var(--section-padding-y) 0;
}
.gbp-latest-articles__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-6);
margin-top: var(--space-8);
}
.gbp-latest-articles__footer { margin-top: var(--space-10); text-align: center; }
@media (max-width: 1024px) { .gbp-latest-articles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gbp-latest-articles__grid { grid-template-columns: 1fr; } } .gbp-fanclub-cta {
background: var(--packers-green);
border-top: 2px solid var(--gbp-divider-gold);
border-bottom: 2px solid var(--gbp-divider-gold);
padding: var(--section-padding-y) 0;
position: relative;
overflow: hidden;
text-align: center;
}
.gbp-fanclub-cta::before {
content: 'G';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: var(--font-headline);
font-size: 32rem;
font-weight: 800;
color: rgba(255, 182, 18, 0.03);
pointer-events: none;
user-select: none;
line-height: 1;
}
.gbp-fanclub-cta__inner { position: relative; z-index: 1; }
.gbp-fanclub-cta__eyebrow { color: var(--packers-gold); margin-bottom: var(--space-4); }
.gbp-fanclub-cta__title {
font-family: var(--font-headline);
font-size: var(--text-h1);
font-weight: 800;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: var(--gbp-white-soft);
margin-bottom: var(--space-5);
}
.gbp-fanclub-cta__desc { color: rgba(248, 248, 242, 0.75); max-width: 540px; margin: 0 auto var(--space-8); line-height: var(--lh-relaxed); }
.gbp-fanclub-cta__highlights {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-10);
margin-bottom: var(--space-10);
flex-wrap: wrap;
}
.gbp-fanclub-cta__highlight { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.gbp-fanclub-cta__highlight-icon { font-size: 1.75rem; color: var(--packers-gold); line-height: 1; }
.gbp-fanclub-cta__highlight-label { font-family: var(--font-headline); font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--gbp-white-soft); } .gbp-history-banner {
position: relative;
min-height: 380px;
display: flex;
align-items: center;
overflow: hidden;
background: var(--gbp-bg-deep);
}
.gbp-history-banner__bg {
position: absolute;
inset: 0;
z-index: 0;
filter: grayscale(40%) brightness(0.6);
}
.gbp-history-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.gbp-history-banner__bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(2,4,3,0.88) 0%, rgba(32,55,49,0.65) 60%, rgba(2,4,3,0.40) 100%);
}
.gbp-history-banner__content {
position: relative;
z-index: 1;
padding: var(--space-16) var(--section-padding-x);
max-width: 560px;
}
.gbp-history-banner__quote {
font-family: var(--font-headline);
font-size: var(--text-display);
font-weight: 800;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: var(--gbp-white-soft);
line-height: var(--lh-tight);
margin-bottom: var(--space-5);
}
.gbp-history-banner__sub { color: rgba(248, 248, 242, 0.65); margin-bottom: var(--space-8); font-style: italic; } .gbp-community-preview {
background: var(--gbp-bg-section);
padding: var(--section-padding-y) 0;
border-top: 1px solid var(--gbp-divider);
}
.gbp-community-preview__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-4);
margin: var(--space-8) 0;
}
.gbp-community-card {
background: var(--gbp-card-dark);
border: 1px solid var(--gbp-card-border);
border-radius: var(--radius-lg);
padding: var(--space-5);
}
.gbp-community-card__user  { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.gbp-community-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--packers-green); display: flex; align-items: center; justify-content: center; font-family: var(--font-headline); font-weight: 700; color: var(--packers-gold); font-size: var(--text-sm); flex-shrink: 0; }
.gbp-community-card__name  { font-size: var(--text-sm); font-weight: 600; color: var(--gbp-white-soft); }
.gbp-community-card__time  { font-size: 11px; color: var(--gbp-muted-dark); }
.gbp-community-card__text  { font-size: var(--text-sm); color: var(--gbp-muted); line-height: var(--lh-snug); }
.gbp-community-preview__placeholder { text-align: center; padding: var(--space-12); color: var(--gbp-muted); }
.gbp-community-preview__placeholder .gbp-section-title { font-size: var(--text-h3); margin-bottom: var(--space-3); }
.gbp-community-preview__footer { text-align: center; margin-top: var(--space-6); }
@media (max-width: 1024px) { .gbp-community-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gbp-community-preview__grid { grid-template-columns: 1fr; } } .gbp-top-stories { padding: var(--section-padding-y) var(--section-padding-x); }
.gbp-top-stories__list { list-style: none; margin-top: var(--space-6); } .gbp-standings {
background: var(--gbp-card-dark);
border: 1px solid var(--gbp-card-border);
border-radius: var(--radius-lg);
overflow: hidden;
margin: var(--section-padding-y) var(--section-padding-x);
}
.gbp-standings__header {
padding: var(--space-5) var(--space-6);
border-bottom: 1px solid var(--gbp-divider);
display: flex;
align-items: center;
justify-content: space-between;
}
.gbp-standings table { width: 100%; }
.gbp-standings th {
padding: 10px var(--space-6);
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: var(--ls-wider);
color: var(--gbp-muted-dark);
text-align: left;
background: rgba(0,0,0,0.2);
}
.gbp-standings th:not(:first-child) { text-align: center; }
.gbp-standings td {
padding: 12px var(--space-6);
border-top: 1px solid var(--gbp-divider);
font-size: var(--text-sm);
color: var(--gbp-white-soft);
}
.gbp-standings td:not(:first-child) { text-align: center; font-family: var(--font-mono, monospace); }
.gbp-standings__team-cell { display: flex; align-items: center; gap: var(--space-3); }
.gbp-standings__team-abbr { font-family: var(--font-headline); font-weight: 700; }
.gbp-standings tr.gbp-standings__packers td { color: var(--packers-gold); font-weight: 700; }
.gbp-standings tr.gbp-standings__packers .gbp-standings__team-cell::before {
content: '';
display: block;
width: 3px;
height: 24px;
background: var(--packers-gold);
border-radius: 2px;
flex-shrink: 0;
}
.gbp-standings__footer { padding: var(--space-4) var(--space-6); border-top: 1px solid var(--gbp-divider); } .gbp-season-panel {
background: var(--gbp-bg-section);
border-top: 1px solid var(--gbp-divider);
border-bottom: 1px solid var(--gbp-divider);
padding: var(--space-8) 0;
}
.gbp-season-panel__inner {
display: flex;
align-items: stretch;
gap: 0;
}
.gbp-season-panel__col {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: var(--space-5) var(--space-6);
border-right: 1px solid var(--gbp-divider);
}
.gbp-season-panel__col:last-child { border-right: none; }
.gbp-season-panel__label { font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-wider); color: var(--gbp-muted-dark); margin-bottom: var(--space-2); }
.gbp-season-panel__value { font-family: var(--font-headline); font-size: var(--text-h3); font-weight: 800; color: var(--gbp-white-soft); }
.gbp-season-panel__col--highlight .gbp-season-panel__value { color: var(--packers-gold); }
@media (max-width: 768px) {
.gbp-season-panel__inner { flex-wrap: wrap; }
.gbp-season-panel__col { flex: 1 0 50%; border-bottom: 1px solid var(--gbp-divider); }
.gbp-season-panel__col:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
.gbp-season-panel__col { flex: 1 0 100%; border-right: none; }
.gbp-season-panel__col:last-child { border-bottom: none; }
} .gbp-lambeau-banner {
position: relative;
min-height: 380px;
display: flex;
align-items: center;
overflow: hidden;
background: var(--gbp-bg-deep);
}
.gbp-lambeau-banner__bg {
position: absolute;
inset: 0;
z-index: 0;
}
.gbp-lambeau-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.gbp-lambeau-banner__bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(32,55,49,0.88) 0%, rgba(32,55,49,0.60) 55%, rgba(2,4,3,0.40) 100%);
}
.gbp-lambeau-banner__content {
position: relative;
z-index: 1;
padding: var(--space-16) var(--section-padding-x);
max-width: 560px;
}
.gbp-lambeau-banner__title {
font-family: var(--font-headline);
font-size: var(--text-display);
font-weight: 800;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: var(--gbp-white-soft);
line-height: var(--lh-tight);
margin-bottom: var(--space-5);
}
.gbp-lambeau-banner__text { color: rgba(248, 248, 242, 0.75); margin-bottom: var(--space-8); line-height: var(--lh-relaxed); }    .gbp-footer {
position: relative;
background: #203731;
border-top: 2px solid var(--packers-gold);
}
.gbp-footer__top {
padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 60px) clamp(40px, 5vw, 60px);
}
.gbp-footer__inner {
display: grid;
grid-template-columns: 1.8fr 1fr 1fr 1fr;
gap: clamp(28px, 4vw, 56px);
max-width: var(--width-site);
margin-inline: auto;
align-items: start;
} .gbp-footer__brand .gbp-logo { max-width: 152px; display: block; }
.gbp-footer__tagline {
color: rgba(248,245,238,0.65);
font-size: .875rem;
line-height: 1.65;
margin-top: 14px;
max-width: 260px;
} .gbp-footer__social {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 20px;
}
.gbp-footer__social-link {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 7px 13px 7px 11px;
border-radius: 7px;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.14);
color: #d49a0a;
font-size: 11.5px;
font-family: var(--font-headline);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
text-decoration: none;
transition: background .18s, color .18s, border-color .18s;
}
.gbp-footer__social-link:hover {
background: rgba(255,182,18,0.15);
color: #FFB612;
border-color: rgba(255,182,18,0.35);
} .gbp-footer__email {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 18px;
color: rgba(248,245,238,0.50);
font-size: .8125rem;
text-decoration: none;
transition: color .18s;
}
.gbp-footer__email:hover { color: #FFB612; } .gbp-footer__col-title {
font-family: var(--font-headline);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: #FFB612;
margin-bottom: 16px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255,182,18,0.22);
}
.gbp-footer__nav {
list-style: none;
display: flex;
flex-direction: column;
gap: 2px;
}
.gbp-footer__nav a {
display: flex;
align-items: center;
gap: 6px;
padding: 5px 0;
font-size: .875rem;
color: rgba(248,245,238,0.60);
text-decoration: none;
border-left: 2px solid transparent;
padding-left: 0;
transition: color .16s, border-color .16s, padding-left .16s;
}
.gbp-footer__nav a::before {
content: '';
width: 4px;
height: 4px;
border-radius: 50%;
background: rgba(255,182,18,0.40);
flex-shrink: 0;
transition: background .16s;
}
.gbp-footer__nav a:hover {
color: #FFB612;
padding-left: 6px;
}
.gbp-footer__nav a:hover::before {
background: #FFB612;
} .gbp-footer__bottom {
border-top: 1px solid rgba(255,182,18,0.14);
background: rgba(0,0,0,0.18);
padding: 16px clamp(20px, 4vw, 60px);
}
.gbp-footer__bottom-inner {
max-width: var(--width-site);
margin-inline: auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
}
.gbp-footer__copy {
font-size: .72rem;
color: rgba(248,245,238,0.38);
letter-spacing: 0.01em;
}
.gbp-footer__copy strong { color: rgba(255,182,18,0.65); font-weight: 600; }
.gbp-footer__bottom-links { display: flex; gap: 18px; }
.gbp-footer__bottom-links a {
font-size: .72rem;
color: rgba(248,245,238,0.38);
text-decoration: none;
transition: color .18s;
}
.gbp-footer__bottom-links a:hover { color: rgba(255,182,18,0.85); } @media (max-width: 1024px) {
.gbp-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
.gbp-footer__brand { grid-column: 1 / -1; }
.gbp-footer__social { gap: 6px; }
}
@media (max-width: 640px) {
.gbp-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.gbp-footer__brand { grid-column: 1 / -1; }
.gbp-footer__bottom-inner { flex-direction: column; text-align: center; }
.gbp-footer__bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 380px) {
.gbp-footer__inner { grid-template-columns: 1fr; }
}   .gbp-article-hero {
background: var(--packers-green);
} .gbp-article-hero__image-wrap {
width: 100%;
max-height: 680px;
overflow: hidden;
display: block;
line-height: 0;
position: relative;
}
.gbp-article-hero__image-wrap img {
width: 100%;
height: auto;
max-height: 680px;
object-fit: cover;
object-position: center top;
display: block;
}
.gbp-article-hero__image-wrap::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 55%;
background: linear-gradient(
to bottom,
transparent 0%,
rgba(32, 55, 49, 0.55) 50%,
rgba(32, 55, 49, 0.92) 80%,
#203731 100%
);
pointer-events: none;
} .gbp-article-hero__content {
background: var(--packers-green);
border-bottom: 3px solid var(--packers-gold);
padding: var(--space-8) var(--section-padding-x);
}
.gbp-article-hero__content-inner {
max-width: var(--width-content);
margin: 0 auto;
}
.gbp-article-hero__top {
display: flex;
align-items: center;
gap: var(--space-4);
margin-bottom: var(--space-4);
}
.gbp-article-hero__top .gbp-badge {
background: var(--packers-green);
color: #f8f5ee;
border-radius: 3px;
font-family: var(--font-headline);
letter-spacing: .1em;
border: 1px solid rgba(255,255,255,0.18);
box-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.30);
}
.gbp-article-hero__title {
font-family: var(--font-headline);
font-size: clamp(1.85rem, 4.5vw, 3.25rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: #F8F5EE;
line-height: var(--lh-tight);
margin-bottom: var(--space-5);
max-width: 860px;
} .gbp-article-hero__meta-row {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: var(--space-3);
color: rgba(248,245,238,0.75);
font-family: var(--font-body);
font-size: var(--text-sm);
}
.gbp-article-hero__author {
display: inline-flex;
align-items: center;
gap: var(--space-2);
color: rgba(248,245,238,0.90);
font-weight: 600;
text-decoration: none;
transition: color var(--transition-fast);
}
.gbp-article-hero__author:hover { color: var(--packers-gold); }
.gbp-article-hero__avatar {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid rgba(255,182,18,0.50);
object-fit: cover;
flex-shrink: 0;
display: block;
}
.gbp-article-hero__avatar--fallback {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid rgba(255,182,18,0.50);
background: rgba(255,182,18,0.15);
color: var(--packers-gold);
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 700;
flex-shrink: 0;
}
.gbp-article-hero__author-name { font-weight: 600; }
.gbp-article-hero__meta-sep {
color: rgba(255,182,18,0.45);
font-weight: 400;
margin: 0 var(--space-1);
}
.gbp-article-hero__date,
.gbp-article-hero__reading {
display: inline-flex;
align-items: center;
gap: 5px;
color: rgba(248,245,238,0.70);
}
.gbp-article-hero__date svg,
.gbp-article-hero__reading svg { color: rgba(255,182,18,0.65); flex-shrink: 0; }
@media (max-width: 640px) {
.gbp-article-hero__image-wrap { max-height: 280px; }
.gbp-article-hero__image-wrap img { max-height: 280px; }
.gbp-article-hero__content { padding: var(--space-6) var(--space-5); }
.gbp-article-hero__title { font-size: clamp(1.55rem, 7vw, 2.1rem); }
.gbp-article-hero__meta-row { flex-direction: column; align-items: flex-start; gap: var(--space-2); font-size: 0.8rem; }
.gbp-article-hero__meta-sep { display: none; }
} .gbp-article-reading {
background: var(--gbp-article-bg);
position: relative;
z-index: 1;
}
.gbp-article-reading__inner {
max-width: 1080px;
margin: 0 auto;
padding: clamp(var(--space-10), 4vw, var(--space-16)) clamp(var(--space-5), 3vw, 44px);
color: var(--gbp-article-text);
font-family: var(--font-body);
font-size: 1.09375rem;
line-height: var(--lh-relaxed);
}
.gbp-article-reading__inner h2 {
font-family: var(--font-headline);
font-size: clamp(1.35rem, 2.5vw, var(--text-h3));
font-weight: 700;
color: var(--gbp-article-heading);
margin: 2em 0 0.65em;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
padding-bottom: var(--space-2);
border-bottom: 2px solid var(--gbp-article-border);
}
.gbp-article-reading__inner h3 {
font-family: var(--font-headline);
font-size: clamp(1.15rem, 2vw, var(--text-h4));
font-weight: 700;
color: var(--gbp-article-heading);
margin: 1.6em 0 0.5em;
}
.gbp-article-reading__inner h4 { font-family: var(--font-body); font-size: var(--text-h5); font-weight: 700; color: var(--gbp-article-heading); margin: 1.3em 0 0.4em; }
.gbp-article-reading__inner p { margin-bottom: 1.5em; color: var(--gbp-article-text); }
.gbp-article-reading__inner a { color: var(--gbp-article-link); border-bottom: 1px solid rgba(32,55,49,0.30); transition: color var(--transition-fast), border-color var(--transition-fast); }
.gbp-article-reading__inner a:hover { color: var(--gbp-article-link-hover); border-color: var(--gbp-article-link-hover); }
.gbp-article-reading__inner ul,
.gbp-article-reading__inner ol { padding-left: 1.6em; margin-bottom: 1.5em; color: var(--gbp-article-text); }
.gbp-article-reading__inner ul { list-style: disc; }
.gbp-article-reading__inner ol { list-style: decimal; }
.gbp-article-reading__inner li { margin-bottom: 0.5em; line-height: var(--lh-relaxed); }
.gbp-article-reading__inner ul li::marker,
.gbp-article-reading__inner ol li::marker { color: var(--packers-gold); }
.gbp-article-reading__inner blockquote {
border-left: 4px solid var(--gbp-article-blockquote);
padding: var(--space-5) var(--space-8);
margin: 2em 0;
background: rgba(32,55,49,0.04);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.gbp-article-reading__inner blockquote p { color: var(--gbp-article-muted); font-style: italic; font-size: var(--text-lg); margin-bottom: 0; line-height: 1.65; }
.gbp-article-reading__inner img { max-width: 100%; border-radius: var(--radius-md); margin: 1.75em 0; box-shadow: 0 4px 18px rgba(0,0,0,0.12); }
.gbp-article-reading__inner figure { margin: 1.75em 0; }
.gbp-article-reading__inner figcaption { color: var(--gbp-article-muted); font-size: var(--text-sm); text-align: center; margin-top: var(--space-2); }
.gbp-article-reading__inner hr { border: none; border-top: 2px solid var(--gbp-article-border); margin: 2.5em 0; }
.gbp-article-reading__inner code { background: #F4F4F0; color: var(--packers-green); padding: 2px 6px; border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.88em; }
.gbp-article-reading__inner pre { background: #1A1A1A; color: #F8F8F2; padding: var(--space-5); border-radius: var(--radius-md); overflow-x: auto; margin-bottom: 1.5em; }
.gbp-article-reading__inner pre code { background: none; color: inherit; padding: 0; }
.gbp-article-reading__inner table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: var(--text-sm); }
.gbp-article-reading__inner th { background: var(--packers-green); color: var(--gbp-white-soft); font-family: var(--font-headline); font-weight: 700; text-transform: uppercase; padding: var(--space-3) var(--space-4); text-align: left; letter-spacing: var(--ls-wide); }
.gbp-article-reading__inner td { padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--gbp-article-border); }
.gbp-article-reading__inner tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
.gbp-article-reading__inner { padding: var(--space-8) var(--space-4); font-size: 1rem; }
} .gbp-article-below {
background: var(--gbp-bg-dark);
padding-top: var(--space-8);
padding-bottom: var(--space-8);
}
.gbp-article-below__inner {
max-width: 1080px;
margin: 0 auto;
padding-inline: clamp(var(--space-5), 3vw, 44px);
display: flex;
flex-direction: column;
gap: var(--space-5);
} .gbp-support-cta {
position: relative;
overflow: hidden;
isolation: isolate;
background: #203731;
border: 1px solid rgba(255,182,18,0.22);
border-radius: var(--radius-lg);
padding: clamp(28px, 4vw, 52px);
min-height: 240px;
display: flex;
align-items: center;
transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.gbp-support-cta:hover {
border-color: rgba(255,182,18,0.42);
box-shadow: 0 16px 48px rgba(0,0,0,0.50), 0 0 28px rgba(255,182,18,0.08);
transform: translateY(-2px);
} .gbp-support-cta::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, rgba(255,182,18,0.40) 20%, rgba(255,182,18,1) 50%, rgba(255,182,18,0.40) 80%, transparent 100%);
z-index: 4;
animation: gbp-gold-line-pulse 4s ease-in-out infinite;
} .gbp-support-cta__media {
position: absolute;
top: 0; right: 0; bottom: 0;
width: 58%;
z-index: 0;
overflow: hidden;
}
.gbp-support-cta__media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
display: block;
transition: transform 0.5s ease;
}
.gbp-support-cta:hover .gbp-support-cta__media img { transform: scale(1.05); } .gbp-support-cta__media::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg,
#203731 0%,
rgba(32,55,49,0.96) 22%,
rgba(32,55,49,0.55) 50%,
rgba(32,55,49,0.22) 78%,
rgba(32,55,49,0.32) 100%);
box-shadow: inset 0 0 70px 24px rgba(32,55,49,0.55);
pointer-events: none;
} .gbp-support-cta__bg-glow {
position: absolute;
top: -50px;
left: 32%;
width: 280px;
height: 280px;
background: radial-gradient(circle at 50% 50%, rgba(255,182,18,0.13) 0%, transparent 65%);
z-index: 1;
pointer-events: none;
animation: gbp-glow-breathe 5s ease-in-out infinite;
} .gbp-support-cta__content {
position: relative;
z-index: 2;
max-width: 560px;
}
.gbp-support-cta__eyebrow {
display: block;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--packers-gold);
margin-bottom: var(--space-3);
}
.gbp-support-cta__headline {
font-family: var(--font-headline);
font-size: clamp(1.6rem, 3.5vw, 2.4rem);
font-weight: 800;
color: #F8F5EE;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
line-height: 1.1;
margin: 0 0 var(--space-4) 0;
text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.gbp-support-cta__sub {
font-size: 0.9rem;
color: rgba(248,248,242,0.62);
line-height: 1.55;
max-width: 440px;
margin: 0 0 var(--space-6) 0;
} .gbp-support-cta__btn {
display: inline-flex;
align-items: center;
gap: var(--space-2);
padding: 15px 36px;
background: var(--packers-gold);
color: #203731;
font-family: var(--font-headline);
font-size: 1rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
text-decoration: none;
border-radius: var(--radius-md);
position: relative;
overflow: hidden;
transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
border: none;
cursor: pointer;
} .gbp-support-cta__btn::before {
content: '';
position: absolute;
top: 0;
left: -120%;
width: 65%;
height: 100%;
background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
transform: skewX(-18deg);
transition: left 0.5s ease;
pointer-events: none;
}
.gbp-support-cta__btn:hover {
background: #FFC82A;
transform: scale(1.04);
box-shadow: 0 6px 28px rgba(255,182,18,0.42);
color: #203731;
text-decoration: none;
}
.gbp-support-cta__btn:hover::before { left: 140%; } @keyframes gbp-gold-line-pulse {
0%, 100% { opacity: 0.65; }
50% { opacity: 1; }
}
@keyframes gbp-glow-breathe {
0%, 100% { opacity: 0.7; transform: scale(1); }
50% { opacity: 1; transform: scale(1.1); }
} @media (max-width: 768px) {
.gbp-support-cta {
flex-direction: column;
align-items: stretch;
padding: 0;
min-height: 0;
}
.gbp-support-cta__media {
position: relative;
width: 100%;
height: 170px;
}
.gbp-support-cta__media img { object-position: center 28%; } .gbp-support-cta__media::after {
background: linear-gradient(180deg,
rgba(32,55,49,0.10) 0%,
rgba(32,55,49,0.45) 45%,
rgba(32,55,49,0.88) 72%,
#203731 100%);
box-shadow: none;
}
.gbp-support-cta__content {
max-width: 100%;
padding: var(--space-2) clamp(22px, 6vw, 32px) clamp(26px, 7vw, 34px);
margin-top: calc(-1 * var(--space-5));
}
.gbp-support-cta__bg-glow { display: none; }
.gbp-support-cta__btn { width: 100%; justify-content: center; padding: 16px 28px; }
}
@media (prefers-reduced-motion: reduce) {
.gbp-support-cta,
.gbp-support-cta__bg-glow,
.gbp-support-cta::before { animation: none; }
.gbp-support-cta__btn::before { display: none; }
.gbp-support-cta,
.gbp-support-cta__media img { transition: none; }
} .gbp-article-comments-wrap {
background: var(--gbp-bg-dark);
border-top: 1px solid var(--gbp-divider-gold);
padding: var(--space-12) 0 var(--space-16);
}
.gbp-article-comments-inner {
max-width: 1080px;
margin: 0 auto;
padding-inline: clamp(var(--space-5), 3vw, 44px);
} .gbp-comments__header {
margin-bottom: var(--space-8);
padding-bottom: var(--space-6);
border-bottom: 1px solid var(--gbp-divider);
}
.gbp-comments__title {
font-family: var(--font-headline);
font-size: var(--text-h3);
font-weight: 700;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: var(--gbp-white-soft);
display: flex;
align-items: center;
gap: var(--space-3);
margin: 0;
}
.gbp-comments__count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 28px;
height: 28px;
padding: 0 var(--space-2);
background: rgba(255,182,18,0.14);
border: 1px solid rgba(255,182,18,0.28);
border-radius: var(--radius-pill);
font-size: var(--text-sm);
font-weight: 700;
color: var(--packers-gold);
font-family: var(--font-body);
letter-spacing: 0;
text-transform: none;
} .gbp-comment-auth {
background: var(--gbp-card-dark);
border: 1px solid var(--gbp-card-border);
border-radius: var(--radius-lg);
padding: var(--space-10) var(--space-8);
text-align: center;
margin-bottom: var(--space-8);
}
.gbp-comment-auth__icon { color: rgba(255,182,18,0.50); margin-bottom: var(--space-4); }
.gbp-comment-auth__title {
font-family: var(--font-headline);
font-size: var(--text-h4);
font-weight: 700;
color: var(--gbp-white-soft);
text-transform: uppercase;
margin-bottom: var(--space-2);
}
.gbp-comment-auth__desc { font-size: var(--text-sm); color: var(--gbp-muted); margin-bottom: var(--space-6); max-width: 400px; margin-inline: auto; }
.gbp-comment-auth__actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; } #respond {
background: var(--gbp-card-dark);
border: 1px solid var(--gbp-card-border);
border-radius: var(--radius-lg);
padding: var(--space-6);
margin-bottom: var(--space-8);
transition: border-color var(--transition-base);
}
#respond:focus-within { border-color: rgba(255,182,18,0.40); }
#reply-title {
font-family: var(--font-headline);
font-size: var(--text-h4);
font-weight: 700;
color: var(--gbp-white-soft);
text-transform: uppercase;
margin-bottom: var(--space-5);
display: flex;
align-items: center;
gap: var(--space-3);
}
#reply-title small { font-size: var(--text-sm); font-weight: 400; text-transform: none; letter-spacing: 0; }
#reply-title small a { color: var(--packers-gold); text-decoration: none; font-family: var(--font-body); }
#reply-title small a:hover { text-decoration: underline; }
.gbp-composer__user {
display: flex;
align-items: center;
gap: var(--space-3);
margin-bottom: var(--space-5);
padding-bottom: var(--space-4);
border-bottom: 1px solid var(--gbp-divider);
}
.gbp-composer__avatar-img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
border: 2px solid rgba(255,182,18,0.35);
flex-shrink: 0;
display: block;
}
.gbp-composer__username { font-size: var(--text-sm); font-weight: 600; color: var(--gbp-white-soft); }
.gbp-comment-composer { display: flex; flex-direction: column; }
.gbp-composer__field { margin-bottom: var(--space-4); }
.gbp-composer__textarea {
width: 100%;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.10);
border-radius: var(--radius-md);
padding: var(--space-4);
color: var(--gbp-white-soft);
font-family: var(--font-body);
font-size: var(--text-md);
line-height: var(--lh-normal);
resize: vertical;
min-height: 110px;
transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
box-sizing: border-box;
}
.gbp-composer__textarea::placeholder { color: var(--gbp-muted-dark); }
.gbp-composer__textarea:focus { outline: none; border-color: rgba(255,182,18,0.45); box-shadow: 0 0 0 3px rgba(255,182,18,0.12); }
.gbp-composer__actions { display: flex; align-items: center; justify-content: flex-end; gap: var(--space-3); }
.comment-form-comment { margin: 0; }
.gbp-comment-composer label[for="comment"] { display: none; } .gbp-btn--sm { padding: 9px 20px; font-size: 0.8125rem; } .gbp-comment-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: var(--space-4);
}
.gbp-comment-list .children {
list-style: none;
padding: 0;
margin: var(--space-4) 0 0 var(--space-6);
border-left: 2px solid rgba(255,182,18,0.15);
padding-left: var(--space-4);
display: flex;
flex-direction: column;
gap: var(--space-3);
}
@media (max-width: 480px) { .gbp-comment-list .children { margin-left: var(--space-3); padding-left: var(--space-3); } } .gbp-comment { list-style: none; }
.gbp-comment__card {
background: var(--gbp-card-dark);
border: 1px solid var(--gbp-card-border);
border-radius: var(--radius-lg);
padding: var(--space-5);
transition: border-color var(--transition-base);
}
.gbp-comment__card:hover { border-color: rgba(255,182,18,0.22); }
.gbp-comment--reply .gbp-comment__card { background: rgba(16,41,27,0.55); border-color: rgba(255,182,18,0.10); }
.gbp-comment__header { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); }
.gbp-comment__avatar {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
background: var(--gbp-bg-section);
border: 2px solid rgba(255,182,18,0.18);
}
.gbp-comment__avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gbp-comment__meta { flex: 1; min-width: 0; }
.gbp-comment__author { display: block; font-weight: 600; font-size: var(--text-sm); color: var(--gbp-white-soft); margin-bottom: 2px; }
.gbp-comment__author a { color: var(--gbp-white-soft); text-decoration: none; }
.gbp-comment__author a:hover { color: var(--packers-gold); }
.gbp-comment__time { display: block; font-size: 0.78rem; color: var(--gbp-muted); }
.gbp-comment__time-sep { margin: 0 4px; opacity: 0.5; }
.gbp-comment__actions { display: flex; align-items: center; gap: var(--space-3); margin-left: auto; flex-shrink: 0; } .comment-reply-link {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 0.78rem;
font-weight: 600;
color: var(--gbp-muted);
text-decoration: none;
padding: 4px 8px;
border-radius: var(--radius-sm);
transition: color var(--transition-fast), background var(--transition-fast);
white-space: nowrap;
}
.comment-reply-link span { font-size: inherit; }
.comment-reply-link:hover { color: var(--packers-gold); background: rgba(255,182,18,0.08); } .gbp-comment-like {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 0.78rem;
font-weight: 600;
color: var(--gbp-muted);
background: none;
border: none;
padding: 4px 8px;
border-radius: var(--radius-sm);
cursor: pointer;
transition: color var(--transition-fast), background var(--transition-fast);
white-space: nowrap;
line-height: 1;
}
.gbp-comment-like:hover:not(:disabled) { color: #E05C7B; background: rgba(224,92,123,0.10); }
.gbp-comment-like.is-liked { color: #E05C7B; }
.gbp-comment-like.is-liked .gbp-like-icon { fill: currentColor; }
.gbp-comment-like:disabled { opacity: 0.40; cursor: not-allowed; }
.gbp-comment-like.is-loading { opacity: 0.55; pointer-events: none; }
.gbp-like-count { font-variant-numeric: tabular-nums; } .gbp-comment__edit-btn,
.gbp-comment__delete-btn {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 0.75rem;
font-weight: 600;
color: var(--gbp-muted);
background: none;
border: none;
padding: 4px 7px;
border-radius: var(--radius-sm);
cursor: pointer;
transition: color var(--transition-fast), background var(--transition-fast);
white-space: nowrap;
line-height: 1;
letter-spacing: 0.01em;
}
.gbp-comment__edit-btn:hover { color: var(--gbp-white-soft); background: rgba(255,255,255,0.08); }
.gbp-comment__delete-btn:hover { color: #E05C7B; background: rgba(224,92,123,0.10); } .gbp-comment__card.is-editing .gbp-comment__edit-btn,
.gbp-comment__card.is-editing .gbp-comment__delete-btn,
.gbp-comment__card.is-editing .comment-reply-link,
.gbp-comment__card.is-editing .gbp-comment-like { opacity: 0; pointer-events: none; } .gbp-comment__edit-textarea {
width: 100%;
min-height: 90px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.14);
border-radius: var(--radius-md);
color: var(--gbp-white-soft);
font-family: var(--font-body);
font-size: var(--text-sm);
line-height: var(--lh-relaxed);
padding: 10px 14px;
resize: vertical;
outline: none;
transition: border-color var(--transition-fast);
}
.gbp-comment__edit-textarea:focus { border-color: rgba(255,182,18,0.45); }
.gbp-comment__edit-actions {
display: flex;
align-items: center;
gap: var(--space-2);
margin-top: var(--space-2);
}
.gbp-comment__cancel-edit-btn {
background: none;
border: none;
font-size: 0.80rem;
font-weight: 600;
color: var(--gbp-muted);
cursor: pointer;
padding: 6px 10px;
border-radius: var(--radius-sm);
transition: color var(--transition-fast);
}
.gbp-comment__cancel-edit-btn:hover { color: var(--gbp-white-soft); } .gbp-comment__body { font-size: var(--text-sm); color: rgba(248,248,242,0.85); line-height: var(--lh-relaxed); }
.gbp-comment__body p { margin-bottom: 0.6em; }
.gbp-comment__body p:last-child { margin-bottom: 0; } .gbp-comment__moderation { font-size: var(--text-xs); color: var(--packers-gold); background: rgba(255,182,18,0.08); border: 1px solid rgba(255,182,18,0.20); border-radius: var(--radius-sm); padding: var(--space-2) var(--space-3); margin-bottom: var(--space-3); } .gbp-comments-closed { color: var(--gbp-muted); font-size: var(--text-sm); padding: var(--space-5); background: var(--gbp-card-dark); border-radius: var(--radius-md); border: 1px solid var(--gbp-divider); } .gbp-comment-pagination { display: flex; justify-content: space-between; padding-top: var(--space-6); margin-top: var(--space-4); border-top: 1px solid var(--gbp-divider); }
.gbp-comment-pagination a { color: var(--packers-gold); font-size: var(--text-sm); font-weight: 600; text-decoration: none; }
.gbp-comment-pagination a:hover { text-decoration: underline; } .gbp-404-hero {
background: var(--packers-green);
border-bottom: 3px solid var(--packers-gold);
padding: var(--space-16) var(--section-padding-x);
text-align: center;
position: relative;
overflow: hidden;
}
.gbp-404-hero__inner { position: relative; z-index: 1; }
.gbp-404-hero__number {
font-family: var(--font-headline);
font-size: clamp(7rem, 22vw, 18rem);
font-weight: 900;
color: rgba(255, 182, 18, 0.12);
line-height: 1;
letter-spacing: -0.02em;
margin-bottom: var(--space-2);
}
.gbp-404-hero__title {
font-family: var(--font-headline);
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #F8F5EE;
margin-bottom: var(--space-4);
}
.gbp-404-hero__desc {
color: rgba(248, 245, 238, 0.7);
font-size: 1.05rem;
max-width: 500px;
margin: 0 auto;
}
.gbp-404-body {
background: #F8F5EE;
padding: var(--space-12) var(--section-padding-x);
}
.gbp-404-body__inner {
max-width: 560px;
margin: 0 auto;
text-align: center;
}
.gbp-404-body__actions {
display: flex;
gap: var(--space-4);
justify-content: center;
flex-wrap: wrap;
margin-bottom: var(--space-10);
}
.gbp-404-body__search-label {
font-family: var(--font-headline);
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--packers-green);
margin-bottom: var(--space-3);
}
.gbp-404-body .gbp-search-form input[type="search"],
.gbp-404-body .gbp-search-form input[type="text"] {
-webkit-text-fill-color: #07130D;
color: #07130D;
}
.gbp-404-body .gbp-btn--ghost {
border-color: var(--packers-green);
color: var(--packers-green);
}
.gbp-404-body .gbp-btn--ghost:hover {
background: var(--packers-green);
color: #F8F5EE;
} .gbp-section-title--sm { font-size: var(--text-h4); } .gbp-text-block {
background: var(--gbp-bg-dark);
padding: var(--section-padding-y) 0;
}
.gbp-text-block--section { background: var(--gbp-bg-section); }
.gbp-text-block--card    { background: var(--gbp-card-dark); }
.gbp-text-block__label   { margin-bottom: var(--space-4); } .gbp-text-block .gbp-article-reading__inner {
background: transparent;
color: var(--gbp-white-soft);
padding-top: 0;
padding-bottom: 0;
}
.gbp-text-block .gbp-article-reading__inner h2,
.gbp-text-block .gbp-article-reading__inner h3,
.gbp-text-block .gbp-article-reading__inner h4 { color: var(--gbp-white-soft); }
.gbp-text-block .gbp-article-reading__inner p  { color: var(--gbp-muted); }
.gbp-text-block .gbp-article-reading__inner a  { color: var(--packers-gold); border-bottom-color: rgba(255,182,18,0.3); }
.gbp-text-block .gbp-article-reading__inner a:hover { color: var(--gbp-white-soft); } .gbp-search-page { padding: var(--section-padding-y) 0; }
.gbp-search-page__header { margin-bottom: var(--space-10); }
.gbp-search-page__query { color: var(--packers-gold); font-style: italic; }
.gbp-search-page__count { color: var(--gbp-muted); font-size: var(--text-sm); margin-top: var(--space-2); } .gbp-search-hero {
background: var(--packers-green);
border-bottom: 3px solid var(--packers-gold);
padding: clamp(48px, 8vw, 88px) 0 clamp(36px, 6vw, 64px);
}
.gbp-search-hero__inner { max-width: 900px; }
.gbp-search-hero__eyebrow {
font-family: var(--font-condensed);
font-size: .75rem;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--packers-gold);
margin: 0 0 12px;
}
.gbp-search-hero__title {
font-family: var(--font-condensed);
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: 800;
text-transform: uppercase;
color: #fff;
margin: 0 0 10px;
line-height: 1.1;
}
.gbp-search-hero__query { color: var(--packers-gold); font-style: italic; }
.gbp-search-hero__count {
font-size: .875rem;
color: rgba(248,245,238,.6);
margin: 0 0 24px;
}
.gbp-search-hero__form { max-width: 520px; }
.gbp-search-body {
background: #F8F5EE;
padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 100px);
min-height: 50vh;
}
.gbp-search-empty {
text-align: center;
padding: 64px 0;
color: #6b7280;
font-size: 1.1rem;
line-height: 1.8;
}
.gbp-search-empty a { color: var(--packers-green); font-weight: 600; }  .gbp-home-articles {
display: grid;
grid-template-columns: 1fr 340px;
gap: var(--space-8);
max-width: var(--width-content);
margin-inline: auto;
padding-inline: var(--section-padding-x);
padding-block: var(--section-padding-y) 0;
}
.gbp-home-articles .gbp-latest-articles .gbp-container,
.gbp-home-articles .gbp-latest-articles {
max-width: none;
padding-inline: 0;
}
.gbp-home-articles__side {
padding-top: var(--space-4);
}
@media (max-width: 1024px) {
.gbp-home-articles {
grid-template-columns: 1fr;
}
.gbp-home-articles__side {
padding-top: 0;
}
} .gbp-latest-articles {
padding: 68px 0 76px;
background:
linear-gradient(to bottom, rgba(5,12,8,0.62) 0%, transparent 10%),
linear-gradient(to right, #050C08 0%, rgba(5,12,8,0.92) 2%, rgba(5,12,8,0.5) 5%, transparent 10%),
linear-gradient(to bottom, rgba(5,12,8,0.12) 0%, rgba(5,12,8,0.65) 100%),
radial-gradient(circle at 16% 58%, rgba(32,55,49,0.36) 0%, transparent 50%),
radial-gradient(circle at 82% 22%, rgba(255,182,18,0.16) 0%, rgba(255,182,18,0.06) 20%, transparent 40%),
linear-gradient(135deg, #050C08 0%, #0A1A12 42%, #102A1D 72%, #050C08 100%);
border-top: none;
border-bottom: 1px solid rgba(255,182,18,0.18);
position: relative;
min-height: 560px;
height: auto;
overflow: visible;
}
.gbp-latest-articles::before,
.gbp-latest-articles::after {
content: '';
position: absolute;
left: 0;
right: 0;
height: 1px;
pointer-events: none;
z-index: 10;
}
.gbp-latest-articles::before {
top: 0;
background: linear-gradient(to right,
transparent 0%,
rgba(255,182,18,0.06)  8%,
rgba(255,182,18,0.10) 18%,
rgba(255,182,18,0.10) 78%,
rgba(255,182,18,0.04) 92%,
transparent 100%
);
}
.gbp-latest-articles::after {
bottom: 0;
background: linear-gradient(to right,
transparent 0%,
rgba(255,182,18,0.14)  6%,
rgba(255,182,18,0.22) 14%,
rgba(255,182,18,0.22) 80%,
rgba(255,182,18,0.08) 92%,
transparent 100%
);
} .gbp-la-player-portrait {
position: absolute;
right: -40px;
top: 0;
bottom: 0;
width: 62%;
max-width: 980px;
background-size: auto 100%;
background-repeat: no-repeat;
background-position: left top;
filter: grayscale(10%) contrast(1.18) brightness(1.1);
opacity: 0.50;
mix-blend-mode: screen;
-webkit-mask-image:
linear-gradient(to left, black 0%, black 22%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.15) 68%, rgba(0,0,0,0.04) 80%, transparent 94%);
-webkit-mask-composite: destination-in;
mask-image:
linear-gradient(to left, black 0%, black 22%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.15) 68%, rgba(0,0,0,0.04) 80%, transparent 94%);
mask-composite: intersect;
pointer-events: none;
user-select: none;
z-index: 0;
}
.gbp-la-inner {
max-width: 1200px;
margin: 0 auto 0 0;
padding: 0 48px 0 64px;
position: relative;
z-index: 1;
} .gbp-la-header {
display: flex;
align-items: flex-start;
justify-content: flex-start;
gap: 24px;
margin-bottom: 28px;
}
.gbp-la-eyebrow {
display: flex;
align-items: center;
gap: 10px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #C99700;
margin: 0 0 12px;
}
.gbp-la-eyebrow::before { display: none; }
.gbp-la-title {
font-size: 64px;
font-weight: 900;
color: #203731;
margin: 0 0 10px;
line-height: 0.96;
text-transform: uppercase;
letter-spacing: -0.025em;
}
.gbp-la-title span { color: #203731; }
.gbp-la-subtitle {
font-size: 15px;
color: rgba(247,241,223,0.66);
margin: 0;
max-width: 480px;
line-height: 1.6;
} .gbp-la-grid__list .gbp-la-cta-btn {
align-self: center;
margin-top: 4px;
width: 100%;
justify-content: center;
}
.gbp-la-cta-btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 26px;
border: 1.5px solid rgba(255,182,18,0.55);
border-radius: 8px;
color: #FFB612;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.09em;
text-decoration: none;
text-transform: uppercase;
white-space: nowrap;
flex-shrink: 0;
background: rgba(5,12,8,0.6);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
transition: background 0.24s, border-color 0.24s, color 0.24s, box-shadow 0.24s;
}
.gbp-la-cta-btn svg { transition: transform 0.24s; }
.gbp-la-cta-btn:hover {
background: #FFB612;
border-color: #FFB612;
color: #050C08;
box-shadow: 0 8px 28px rgba(255,182,18,0.28);
}
.gbp-la-cta-btn:hover svg { transform: translateX(4px); stroke: #050C08; } .gbp-articles-tabs-wrap {
position: relative;
margin-bottom: 28px;
}
.gbp-articles-tabs {
display: flex;
gap: 8px;
flex-wrap: wrap;
padding-bottom: 20px;
margin-bottom: 0;
border-bottom: none;
}
.gbp-articles-tab {
flex-shrink: 0;
padding: 5px 13px !important;
font-size: 10px !important;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.07em;
color: rgba(247,241,223,0.86);
background: linear-gradient(135deg, rgba(18,53,36,0.58) 0%, rgba(7,19,13,0.86) 100%);
border: 1px solid rgba(255,182,18,0.18);
border-radius: 40px;
cursor: pointer;
transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
white-space: nowrap;
}
.gbp-articles-tab:hover {
color: #FFB612;
border-color: rgba(255,182,18,0.38);
background: linear-gradient(135deg, rgba(32,55,49,0.72) 0%, rgba(10,26,18,0.92) 100%);
}
.gbp-articles-tab.is-active {
color: #050C08;
background: linear-gradient(135deg, #FFB612 0%, #C99700 100%);
border-color: transparent;
} .gbp-tab-panel[hidden] { display: none; }
.gbp-tab-panel.is-active { display: block; min-height: 560px; }
.gbp-tab-empty {
padding: 56px 0;
color: rgba(247,241,223,0.35);
font-size: 14px;
text-align: center;
font-style: italic;
} .gbp-la-grid {
display: grid;
grid-template-columns: 1fr 480px;
gap: 20px;
align-items: stretch;
} .gbp-la-grid__featured {
min-width: 0;
}
.gbp-la-grid__featured .gbp-card--large {
display: flex;
flex-direction: column;
min-height: 560px;
border-radius: 12px;
border: 1px solid rgba(255,182,18,0.28) !important;
background: linear-gradient(145deg, rgba(7,19,13,0.95) 0%, rgba(18,53,36,0.84) 55%, rgba(5,12,8,0.98) 100%);
box-shadow: 0 24px 70px rgba(0,0,0,0.48), 0 0 32px rgba(255,182,18,0.06);
overflow: hidden;
transition: border-color 0.26s, box-shadow 0.26s, transform 0.26s;
}
.gbp-la-grid__featured .gbp-card--large:hover {
border-color: rgba(255,182,18,0.46) !important;
box-shadow: 0 32px 80px rgba(0,0,0,0.56), 0 0 40px rgba(255,182,18,0.1);
transform: translateY(-3px);
} .gbp-la-grid__featured .gbp-img-wrap {
border-radius: 0 !important;
position: relative;
overflow: hidden;
flex: none;
height: 370px;
aspect-ratio: unset !important;
display: block;
width: 100%;
}
.gbp-la-grid__featured .gbp-img-wrap img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.44s ease;
}
.gbp-la-grid__featured .gbp-card--large:hover .gbp-img-wrap img {
transform: scale(1.05);
} .gbp-la-grid__featured .gbp-img-wrap::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(5,12,8,0.96) 0%,
rgba(5,12,8,0.42) 42%,
rgba(5,12,8,0.06) 100%
);
pointer-events: none;
z-index: 1;
} .gbp-la-grid__featured .gbp-card__inner {
flex: none;
height: auto;
overflow: visible;
background: linear-gradient(145deg, rgba(5,12,8,0.98) 0%, rgba(10,26,18,0.96) 50%, rgba(18,53,36,0.92) 100%);
border-top: 1px solid rgba(255,182,18,0.14);
padding: 16px 22px 20px;
}
.gbp-la-grid__featured .gbp-card__top {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}
.gbp-la-grid__featured .gbp-card--large .gbp-card__title {
font-size: 23px;
line-height: 1.26;
color: #F7F1DF;
letter-spacing: -0.015em;
}
.gbp-la-grid__featured .gbp-card--large .gbp-card__title a {
color: inherit;
text-decoration: none;
}
.gbp-la-grid__featured .gbp-card--large:hover .gbp-card__title a { color: #FFB612; }
.gbp-la-grid__featured .gbp-card__excerpt {
color: rgba(247,241,223,0.68);
font-size: 14px;
line-height: 1.65;
margin-top: 8px;
} .gbp-la-grid__featured .gbp-card__footer {
margin-top: 16px;
padding-top: 14px;
border-top: 1px solid rgba(255,182,18,0.1);
}
.gbp-la-grid__featured .gbp-meta__date {
font-size: 11px;
color: rgba(247,241,223,0.45);
} .gbp-la-grid .gbp-badge {
font-size: 9px !important;
padding: 2px 8px !important;
letter-spacing: 0.1em;
font-weight: 700;
box-shadow: none;
} .gbp-la-grid__list {
display: flex;
flex-direction: column;
gap: 10px;
border: none;
border-radius: 0;
overflow: visible;
background: none;
} .gbp-card-compact {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 18px !important;
background: linear-gradient(135deg, rgba(9,24,16,0.94) 0%, rgba(18,53,36,0.72) 100%);
border: 1px solid rgba(255,182,18,0.18);
border-radius: 10px;
text-decoration: none;
transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.gbp-card-compact:hover {
background: linear-gradient(135deg, rgba(12,32,22,0.98) 0%, rgba(32,55,49,0.9) 100%);
border-color: rgba(255,182,18,0.42);
box-shadow: 0 16px 38px rgba(0,0,0,0.32), 0 0 24px rgba(255,182,18,0.08);
transform: translateY(-2px);
}
.gbp-card-compact__img {
flex-shrink: 0;
width: 110px !important;
height: 82px !important;
border-radius: 8px;
overflow: hidden;
display: block;
background: linear-gradient(135deg, #0A1A12 0%, #203731 100%);
border: 1px solid rgba(255,182,18,0.14);
}
.gbp-card-compact__img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}
.gbp-card-compact:hover .gbp-card-compact__img img { transform: scale(1.07); }
.gbp-card-compact__body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 6px;
justify-content: center;
}
.gbp-card-compact__meta {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.gbp-card-compact__date {
font-size: 11px;
color: rgba(247,241,223,0.42);
}
.gbp-card-compact__title {
font-size: 16px !important;
font-weight: 700;
line-height: 1.35;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
color: #F7F1DF;
}
.gbp-card-compact__title a {
color: inherit;
text-decoration: none;
transition: color 0.16s;
}
.gbp-card-compact__title a:hover { color: #FFB612; }
.gbp-card-compact__arrow {
flex-shrink: 0;
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255,182,18,0.22);
border-radius: 50%;
color: rgba(255,182,18,0.6);
transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gbp-card-compact:hover .gbp-card-compact__arrow {
border-color: #FFB612;
color: #FFB612;
background: rgba(255,182,18,0.08);
} @media (max-width: 1280px) {
.gbp-la-grid { grid-template-columns: 1fr 440px; }
}
@media (max-width: 1023px) {
.gbp-la-inner { padding: 0 28px; }
.gbp-latest-articles { padding: 52px 0 56px; }
.gbp-la-title { font-size: 44px; }
.gbp-la-grid { grid-template-columns: 1fr; gap: 20px; }
.gbp-la-grid__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; height: auto; }
.gbp-la-grid__list .gbp-card-compact { flex: none; }
.gbp-la-player-portrait { width: 60%; opacity: 0.32; } #section-rychle-spravy::after { bottom: -36px; height: 72px; } .gbp-la-grid__featured { height: auto; }
.gbp-la-grid__featured .gbp-card--large { height: auto; }
.gbp-la-grid__featured .gbp-img-wrap { flex: none; height: 340px; aspect-ratio: unset !important; }
.gbp-la-grid__featured .gbp-card__inner { flex: none; height: auto; overflow: visible; }
}
@media (max-width: 767px) {
.gbp-la-inner { padding: 0 20px; }
.gbp-latest-articles { padding: 40px 0 46px; min-height: 400px; } #section-rychle-spravy::after { bottom: -24px; height: 56px; }
.gbp-la-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.gbp-la-title { font-size: 44px; letter-spacing: -0.015em; }
.gbp-la-cta-btn { font-size: 11px; padding: 11px 18px; }
.gbp-la-grid { grid-template-columns: 1fr; }
.gbp-la-grid__list { grid-template-columns: 1fr; }
.gbp-card-compact__img { width: 88px; height: 66px; }
.gbp-card-compact__title { font-size: 14px; }
.gbp-la-grid__featured .gbp-card--large .gbp-card__title { font-size: 20px; }
.gbp-la-player-portrait { width: 80%; opacity: 0.20; right: -20px; } .gbp-la-grid__featured { height: auto; }
.gbp-la-grid__featured .gbp-card--large { height: auto; }
.gbp-la-grid__featured .gbp-img-wrap { flex: none; height: 240px; aspect-ratio: unset !important; }
.gbp-la-grid__featured .gbp-card__inner { flex: none; height: auto; overflow: visible; }
}
@media (max-width: 479px) {
.gbp-la-inner { padding: 0 16px; }
.gbp-latest-articles { padding: 36px 0 40px; min-height: 320px; } #section-rychle-spravy::after { bottom: -18px; height: 44px; }
.gbp-la-title { font-size: 40px; }
.gbp-la-grid__featured .gbp-img-wrap { height: 200px; }
.gbp-la-grid__featured .gbp-card__inner { padding: 14px 16px 18px; height: auto; overflow: visible; }
.gbp-la-grid__featured .gbp-card--large .gbp-card__title { font-size: 18px; }
.gbp-la-player-portrait { width: 88%; opacity: 0.12; right: -10px; }
.gbp-card-compact__img { width: 90px !important; height: 67px !important; }
} .gbp-la-cat-trigger-wrap { display: none; }
.gbp-la-cat-trigger {
display: flex;
align-items: center;
gap: 8px;
padding: 13px 20px;
background: #ffffff;
border: 1.5px solid rgba(32,55,49,0.22);
border-radius: 12px;
color: #203731;
font-family: var(--font-display);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.07em;
cursor: pointer;
transition: border-color 0.2s, box-shadow 0.2s;
width: 100%;
justify-content: space-between;
}
.gbp-la-cat-trigger:hover {
border-color: #203731;
box-shadow: 0 2px 8px rgba(32,55,49,0.08);
}
.gbp-la-cat-trigger svg { flex-shrink: 0; color: #203731; transition: transform 0.2s; }
.gbp-la-cat-trigger.is-open svg { transform: rotate(180deg); }
.gbp-la-cat-trigger.is-open { border-color: #203731; } .gbp-la-cat-sheet { display: none; position: fixed; inset: 0; z-index: 9999; }
.gbp-la-cat-sheet:not([hidden]) { display: block; }
.gbp-la-cat-sheet__backdrop {
position: absolute;
inset: 0;
background: rgba(7,19,13,0.55);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
animation: gbp-sheet-fade-in 0.22s ease both;
}
.gbp-la-cat-sheet__panel {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #F8F5EE;
border-top: 3px solid #203731;
border-radius: 20px 20px 0 0;
padding: 10px 0 36px;
animation: gbp-sheet-slide-up 0.28s cubic-bezier(0.32, 0.72, 0, 1) both;
max-height: 82vh;
overflow-y: auto;
box-shadow: 0 -8px 40px rgba(7,19,13,0.18);
}
.gbp-la-cat-sheet__handle {
width: 36px;
height: 4px;
background: #C8B99A;
border-radius: 2px;
margin: 0 auto 14px;
}
.gbp-la-cat-sheet__title {
font-family: var(--font-display);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: #203731;
padding: 0 24px 12px;
border-bottom: 1px solid #E8E2D6;
margin-bottom: 4px;
}
.gbp-la-cat-sheet__list {
list-style: none;
margin: 0;
padding: 0;
}
.gbp-la-cat-sheet__item {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 15px 24px;
background: transparent;
border: none;
color: #203731;
font-family: var(--font-display);
font-size: 15px;
font-weight: 600;
letter-spacing: 0.02em;
text-align: left;
cursor: pointer;
transition: background 0.15s, color 0.15s;
border-bottom: 1px solid #E8E2D6;
}
.gbp-la-cat-sheet__item:last-child { border-bottom: none; }
.gbp-la-cat-sheet__item:hover {
background: #F0EBE0;
color: #07130D;
}
.gbp-la-cat-sheet__item.is-active {
color: #07130D;
font-weight: 700;
}
.gbp-la-cat-sheet__check { opacity: 0; transition: opacity 0.15s; flex-shrink: 0; color: #203731; }
.gbp-la-cat-sheet__item.is-active .gbp-la-cat-sheet__check { opacity: 1; }
@keyframes gbp-sheet-fade-in {
from { opacity: 0; }
to   { opacity: 1; }
}
@keyframes gbp-sheet-slide-up {
from { transform: translateY(100%); }
to   { transform: translateY(0); }
}
@media (max-width: 900px) {
.gbp-la-cat-trigger-wrap { display: block; margin-bottom: 24px; }
.gbp-articles-tabs-wrap  { display: none !important; }
} .gbp-home-gamecenter {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
max-width: var(--width-content);
margin-inline: auto;
padding-inline: var(--section-padding-x);
padding-block: var(--section-padding-y);
}
.gbp-home-gamecenter .gbp-game-center,
.gbp-home-gamecenter .gbp-standings {
height: 100%;
}
@media (max-width: 768px) {
.gbp-home-gamecenter {
grid-template-columns: 1fr;
}
} .gbp-standings__sub {
font-size: var(--text-sm);
color: var(--gbp-muted);
margin-bottom: var(--space-4);
line-height: var(--lh-normal);
}
.gbp-standings__table-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.gbp-standings__table {
width: 100%;
border-collapse: collapse;
font-size: var(--text-sm);
}
.gbp-standings__table thead th {
padding: var(--space-2) var(--space-3);
text-align: center;
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: var(--ls-wide);
text-transform: uppercase;
color: var(--gbp-muted);
border-bottom: 1px solid var(--gbp-divider);
}
.gbp-standings__table thead th.gbp-standings__col-team { text-align: left; }
.gbp-standings__table tbody td {
padding: var(--space-2) var(--space-3);
text-align: center;
color: var(--gbp-white-soft);
border-bottom: 1px solid var(--gbp-divider);
vertical-align: middle;
}
.gbp-standings__table tbody td.gbp-standings__col-team {
text-align: left;
display: flex;
align-items: center;
gap: var(--space-2);
}
.gbp-standings__table tbody tr:last-child td { border-bottom: none; }
.gbp-standings__packers td {
background: rgba(255, 182, 18, 0.06);
font-weight: 600;
}
.gbp-standings__packers .gbp-standings__team-name { color: var(--packers-gold); }
.gbp-standings__packers-dot {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--packers-gold);
flex-shrink: 0;
}
.gbp-standings__forma {
font-family: var(--font-mono);
font-size: var(--text-xs);
letter-spacing: 1px;
}
.gbp-standings__note {
font-size: var(--text-xs);
color: var(--gbp-muted-dark);
margin-top: var(--space-4);
}
@media (max-width: 600px) {
.gbp-standings__col-hide-sm { display: none; }
} .gbp-historia-gateway {
background-color: #020E0A;
background-image: url(//greenbaypackers.eu/wp-content/themes/greenbaypackers-theme/assets/images/HistoriaPozadie.jpg);
background-size: cover;
background-position: center center;
background-attachment: fixed;
padding-block: var(--section-padding-y);
position: relative;
overflow: hidden;
} .gbp-historia-gateway::before {
content: '';
position: absolute;
inset: 0;
background: rgba(2, 8, 4, 0.78);
pointer-events: none;
z-index: 0;
}
.gbp-historia-gateway > .gbp-container { position: relative; z-index: 1; } .gbp-historia-gateway__header {
text-align: center;
margin-bottom: var(--space-12);
}
.gbp-historia-gateway__header .gbp-section-label {
margin-bottom: var(--space-3);
}
.gbp-historia-gateway__title {
font-family: var(--font-headline);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
text-transform: uppercase;
color: var(--gbp-white-soft);
letter-spacing: var(--ls-tight);
line-height: var(--lh-tight);
margin: 0 0 var(--space-5);
} .gbp-historia-gateway__title::after {
content: '';
display: block;
width: 56px;
height: 3px;
background: var(--packers-gold);
margin: var(--space-4) auto 0;
border-radius: 2px;
}
.gbp-historia-gateway__intro {
font-family: var(--font-body);
font-size: var(--text-lg);
color: var(--gbp-muted);
line-height: var(--lh-relaxed);
max-width: 680px;
margin-inline: auto;
} .gbp-historia-gateway__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
align-items: stretch;
} .gbp-gateway-card {
position: relative;
min-height: 520px;
border-radius: var(--radius-xl);
border: 1px solid var(--gbp-card-border);
overflow: hidden;
isolation: isolate; background: #071308;
transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gbp-gateway-card:hover {
border-color: var(--gbp-card-border-hover);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.60), 0 0 28px rgba(255, 182, 18, 0.10);
} .gbp-gateway-card__bg {
position: absolute;
inset: 0;
z-index: 0;
background-image: var(--gbp-card-img);
background-size: cover;
background-position: center top;
transition: transform 0.40s ease;
}
@media (prefers-reduced-motion: no-preference) {
.gbp-gateway-card:hover .gbp-gateway-card__bg {
transform: scale(1.04);
}
} .gbp-gateway-card--historia .gbp-gateway-card__bg {
background-color: #091A10;
background-image: var(--gbp-card-img,
linear-gradient(160deg, #1A3D26 0%, #091A10 55%, #030C06 100%)
);
}
.gbp-gateway-card--legendy .gbp-gateway-card__bg {
background-color: #0B1E14;
background-image: var(--gbp-card-img,
linear-gradient(160deg, #203731 0%, #0B1E14 55%, #030C06 100%)
);
} .gbp-gateway-card__overlay {
position: absolute;
inset: 0;
z-index: 1;
background:
linear-gradient(
to top,
rgba(2, 4, 3, 0.97)  0%,
rgba(2, 4, 3, 0.82)  35%,
rgba(2, 4, 3, 0.45)  60%,
rgba(2, 4, 3, 0.18)  80%,
rgba(2, 4, 3, 0.05)  100%
);
} .gbp-gateway-card__body {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 3;
padding: var(--space-20) var(--space-8) var(--space-8);
}
.gbp-gateway-card__eyebrow {
display: inline-block;
font-family: var(--font-body);
font-size: var(--text-xs);
font-weight: 600;
text-transform: uppercase;
letter-spacing: var(--ls-wider);
color: var(--packers-gold);
margin-bottom: var(--space-3);
} .gbp-gateway-card__eyebrow::before {
content: '';
display: inline-block;
width: 20px;
height: 2px;
background: var(--packers-gold);
vertical-align: middle;
margin-right: var(--space-2);
border-radius: 1px;
}
.gbp-gateway-card__title {
font-family: var(--font-headline);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
line-height: var(--lh-tight);
color: var(--gbp-white-soft);
margin: 0 0 var(--space-4);
}
.gbp-gateway-card__desc {
font-family: var(--font-body);
font-size: var(--text-md);
color: var(--gbp-muted);
line-height: var(--lh-relaxed);
margin-bottom: var(--space-6);
max-width: 420px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.gbp-gateway-card__cta {
position: relative;
z-index: 4;
} .gbp-gateway-card__link-cover {
position: absolute;
inset: 0;
z-index: 2;
} @media (max-width: 860px) {
.gbp-historia-gateway__grid {
grid-template-columns: 1fr;
gap: var(--space-6);
}
.gbp-gateway-card {
min-height: 420px;
}
.gbp-gateway-card__body {
padding: var(--space-16) var(--space-6) var(--space-6);
}
}
@media (max-width: 480px) {
.gbp-historia-gateway__header {
margin-bottom: var(--space-8);
}
.gbp-gateway-card {
min-height: 360px;
}
.gbp-gateway-card__body {
padding: var(--space-12) var(--space-5) var(--space-5);
}
.gbp-gateway-card__title {
font-size: 1.75rem;
}
} .gbp-lambeau-gateway {
background-color: #020A06;
background-image: url(//greenbaypackers.eu/wp-content/themes/greenbaypackers-theme/assets/images/LambeauFieldPOzadie.webp);
background-size: cover;
background-position: center 30%;
background-attachment: fixed;
padding-block: var(--section-padding-y);
position: relative;
overflow: hidden;
}
.gbp-lambeau-gateway::before {
content: '';
position: absolute;
inset: 0;
background: rgba(1, 6, 3, 0.84);
pointer-events: none;
z-index: 0;
} .gbp-lambeau-gateway::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, rgba(255, 182, 18, 0.55) 35%, rgba(255, 182, 18, 0.55) 65%, transparent 100%);
pointer-events: none;
z-index: 1;
}
.gbp-lambeau-gateway > .gbp-container { position: relative; z-index: 2; } .gbp-lambeau-gateway__header {
text-align: center;
margin-bottom: var(--space-12);
}
.gbp-lambeau-gateway__header .gbp-section-label {
margin-bottom: var(--space-3);
}
.gbp-lambeau-gateway__title {
font-family: var(--font-headline);
font-size: clamp(2.5rem, 6vw, 4.5rem);
font-weight: 800;
text-transform: uppercase;
color: var(--gbp-white-soft);
letter-spacing: var(--ls-tight);
line-height: var(--lh-tight);
margin: 0 0 var(--space-5);
}
.gbp-lambeau-gateway__title::after {
content: '';
display: block;
width: 64px;
height: 3px;
background: var(--packers-gold);
margin: var(--space-4) auto 0;
border-radius: 2px;
}
.gbp-lambeau-gateway__intro {
font-family: var(--font-body);
font-size: var(--text-lg);
color: var(--gbp-muted);
line-height: var(--lh-relaxed);
max-width: 680px;
margin-inline: auto;
} .gbp-lambeau-gateway__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-8);
align-items: stretch;
} .gbp-gateway-card--lambeau-historia .gbp-gateway-card__bg {
background-color: #081510;
background-image: var(--gbp-card-img,
url(//greenbaypackers.eu/wp-content/themes/greenbaypackers-theme/assets/images/LambeauFieldHistoria.jpg),
linear-gradient(160deg, #1C3828 0%, #081510 55%, #020A06 100%)
);
background-size: cover;
background-position: center;
}
.gbp-gateway-card--lambeau-cesta .gbp-gateway-card__bg {
background-color: #0D1A0A;
background-image: var(--gbp-card-img,
url(//greenbaypackers.eu/wp-content/themes/greenbaypackers-theme/assets/images/CestaNaLambeau.png),
linear-gradient(160deg, #2A400E 0%, #0D1A0A 55%, #020A06 100%)
);
background-size: cover;
background-position: center;
} @media (max-width: 860px) {
.gbp-lambeau-gateway__grid {
grid-template-columns: 1fr;
gap: var(--space-6);
}
.gbp-lambeau-gateway__header {
margin-bottom: var(--space-8);
}
}
@media (max-width: 480px) {
.gbp-lambeau-gateway__title {
font-size: 2.25rem;
}
} .gbp-community-hero {
position: relative;
background: var(--packers-green);
overflow: hidden;
padding-block: var(--section-padding-y);
text-align: center;
}
.gbp-community-hero__bg {
position: absolute;
inset: 0;
z-index: 0;
}
.gbp-community-hero__bg img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.25;
}
.gbp-community-hero__inner {
position: relative;
z-index: 1;
}
.gbp-community-hero__eyebrow {
margin-bottom: var(--space-4);
}
.gbp-community-hero__title {
font-family: var(--font-headline);
font-size: clamp(1.75rem, 4vw, 3rem);
font-weight: 900;
text-transform: uppercase;
letter-spacing: var(--ls-tight);
color: var(--gbp-white-soft);
max-width: 700px;
margin-inline: auto;
margin-bottom: var(--space-5);
line-height: var(--lh-tight);
}
.gbp-community-hero__desc {
font-size: var(--text-lg);
color: rgba(248, 248, 242, 0.8);
max-width: 620px;
margin-inline: auto;
line-height: var(--lh-relaxed);
margin-bottom: var(--space-8);
}
.gbp-community-hero__boxes {
display: flex;
justify-content: center;
gap: var(--space-4);
flex-wrap: wrap;
margin-bottom: var(--space-8);
}
.gbp-community-hero__box {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--space-2);
padding: var(--space-4) var(--space-5);
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 182, 18, 0.2);
border-radius: var(--radius-lg);
min-width: 130px;
}
.gbp-community-hero__box-icon { font-size: 1.5rem; }
.gbp-community-hero__box-label {
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 700;
text-transform: uppercase;
letter-spacing: var(--ls-wide);
color: var(--gbp-white-soft);
text-align: center;
}
.gbp-community-hero__actions {
display: flex;
justify-content: center;
gap: var(--space-4);
flex-wrap: wrap;
} .gbp-newsletter {
background: var(--gbp-bg-deep);
padding-block: var(--section-padding-y);
border-top: 1px solid var(--gbp-divider-gold);
}
.gbp-newsletter__inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-12);
align-items: center;
}
.gbp-newsletter__title {
font-family: var(--font-headline);
font-size: var(--text-h2);
font-weight: 900;
text-transform: uppercase;
color: var(--gbp-white-soft);
margin-bottom: var(--space-4);
line-height: var(--lh-tight);
}
.gbp-newsletter__desc {
font-size: var(--text-md);
color: var(--gbp-muted);
line-height: var(--lh-relaxed);
}
.gbp-newsletter-form__row {
display: flex;
gap: var(--space-3);
margin-bottom: var(--space-3);
}
.gbp-newsletter-form__input {
flex: 1;
padding: 12px 16px;
background: var(--gbp-card-dark);
border: 1px solid var(--gbp-card-border);
border-radius: var(--radius-md);
color: var(--gbp-white-soft);
font-size: var(--text-md);
transition: border-color 0.2s;
}
.gbp-newsletter-form__input::placeholder { color: var(--gbp-muted-dark); }
.gbp-newsletter-form__input:focus {
outline: none;
border-color: var(--packers-gold);
}
.gbp-newsletter-form__note {
font-size: var(--text-xs);
color: var(--gbp-muted-dark);
}
@media (max-width: 768px) {
.gbp-newsletter__inner {
grid-template-columns: 1fr;
gap: var(--space-6);
}
.gbp-newsletter-form__row {
flex-direction: column;
}
.gbp-newsletter-form__btn {
width: 100%;
}
} .gbp-discover-packers {
background-color: #030C06;
background-image: url(//greenbaypackers.eu/wp-content/themes/greenbaypackers-theme/assets/images/pozadieObjavte.jpeg);
background-size: cover;
background-position: center center;
background-attachment: fixed;
padding-block: var(--section-padding-y);
position: relative;
overflow: hidden;
} .gbp-discover-packers::before {
content: '';
position: absolute;
inset: 0;
background: rgba(2, 8, 4, 0.82);
pointer-events: none;
z-index: 0;
}
.gbp-discover-packers > .gbp-container { position: relative; z-index: 1; } .gbp-discover-packers__header {
text-align: center;
margin-bottom: var(--space-12);
}
.gbp-discover-packers__header .gbp-section-label {
margin-bottom: var(--space-3);
}
.gbp-discover-packers__title {
font-size: clamp(1.75rem, 3.5vw, 2.5rem);
font-weight: 800;
line-height: 1.1;
color: var(--gbp-white-soft);
letter-spacing: -0.02em;
margin: 0 0 var(--space-4);
text-transform: uppercase;
}
.gbp-discover-packers__intro {
font-size: var(--text-lg);
color: var(--gbp-muted);
line-height: 1.65;
max-width: 680px;
margin: 0 auto;
} .gbp-discover-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: var(--space-6);
}
.gbp-discover-card:nth-child(1),
.gbp-discover-card:nth-child(2),
.gbp-discover-card:nth-child(3) {
grid-column: span 2;
}
.gbp-discover-card:nth-child(4),
.gbp-discover-card:nth-child(5) {
grid-column: span 3;
} .gbp-discover-card {
position: relative;
min-height: 360px;
border-radius: var(--radius-xl);
border: 1px solid var(--gbp-card-border);
overflow: hidden;
isolation: isolate;
background: #071308;
cursor: pointer;
transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.gbp-discover-card:hover {
border-color: var(--gbp-card-border-hover);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65), 0 0 32px rgba(255, 182, 18, 0.12);
transform: translateY(-3px);
} .gbp-discover-card:nth-child(4),
.gbp-discover-card:nth-child(5) {
min-height: 300px;
} .gbp-discover-card__bg {
position: absolute;
inset: 0;
z-index: 0;
background-image: var(--gbp-discover-img, none);
background-size: cover;
background-position: center;
transition: transform 0.45s ease;
}
.gbp-discover-card:hover .gbp-discover-card__bg {
transform: scale(1.04);
} .gbp-discover-card--mesto .gbp-discover-card__bg {
background-color: #0A1C12;
background-image: var(--gbp-discover-img,
radial-gradient(ellipse at 30% 20%, rgba(32, 55, 49, 0.9) 0%, rgba(5, 14, 8, 1) 70%)
);
}
.gbp-discover-card--uspechy .gbp-discover-card__bg {
background-color: #1A1200;
background-image: var(--gbp-discover-img,
radial-gradient(ellipse at 70% 20%, rgba(80, 58, 0, 0.85) 0%, rgba(10, 8, 2, 1) 70%)
);
}
.gbp-discover-card--cisla .gbp-discover-card__bg {
background-color: #060F0A;
background-image: var(--gbp-discover-img,
radial-gradient(ellipse at 50% 0%, rgba(32, 55, 49, 0.8) 0%, rgba(3, 9, 5, 1) 65%)
);
}
.gbp-discover-card--logo .gbp-discover-card__bg {
background-color: #100E00;
background-image: var(--gbp-discover-img,
radial-gradient(ellipse at 60% 30%, rgba(90, 65, 0, 0.8) 0%, rgba(8, 7, 2, 1) 65%)
);
}
.gbp-discover-card--tradicie .gbp-discover-card__bg {
background-color: #081510;
background-image: var(--gbp-discover-img,
radial-gradient(ellipse at 40% 25%, rgba(25, 50, 38, 0.9) 0%, rgba(4, 10, 6, 1) 65%)
);
} .gbp-discover-card__overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(
to top,
rgba(2, 5, 3, 0.97)  0%,
rgba(2, 5, 3, 0.80)  38%,
rgba(2, 5, 3, 0.40)  60%,
rgba(2, 5, 3, 0.10)  82%,
transparent          100%
);
} .gbp-discover-card__icon {
position: absolute;
top: var(--space-6);
right: var(--space-6);
z-index: 2;
width: 40px;
height: 40px;
color: rgba(255, 182, 18, 0.30);
transition: color 0.25s ease, transform 0.25s ease;
pointer-events: none;
}
.gbp-discover-card:hover .gbp-discover-card__icon {
color: rgba(255, 182, 18, 0.55);
transform: scale(1.1);
}
.gbp-discover-card__icon svg {
width: 100%;
height: 100%;
} .gbp-discover-card__body {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 3;
padding: var(--space-16) var(--space-6) var(--space-6);
display: flex;
flex-direction: column;
gap: var(--space-2);
}
.gbp-discover-card__eyebrow {
display: block;
font-family: var(--font-sans);
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--packers-gold);
opacity: 0.8;
}
.gbp-discover-card__title {
font-size: clamp(1.1rem, 1.8vw, 1.4rem);
font-weight: 800;
line-height: 1.15;
color: var(--gbp-white-soft);
letter-spacing: -0.01em;
text-transform: uppercase;
margin: 0;
}
.gbp-discover-card__desc {
font-size: var(--text-sm);
color: var(--gbp-muted);
line-height: 1.6;
margin: var(--space-1) 0 var(--space-3);
max-width: 36ch;
} .gbp-btn.gbp-btn--outline-gold {
display: inline-flex;
align-items: center;
gap: var(--space-2);
padding: 0.55em 1.2em;
font-size: var(--text-sm);
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--packers-gold);
border: 1px solid rgba(255, 182, 18, 0.45);
border-radius: var(--radius-sm);
background: transparent;
text-decoration: none;
transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
align-self: flex-start;
}
.gbp-btn.gbp-btn--outline-gold:hover,
.gbp-discover-card:hover .gbp-btn.gbp-btn--outline-gold {
background: var(--packers-gold);
border-color: var(--packers-gold);
color: #020E0A;
}
.gbp-discover-card__cta-arrow {
transition: transform 0.2s ease;
}
.gbp-discover-card:hover .gbp-discover-card__cta-arrow {
transform: translateX(3px);
} .gbp-discover-card__link-cover {
position: absolute;
inset: 0;
z-index: 4;
display: block;
} .gbp-discover-card__body {
z-index: 5;
}  @media (max-width: 1100px) {
.gbp-discover-grid {
grid-template-columns: repeat(2, 1fr);
gap: var(--space-5);
}
.gbp-discover-card:nth-child(1),
.gbp-discover-card:nth-child(2),
.gbp-discover-card:nth-child(3),
.gbp-discover-card:nth-child(4),
.gbp-discover-card:nth-child(5) {
grid-column: span 1;
min-height: 320px;
}
} @media (max-width: 600px) {
.gbp-discover-grid {
grid-template-columns: 1fr;
gap: var(--space-4);
}
.gbp-discover-card {
min-height: 280px;
}
.gbp-discover-card:nth-child(4),
.gbp-discover-card:nth-child(5) {
min-height: 280px;
}
.gbp-discover-packers__intro {
font-size: var(--text-md);
}
}  .gbp-support-cta-btn {
position: relative;
isolation: isolate;
overflow: visible !important;
} .gbp-support-cta-btn::before,
.gbp-support-cta-btn::after {
content: '';
position: absolute;
inset: -5px;
border-radius: calc(var(--radius-md) + 3px);
border: 1.5px solid rgba(255, 182, 18, 0.7);
opacity: 0;
pointer-events: none;
z-index: -1;
animation: gbpSupportPulse 6s ease-out infinite;
} .gbp-support-cta-btn::after {
animation-delay: 0.38s;
} @keyframes gbpSupportPulse {
0%   { transform: scale(1);    opacity: 0; }
3.5% { transform: scale(1);    opacity: 0.85; }
28%  { transform: scale(1.18); opacity: 0; }
100% { transform: scale(1.18); opacity: 0; }
} .gbp-support-cta-btn:hover::before,
.gbp-support-cta-btn:hover::after {
animation-play-state: paused;
opacity: 0;
}
.gbp-support-cta-btn:hover {
box-shadow: 0 0 0 3px rgba(255, 182, 18, 0.35),
0 6px 24px rgba(255, 182, 18, 0.22);
} .gbp-support-cta-btn--mobile::before,
.gbp-support-cta-btn--mobile::after {
animation: gbpSupportGlow 6s ease-in-out infinite;
inset: 0;
border-radius: var(--radius-md);
border: none;
background: rgba(255, 182, 18, 0.14);
}
.gbp-support-cta-btn--mobile::after {
animation-delay: 0s;
display: none; }
@keyframes gbpSupportGlow {
0%   { opacity: 0; }
8%   { opacity: 1; }
28%  { opacity: 0; }
100% { opacity: 0; }
} @media (prefers-reduced-motion: reduce) {
.gbp-support-cta-btn::before,
.gbp-support-cta-btn::after {
animation: none;
opacity: 0;
}
.gbp-support-cta-btn:hover {
box-shadow: 0 0 0 3px rgba(255, 182, 18, 0.35);
}
}  .gbp-account {
display: flex;
align-items: center;
gap: var(--space-2);
position: relative;
} .gbp-account__login-link {
display: inline-flex;
align-items: center;
gap: 5px;
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 600;
text-transform: uppercase;
letter-spacing: var(--ls-wide);
color: var(--gbp-muted);
text-decoration: none;
padding: 6px 10px;
border-radius: var(--radius-md);
transition: color var(--transition-fast), background var(--transition-fast);
white-space: nowrap;
}
.gbp-account__login-link:hover {
color: var(--gbp-white-soft);
background: rgba(255,255,255,0.06);
}
.gbp-account__register-link {
display: inline-flex;
align-items: center;
font-family: var(--font-headline);
font-size: var(--text-xs);
font-weight: 700;
text-transform: uppercase;
letter-spacing: var(--ls-wide);
color: var(--packers-gold);
text-decoration: none;
padding: 6px 12px;
border: 1px solid rgba(255,182,18,0.32);
border-radius: var(--radius-pill);
transition: background var(--transition-fast), border-color var(--transition-fast);
white-space: nowrap;
}
.gbp-account__register-link:hover {
background: rgba(255,182,18,0.1);
border-color: rgba(255,182,18,0.65);
} .gbp-account__btn {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.10);
border-radius: var(--radius-pill);
padding: 4px 10px 4px 4px;
cursor: pointer;
color: var(--gbp-muted);
font-family: var(--font-body);
font-size: var(--text-xs);
font-weight: 500;
transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
white-space: nowrap;
}
.gbp-account__btn:hover,
.gbp-account__btn[aria-expanded="true"] {
background: rgba(255,255,255,0.09);
border-color: rgba(255,182,18,0.32);
color: var(--gbp-white-soft);
}
.gbp-account__avatar {
width: 26px;
height: 26px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
display: block;
border: 1.5px solid rgba(255,182,18,0.25);
}
.gbp-account__name {
max-width: 90px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.gbp-account__btn svg { flex-shrink: 0; transition: transform var(--transition-fast); }
.gbp-account__btn[aria-expanded="true"] svg { transform: rotate(180deg); } .gbp-account__drop {
position: absolute;
top: calc(100% + 8px);
right: 0;
min-width: 200px;
background: #F8F5EE;
border: 1px solid rgba(32,55,49,0.15);
border-top: 3px solid var(--packers-gold);
border-radius: var(--radius-lg);
box-shadow: 0 8px 32px rgba(7,19,13,0.18);
padding: var(--space-2) 0;
z-index: var(--z-dropdown);
animation: gbpDropIn 0.18s cubic-bezier(0.16,1,0.3,1);
}
.gbp-account__drop[hidden] { display: none; }
@keyframes gbpDropIn {
from { opacity: 0; transform: translateY(-6px) scale(0.97); }
to   { opacity: 1; transform: none; }
}
.gbp-account__drop-link {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 18px;
font-size: var(--text-sm);
font-family: var(--font-condensed);
font-weight: 600;
letter-spacing: .04em;
text-transform: uppercase;
color: var(--packers-green);
text-decoration: none;
transition: background var(--transition-fast), color var(--transition-fast);
white-space: nowrap;
}
.gbp-account__drop-link:hover {
background: rgba(32,55,49,0.07);
color: #07130D;
}
.gbp-account__drop-link--logout { color: #b91c1c; }
.gbp-account__drop-link--logout:hover {
color: #991b1b;
background: rgba(185,28,28,0.07);
}
.gbp-account__drop-divider {
height: 1px;
background: rgba(32,55,49,0.12);
margin: var(--space-2) 0;
} .gbp-mobile-nav__account {
border-top: 1px solid rgba(255,182,18,0.12);
} .gbp-mobile-account__toggle {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 14px 20px;
background: none;
border: none;
cursor: pointer;
transition: background var(--transition-fast);
gap: var(--space-3);
}
.gbp-mobile-account__toggle:hover {
background: rgba(255,182,18,0.08);
}
.gbp-mobile-account__toggle[aria-expanded="true"] {
background: rgba(255,182,18,0.06);
} .gbp-mobile-account__user {
display: flex;
align-items: center;
gap: var(--space-3);
flex: 1;
min-width: 0;
}
.gbp-mobile-account__avatar {
width: 36px;
height: 36px;
border-radius: 50%;
object-fit: cover;
border: 2px solid rgba(255,182,18,0.30);
flex-shrink: 0;
}
.gbp-mobile-account__name {
font-size: var(--text-sm);
font-weight: 600;
color: rgba(248,245,238,0.90);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} .gbp-mobile-account__chevron {
flex-shrink: 0;
color: rgba(248,245,238,0.35);
display: flex;
transition: transform 0.22s ease, color 0.15s;
}
.gbp-mobile-account__toggle[aria-expanded="true"] .gbp-mobile-account__chevron {
transform: rotate(180deg);
color: #FFB612;
} .gbp-mobile-account__links {
padding: 4px 0 8px;
border-top: 1px solid rgba(255,255,255,0.06);
background: rgba(0,0,0,0.15);
} .gbp-mobile-account__link {
display: block;
padding: 12px 20px 12px 24px;
font-size: var(--text-sm);
font-weight: 600;
color: rgba(248,245,238,0.65);
text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: color var(--transition-fast), background var(--transition-fast);
}
.gbp-mobile-account__link:last-child { border-bottom: none; }
.gbp-mobile-account__link:hover { color: rgba(248,245,238,0.90); background: rgba(255,182,18,0.08); }
.gbp-mobile-account__link--login {
padding: 14px 20px;
color: rgba(248,245,238,0.90);
font-weight: 700;
}
.gbp-mobile-account__link--login:hover  { color: #FFB612; }
.gbp-mobile-account__link--register     { color: #FFB612; font-weight: 700; }
.gbp-mobile-account__link--logout       { color: rgba(248,245,238,0.45); }
.gbp-mobile-account__link--logout:hover { color: #ff7c6e; background: rgba(192,57,43,0.10); } @media (max-width: 1100px) {
.gbp-account__name { display: none; }
}
@media (max-width: 900px) {
.gbp-account { display: none; } }  :root {
--oa-green:      #203731;
--oa-green-deep: #07130D;
--oa-gold:       #FFB612;
--oa-gold-dim:   rgba(255, 182, 18, .18);
--oa-cream:      #F8F5EE;
--oa-text:       #1A1A1A;
--oa-muted:      #3D3D3D;
--oa-card-bg:    #FFFFFF;
--oa-border:     rgba(32, 55, 49, .08);
--oa-radius:     10px;
--oa-transition: .25s ease;
} .gbpoa-page {
background: var(--oa-cream);
color: var(--oa-text);
} .gbpoa-hero {
position: relative;
min-height: 82vh;
display: flex;
align-items: flex-start;
overflow: hidden;
background: var(--oa-green-deep);
color: #fff;
}
@media (max-width: 768px) { .gbpoa-hero { min-height: 65vh; } }
.gbpoa-hero__bg {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.gbpoa-hero__overlay {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 55% 30%, rgba(32,55,49,.7) 0%, #07130D 65%),
linear-gradient(to top, rgba(2,6,3,.98) 0%, rgba(2,6,3,.45) 55%, transparent 100%);
} .gbpoa-hero__img {
position: absolute;
inset: 0;
background-size: cover;
background-position: center 30%;
opacity: .28;
} .gbpoa-hero__lines {
position: absolute;
inset: 0;
background: repeating-linear-gradient(
0deg,
transparent 79px,
rgba(255,182,18,.03) 80px
);
} .gbpoa-hero__g-watermark {
position: absolute;
right: -3%;
bottom: -5%;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 900;
font-size: clamp(16rem, 34vw, 40rem);
line-height: 1;
color: rgba(255,182,18,.04);
pointer-events: none;
user-select: none;
}
.gbpoa-hero__grain {
position: absolute;
inset: 0;
opacity: .035;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
background-repeat: repeat;
} .gbpoa-hero__inner {
position: relative;
z-index: 2;
padding-top: clamp(120px, 18vh, 200px);
padding-bottom: clamp(60px, 8vh, 80px);
} .gbpoa-hero__content {
position: relative;
max-width: 680px;
}
.gbpoa-hero__eyebrow {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-size: .8rem;
font-weight: 600;
letter-spacing: .18em;
text-transform: uppercase;
color: var(--oa-gold);
margin-bottom: 20px;
padding: 4px 12px;
border: 1px solid var(--oa-gold-dim);
border-radius: 2px;
}
.gbpoa-hero__logo {
display: block;
width: auto;
height: 80px;
margin-bottom: 20px;
filter: drop-shadow(0 4px 20px rgba(0,0,0,0.45));
}
.gbpoa-hero__title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(3rem, 7vw, 5.5rem);
font-weight: 800;
line-height: .95;
letter-spacing: -.01em;
text-transform: uppercase;
color: #fff;
margin: 0 0 8px;
}
.gbpoa-hero__title-accent {
display: block;
color: var(--oa-gold);
}
.gbpoa-hero__divider {
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--oa-gold), transparent);
margin: 24px 0;
}
.gbpoa-hero__intro {
font-family: 'Inter', sans-serif;
font-size: 1rem;
line-height: 1.78;
color: #FFFFFF;
max-width: 580px;
margin: 0;
} .gbpoa-hero__scroll {
position: absolute;
bottom: 28px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
color: rgba(255,182,18,.5);
z-index: 2;
animation: gbpoa-bounce 2s ease-in-out infinite;
}
.gbpoa-hero__scroll span {
display: block;
width: 1px;
height: 24px;
background: linear-gradient(to bottom, transparent, rgba(255,182,18,.45));
}
@keyframes gbpoa-bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50%       { transform: translateX(-50%) translateY(5px); }
} .gbpoa-content {
padding-top: var(--space-16);
padding-bottom: var(--space-24);
}
.gbpoa-section {
margin-bottom: var(--space-16);
} .gbpoa-section-header {
margin-bottom: var(--space-8);
text-align: center;
}
.gbpoa-section-label {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-size: .75rem;
font-weight: 700;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--oa-green);
margin-bottom: 8px;
}
.gbpoa-section-title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(1.75rem, 3.5vw, 2.75rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: -.01em;
color: var(--oa-green);
margin: 0;
line-height: 1.05;
} .gbpoa-grid { display: grid; gap: var(--space-6); }
.gbpoa-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gbpoa-grid--4 { grid-template-columns: repeat(4, 1fr); } .gbpoa-card {
background: var(--oa-card-bg);
border: 1px solid var(--oa-border);
border-radius: var(--oa-radius);
overflow: hidden;
box-shadow: 0 2px 8px rgba(7, 19, 13, .06);
transition: transform var(--oa-transition), border-color var(--oa-transition), box-shadow var(--oa-transition);
}
.gbpoa-card:hover {
transform: translateY(-3px);
border-color: rgba(255, 182, 18, .38);
box-shadow: 0 8px 32px rgba(7, 19, 13, .12);
}
.gbpoa-card__img-wrap {
overflow: hidden;
aspect-ratio: 16 / 9;
}
.gbpoa-card__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .35s ease;
}
.gbpoa-card:hover .gbpoa-card__img {
transform: scale(1.04);
}
.gbpoa-card__body {
padding: 20px 22px 24px;
}
.gbpoa-card__label {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-size: .72rem;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--oa-green);
margin-bottom: 6px;
}
.gbpoa-card__title {
font-family: 'Barlow Condensed', sans-serif;
font-size: 1.2rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: -.01em;
color: var(--oa-text);
margin: 0 0 10px;
line-height: 1.2;
}
.gbpoa-card__text {
font-family: 'Inter', sans-serif;
font-size: .875rem;
color: var(--oa-muted);
line-height: 1.68;
margin: 0;
} .gbpoa-stats-section {
background: linear-gradient(135deg, #0A1F14 0%, #203731 45%, #102B1A 100%);
border-radius: var(--radius-xl, 16px);
padding: var(--space-10) var(--space-8);
overflow: hidden;
border: 1px solid rgba(255,182,18,.12);
box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.gbpoa-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-6);
text-align: center;
}
.gbpoa-stat { position: relative; }
.gbpoa-stat + .gbpoa-stat::before {
content: '';
position: absolute;
left: 0;
top: 10%;
height: 80%;
width: 1px;
background: rgba(255, 255, 255, .10);
}
.gbpoa-stat__num {
display: block;
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: 800;
color: var(--oa-gold);
line-height: 1.1;
letter-spacing: -.02em;
}
.gbpoa-stat__label {
display: block;
font-family: 'Inter', sans-serif;
font-size: .72rem;
color: rgba(255, 255, 255, .90);
text-transform: uppercase;
letter-spacing: .08em;
margin-top: var(--space-2);
} .gbpoa-feature {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-12);
align-items: center;
background: var(--oa-card-bg);
border: 1px solid var(--oa-border);
border-radius: var(--radius-xl, 16px);
overflow: hidden;
transition: border-color var(--oa-transition), box-shadow var(--oa-transition);
}
.gbpoa-feature:hover {
border-color: rgba(255, 182, 18, .30);
box-shadow: 0 8px 32px rgba(7, 19, 13, .10);
} .gbpoa-feature__media {
height: 100%;
min-height: 320px;
overflow: hidden;
display: block;
}
.gbpoa-feature__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .4s ease;
}
.gbpoa-feature:hover .gbpoa-feature__img {
transform: scale(1.03);
} .gbpoa-feature__content {
padding: var(--space-10) var(--space-10) var(--space-10) 0;
} .gbpoa-feature--reverse .gbpoa-feature__content {
padding: var(--space-10) 0 var(--space-10) var(--space-10);
}
.gbpoa-feature__label {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-size: .75rem;
font-weight: 700;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--oa-green);
margin-bottom: 10px;
}
.gbpoa-feature__title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: -.01em;
color: var(--oa-green);
margin: 0;
line-height: 1.05;
}
.gbpoa-feature__divider {
width: 48px;
height: 2px;
background: linear-gradient(90deg, var(--oa-gold), transparent);
margin: 18px 0;
}
.gbpoa-feature__text {
font-family: 'Inter', sans-serif;
font-size: .9375rem;
color: var(--oa-muted);
line-height: 1.72;
margin: 0 0 var(--space-5);
}
.gbpoa-feature__cta {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'Barlow Condensed', sans-serif;
font-size: .875rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--oa-green);
text-decoration: none;
transition: color var(--oa-transition), gap var(--oa-transition);
}
.gbpoa-feature__cta:hover {
color: var(--oa-gold);
gap: 12px;
} .gbpoa-charity {
background: var(--oa-card-bg);
border: 1px solid var(--oa-border);
border-radius: var(--radius-xl, 16px);
padding: var(--space-10) var(--space-10);
display: flex;
gap: var(--space-6);
align-items: flex-start;
transition: border-color var(--oa-transition), box-shadow var(--oa-transition);
}
.gbpoa-charity:hover {
border-color: rgba(255, 182, 18, .30);
box-shadow: 0 6px 28px rgba(7, 19, 13, .08);
}
.gbpoa-charity__icon {
flex-shrink: 0;
width: 52px;
height: 52px;
border-radius: var(--radius-md, 8px);
background: rgba(255, 182, 18, .10);
border: 1px solid rgba(255, 182, 18, .25);
display: flex;
align-items: center;
justify-content: center;
color: var(--oa-gold);
margin-top: 4px;
}
.gbpoa-charity__body { flex: 1; }
.gbpoa-charity__label {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-size: .75rem;
font-weight: 700;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--oa-green);
margin-bottom: 8px;
}
.gbpoa-charity__title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: -.01em;
color: var(--oa-green);
margin: 0 0 10px;
line-height: 1.15;
}
.gbpoa-charity__text {
font-family: 'Inter', sans-serif;
font-size: .9375rem;
color: var(--oa-muted);
line-height: 1.7;
margin: 0;
} .gbpoa-cta-section { text-align: center; }
.gbpoa-cta {
position: relative;
background: linear-gradient(150deg, var(--oa-green-deep) 0%, var(--oa-green) 100%);
border-radius: var(--radius-xl, 16px);
padding: clamp(48px, 6vw, 80px) var(--space-8);
overflow: hidden;
}
.gbpoa-cta__bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,182,18,.08) 0%, transparent 70%);
pointer-events: none;
}
.gbpoa-cta__content { position: relative; z-index: 1; }
.gbpoa-cta__eyebrow {
display: inline-block;
font-family: 'Barlow Condensed', sans-serif;
font-size: .75rem;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
color: var(--oa-gold);
margin-bottom: 12px;
padding: 4px 12px;
border: 1px solid var(--oa-gold-dim);
border-radius: 2px;
}
.gbpoa-cta__title {
font-family: 'Barlow Condensed', sans-serif;
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: -.02em;
color: var(--oa-gold);
margin: 0 0 var(--space-4);
line-height: .95;
}
.gbpoa-cta__sub {
font-family: 'Inter', sans-serif;
font-size: 1rem;
color: #FFFFFF;
margin: 0 0 var(--space-8);
}
.gbpoa-cta__btns {
display: flex;
gap: var(--space-4);
justify-content: center;
flex-wrap: wrap;
}
.gbpoa-cta__btn-ghost {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: 'Barlow Condensed', sans-serif;
font-size: .875rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
color: rgba(255, 255, 255, .75);
border: 1.5px solid rgba(255, 255, 255, .25);
border-radius: var(--radius-md, 8px);
padding: 12px 28px;
text-decoration: none;
transition: all .15s ease;
}
.gbpoa-cta__btn-ghost:hover {
background: rgba(255, 255, 255, .08);
color: #fff;
border-color: rgba(255, 255, 255, .45);
} @media (max-width: 1024px) {
.gbpoa-stats { grid-template-columns: repeat(2, 1fr); }
.gbpoa-feature {
grid-template-columns: 1fr;
}
.gbpoa-feature__media {
min-height: 240px;
aspect-ratio: 16 / 9;
}
.gbpoa-feature__content {
padding: var(--space-8) var(--space-8) var(--space-8);
}
.gbpoa-feature--reverse .gbpoa-feature__content {
padding: var(--space-8);
}
}
@media (max-width: 480px) {
.gbpoa-hero__content { padding-block: 60px 52px; }
}
@media (max-width: 768px) {
.gbpoa-grid--3 { grid-template-columns: 1fr; }
.gbpoa-grid--4 { grid-template-columns: repeat(2, 1fr); }
.gbpoa-stats { grid-template-columns: repeat(2, 1fr); }
.gbpoa-hero__logo { height: 60px; }
.gbpoa-charity { flex-direction: column; gap: var(--space-4); }
.gbpoa-stats-section { padding: var(--space-8) var(--space-6); }
.gbpoa-content { padding-top: var(--space-10); }
} .gbp-legal-hero {
background: var(--packers-green);
padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 80px) clamp(40px, 6vw, 72px);
border-bottom: 3px solid var(--packers-gold);
position: relative;
overflow: hidden;
}
.gbp-legal-hero__inner { position: relative; max-width: 820px; }
.gbp-legal-hero__eyebrow {
font-family: var(--font-headline);
font-size: .7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: var(--packers-gold);
margin-bottom: 14px;
}
.gbp-legal-hero__title {
font-family: var(--font-headline);
font-size: clamp(2.2rem, 5vw, 3.4rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: -.01em;
color: #F8F8F2;
line-height: 1.1;
margin: 0 0 14px;
}
.gbp-legal-hero__updated {
font-size: .8125rem;
color: rgba(168,179,168,.65);
margin: 0;
}
.gbp-legal-body {
background: #F8F5EE;
padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
min-height: 60vh;
}
.gbp-legal-body__inner { max-width: 820px; margin-inline: auto; } .gbp-legal-content { color: #2A2A2A; font-size: 1rem; line-height: 1.75; }
.gbp-legal-content h2 {
font-family: var(--font-headline);
font-size: 1.45rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .02em;
color: #07130D;
margin: 2.5rem 0 .75rem;
padding-bottom: .5rem;
border-bottom: 2px solid rgba(255,182,18,.4);
}
.gbp-legal-content h2:first-child { margin-top: 0; }
.gbp-legal-content h3 {
font-family: var(--font-headline);
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
color: #07130D;
margin: 1.75rem 0 .5rem;
}
.gbp-legal-content p { margin: 0 0 1rem; }
.gbp-legal-content ul, .gbp-legal-content ol {
padding-left: 1.5rem;
margin: 0 0 1rem;
}
.gbp-legal-content li { margin-bottom: .4rem; }
.gbp-legal-content a { color: #203731; text-decoration: underline; }
.gbp-legal-content a:hover { color: #8A6200; }
.gbp-legal-content strong { color: #07130D; font-weight: 600; }
.gbp-legal-content .legal-table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0 1.5rem;
font-size: .9rem;
}
.gbp-legal-content .legal-table th {
background: #07130D;
color: #FFB612;
font-family: var(--font-headline);
font-size: .75rem;
text-transform: uppercase;
letter-spacing: .08em;
padding: 10px 14px;
text-align: left;
}
.gbp-legal-content .legal-table td {
padding: 9px 14px;
border-bottom: 1px solid rgba(7,19,13,.1);
vertical-align: top;
}
.gbp-legal-content .legal-table tr:nth-child(even) td { background: rgba(7,19,13,.04); }
.gbp-legal-content .legal-highlight {
background: rgba(255,182,18,.1);
border-left: 3px solid #FFB612;
padding: 14px 18px;
border-radius: 0 6px 6px 0;
margin: 1.5rem 0;
font-size: .9375rem;
} body.single-post,
body.single-post #page,
body.single-post #content,
body.single-post .gbp-site-wrapper,
body.single-post .gbp-main {
background-color: #F8F5EE !important;
} body.single-post .gbp-article-reading {
background: #F8F5EE;
} body.single-post .gbp-article-below {
background: #EDE8DF;
border-top: 1px solid rgba(32, 55, 49, 0.10);
} body.single-post .gbp-section-label {
color: rgba(32, 55, 49, 0.55);
}
body.single-post .gbp-tag {
background: rgba(32, 55, 49, 0.08);
color: #203731;
border-color: rgba(32, 55, 49, 0.22);
}
body.single-post .gbp-tag:hover {
background: rgba(255, 182, 18, 0.12);
border-color: #FFB612;
color: #07130D;
} body.single-post .gbp-article-comments-wrap {
background: #F8F5EE;
border-top: 1px solid rgba(32, 55, 49, 0.12);
} body.single-post .gbp-comments__title {
color: #07130D;
}
body.single-post .gbp-comments__header {
border-bottom-color: rgba(32, 55, 49, 0.15);
} body.single-post .gbp-comment-auth {
background: rgba(32, 55, 49, 0.06);
border-color: rgba(32, 55, 49, 0.15);
}
body.single-post .gbp-comment-auth__title {
color: #07130D;
}
body.single-post .gbp-comment-auth__desc {
color: #555555;
} body.single-post #respond {
background: #FFFFFF;
border-color: rgba(32, 55, 49, 0.14);
box-shadow: 0 2px 14px rgba(32, 55, 49, 0.07);
}
body.single-post #respond:focus-within {
border-color: rgba(255, 182, 18, 0.50);
box-shadow: 0 2px 14px rgba(32, 55, 49, 0.07), 0 0 0 3px rgba(255, 182, 18, 0.10);
}
body.single-post #reply-title {
color: #07130D;
}
body.single-post #reply-title small a {
color: #FFB612;
} body.single-post .gbp-composer__user {
border-bottom-color: rgba(32, 55, 49, 0.10);
}
body.single-post .gbp-composer__username {
color: #203731;
} body.single-post #commentform .gbp-composer__textarea,
body.single-post #commentform textarea {
background: #FDFCFA;
border-color: rgba(32, 55, 49, 0.18);
color: #07130D;
}
body.single-post #commentform .gbp-composer__textarea::placeholder,
body.single-post #commentform textarea::placeholder {
color: rgba(32, 55, 49, 0.38);
}
body.single-post #commentform .gbp-composer__textarea:focus,
body.single-post #commentform textarea:focus {
border-color: rgba(255, 182, 18, 0.52);
box-shadow: 0 0 0 3px rgba(255, 182, 18, 0.10);
} body.single-post #commentform label {
color: rgba(32, 55, 49, 0.65);
}
body.single-post #commentform input[type="text"],
body.single-post #commentform input[type="email"],
body.single-post #commentform input[type="url"] {
background: #FDFCFA;
border-color: rgba(32, 55, 49, 0.18);
color: #07130D;
}
body.single-post #commentform input[type="text"]::placeholder,
body.single-post #commentform input[type="email"]::placeholder,
body.single-post #commentform input[type="url"]::placeholder {
color: rgba(32, 55, 49, 0.38);
}
body.single-post #commentform input[type="text"]:focus,
body.single-post #commentform input[type="email"]:focus,
body.single-post #commentform input[type="url"]:focus {
border-color: rgba(255, 182, 18, 0.52);
box-shadow: 0 0 0 3px rgba(255, 182, 18, 0.10);
} body.single-post .gbp-comment-thread {
margin-top: var(--space-2);
} body.single-post .gbp-comment-list .children {
border-left-color: rgba(255, 182, 18, 0.28);
} body.single-post .gbp-comment__card {
background: #FFFFFF;
border-color: rgba(32, 55, 49, 0.10);
box-shadow: 0 2px 10px rgba(32, 55, 49, 0.06);
}
body.single-post .gbp-comment__card:hover {
border-color: rgba(32, 55, 49, 0.22);
box-shadow: 0 4px 18px rgba(32, 55, 49, 0.10);
}
body.single-post .gbp-comment--reply .gbp-comment__card {
background: rgba(32, 55, 49, 0.03);
border-color: rgba(32, 55, 49, 0.08);
box-shadow: none;
} body.single-post .gbp-comment__avatar {
background: rgba(32, 55, 49, 0.08);
border-color: rgba(255, 182, 18, 0.38);
} body.single-post .gbp-comment__author,
body.single-post .gbp-comment__author a {
color: #07130D;
}
body.single-post .gbp-comment__author a:hover {
color: #FFB612;
}
body.single-post .gbp-comment__time {
color: rgba(32, 55, 49, 0.50);
} body.single-post .comment-reply-link {
color: rgba(32, 55, 49, 0.52);
}
body.single-post .comment-reply-link:hover {
color: #203731;
background: rgba(32, 55, 49, 0.07);
} body.single-post .gbp-comment-like {
color: rgba(32, 55, 49, 0.52);
}
body.single-post .gbp-comment-like:hover:not(:disabled) {
color: #E05C7B;
background: rgba(224, 92, 123, 0.08);
}
body.single-post .gbp-comment-like.is-liked {
color: #E05C7B;
}
body.single-post .gbp-comment-like:disabled {
opacity: 0.30;
} body.single-post .gbp-comment__body {
color: rgba(7, 19, 13, 0.78);
} body.single-post .gbp-comments-closed {
background: rgba(32, 55, 49, 0.05);
border-color: rgba(32, 55, 49, 0.12);
color: rgba(32, 55, 49, 0.60);
} body.single-post .gbp-comment-pagination {
border-top-color: rgba(32, 55, 49, 0.12);
} body.single-post .gbp-comment__edit-btn,
body.single-post .gbp-comment__delete-btn {
color: rgba(32, 55, 49, 0.45);
}
body.single-post .gbp-comment__edit-btn:hover {
color: #203731;
background: rgba(32, 55, 49, 0.08);
}
body.single-post .gbp-comment__delete-btn:hover {
color: #C0392B;
background: rgba(192, 57, 43, 0.08);
} body.single-post #commentform .gbp-comment__edit-textarea,
body.single-post .gbp-comment__edit-textarea {
background: #FDFCFA;
border-color: rgba(32, 55, 49, 0.18);
color: #07130D;
}
body.single-post .gbp-comment__edit-textarea:focus {
border-color: rgba(255, 182, 18, 0.52);
box-shadow: 0 0 0 3px rgba(255, 182, 18, 0.10);
}
body.single-post .gbp-comment__cancel-edit-btn {
color: rgba(32, 55, 49, 0.50);
}
body.single-post .gbp-comment__cancel-edit-btn:hover {
color: #203731;
}  .gbp-profile {
min-height: 70vh;
background: #F8F5EE;
} .gbp-profile__hero {
position: relative;
background: #203731;
border-top: 3px solid var(--packers-gold);
padding: 56px 0 48px;
overflow: hidden;
}
.gbp-profile__hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 100% at 5% 0%, rgba(255,182,18,0.14) 0%, transparent 60%);
pointer-events: none;
z-index: 0;
}
.gbp-profile__hero-inner {
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 36px;
} .gbp-profile__avatar-wrap { flex-shrink: 0; }
.gbp-profile__avatar {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
display: block;
border: 3px solid rgba(255,182,18,0.55);
box-shadow:
0 0 0 6px rgba(255,182,18,0.10),
0 12px 40px rgba(0,0,0,0.55);
} .gbp-profile__name {
font-family: var(--font-headline);
font-size: clamp(2rem, 4.5vw, 3rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
color: var(--gbp-white-soft);
margin: 0 0 10px;
line-height: 1;
} .gbp-profile__since-badge {
display: inline-block;
font-family: var(--font-headline);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.10em;
color: var(--gbp-muted);
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.12);
border-radius: var(--radius-pill);
padding: 3px 12px;
margin-bottom: 20px;
} .gbp-profile__stats {
display: flex;
gap: 32px;
margin-bottom: 22px;
}
.gbp-profile__stat {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 3px;
}
.gbp-profile__stat-value {
font-family: var(--font-headline);
font-size: 2.2rem;
font-weight: 800;
color: var(--packers-gold);
line-height: 1;
}
.gbp-profile__stat-label {
font-size: var(--text-xs);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.10em;
color: var(--gbp-muted);
}
.gbp-profile__actions { margin-top: 4px; } .gbp-profile__body {
padding-top: 52px;
padding-bottom: 80px;
} .gbp-profile__section-title {
font-family: var(--font-headline);
font-size: var(--text-h3);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.02em;
color: var(--packers-green);
margin: 0 0 28px;
display: flex;
align-items: baseline;
gap: 10px;
}
.gbp-profile__section-name { color: var(--packers-gold); }
.gbp-profile__count-badge {
font-size: var(--text-xs);
font-weight: 700;
background: rgba(32,55,49,0.08);
color: var(--packers-green);
border: 1px solid rgba(32,55,49,0.18);
border-radius: var(--radius-pill);
padding: 2px 9px;
vertical-align: middle;
letter-spacing: 0.04em;
} .gbp-profile__comments {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.gbp-profile__comment-item {
background: #FFFFFF;
border: 1px solid rgba(32,55,49,0.08);
border-radius: 10px;
padding: 18px 22px;
box-shadow: 0 2px 8px rgba(7,19,13,0.06);
transition: all var(--transition-base);
}
.gbp-profile__comment-item:hover {
box-shadow: 0 8px 32px rgba(7,19,13,0.14);
transform: translateY(-3px);
border-color: rgba(32,55,49,0.15);
}
.gbp-profile__comment-meta {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
flex-wrap: wrap;
}
.gbp-profile__comment-post {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: var(--text-xs);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--packers-green);
text-decoration: none;
transition: color var(--transition-fast);
}
.gbp-profile__comment-post:hover { color: var(--packers-gold); }
.gbp-profile__comment-date {
font-size: var(--text-xs);
color: #3D3D3D;
opacity: 0.55;
margin-left: auto;
}
.gbp-profile__comment-text {
font-size: var(--text-sm);
color: #3D3D3D;
line-height: var(--lh-relaxed);
margin: 0 0 10px;
}
.gbp-profile__comment-link {
font-family: var(--font-headline);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--packers-green);
text-decoration: none;
transition: color var(--transition-fast);
}
.gbp-profile__comment-link:hover { color: var(--packers-gold); }
.gbp-profile__more-note {
margin-top: 20px;
font-size: var(--text-sm);
color: #3D3D3D;
opacity: 0.55;
text-align: center;
} .gbp-profile__empty {
text-align: center;
padding: 64px 0;
color: #3D3D3D;
opacity: 0.45;
}
.gbp-profile__empty svg { display: block; margin: 0 auto 16px; }
.gbp-profile__empty p { font-size: var(--text-md); } @media (max-width: 600px) {
.gbp-profile__hero { padding: 40px 0 36px; }
.gbp-profile__hero-inner {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.gbp-profile__avatar { width: 96px; height: 96px; }
.gbp-profile__name { font-size: clamp(1.6rem, 7vw, 2.4rem); }
.gbp-profile__section-title { font-size: var(--text-h4); flex-wrap: wrap; }
.gbp-profile__comment-date { margin-left: 0; }
}  .gbp-accsettings {
background: #F8F5EE;
min-height: 80vh;
} .gbp-accsettings__hero {
position: relative;
background: var(--packers-green);
border-top: 3px solid var(--packers-gold);
border-bottom: 3px solid var(--packers-gold);
padding: 40px 0 36px;
overflow: hidden;
}
.gbp-accsettings__hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 55% 90% at 8% 0%, rgba(255,182,18,0.12) 0%, transparent 65%);
pointer-events: none;
}
.gbp-accsettings__hero-inner {
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 24px;
} .gbp-accsettings__avatar-wrap {
position: relative;
flex-shrink: 0;
width: 90px;
height: 90px;
border-radius: 50%;
cursor: pointer;
}
.gbp-accsettings__avatar {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(255,182,18,0.50);
box-shadow: 0 0 0 5px rgba(255,182,18,0.10), 0 8px 28px rgba(0,0,0,0.50);
display: block;
transition: border-color .2s;
}
.gbp-accsettings__avatar-wrap:hover .gbp-accsettings__avatar { border-color: var(--packers-gold); }
.gbp-accsettings__avatar-overlay {
position: absolute;
inset: 0;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(7,19,13,0.62);
opacity: 0;
cursor: pointer;
transition: opacity .2s;
color: var(--gbp-white-soft);
}
.gbp-accsettings__avatar-wrap:hover .gbp-accsettings__avatar-overlay { opacity: 1; }
.gbp-as-hidden-input { display: none; } .gbp-accsettings__hero-info { display: flex; flex-direction: column; gap: 4px; }
.gbp-accsettings__hero-badge {
display: inline-block;
font-size: 10px;
font-family: var(--font-headline);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--packers-gold);
background: rgba(255,182,18,0.10);
border: 1px solid rgba(255,182,18,0.22);
border-radius: var(--radius-sm);
padding: 2px 8px;
width: fit-content;
margin-bottom: 4px;
}
.gbp-accsettings__hero-name {
font-family: var(--font-headline);
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 800;
color: var(--gbp-white-soft);
letter-spacing: 0.03em;
text-transform: uppercase;
margin: 0;
line-height: 1.1;
}
.gbp-accsettings__hero-login {
font-size: var(--text-sm);
color: var(--gbp-muted);
margin: 0;
}
.gbp-accsettings__hero-back {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12px;
color: var(--gbp-muted);
text-decoration: none;
margin-top: 8px;
transition: color .18s;
width: fit-content;
}
.gbp-accsettings__hero-back:hover { color: var(--packers-gold); } .gbp-accsettings__body {
max-width: 780px;
padding: 40px 24px 80px;
} .gbp-as-section {
background: #FFFFFF;
border: 1px solid rgba(32,55,49,0.08);
border-radius: 10px;
overflow: hidden;
margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(7,19,13,0.06);
}
.gbp-as-section__head {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 24px;
background: rgba(32,55,49,0.04);
border-bottom: 1px solid rgba(32,55,49,0.08);
position: relative;
}
.gbp-as-section__icon { color: var(--packers-green); flex-shrink: 0; }
.gbp-as-section__title {
font-family: var(--font-headline);
font-size: var(--text-h4, 1.1rem);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--packers-green);
margin: 0;
}
.gbp-as-section__num {
font-family: var(--font-headline);
font-size: 2rem;
font-weight: 900;
color: var(--packers-green);
opacity: 0.10;
line-height: 1;
margin-left: auto;
user-select: none;
}
.gbp-as-section__body {
padding: 28px 24px 24px;
display: flex;
flex-direction: column;
gap: 20px;
} .gbp-as-avatar-row {
display: flex;
align-items: flex-start;
gap: 24px;
}
.gbp-as-avatar-big-wrap {
position: relative;
flex-shrink: 0;
width: 120px;
height: 120px;
border-radius: 50%;
cursor: pointer;
}
.gbp-as-avatar-big {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(32,55,49,0.25);
display: block;
transition: border-color .2s;
box-shadow: 0 4px 16px rgba(7,19,13,0.12);
}
.gbp-as-avatar-big-wrap:hover .gbp-as-avatar-big { border-color: var(--packers-gold); }
.gbp-as-avatar-big-overlay {
position: absolute;
inset: 0;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 4px;
background: rgba(7,19,13,0.65);
opacity: 0;
cursor: pointer;
transition: opacity .2s;
color: var(--gbp-white-soft);
font-size: 11px;
font-weight: 600;
}
.gbp-as-avatar-big-wrap:hover .gbp-as-avatar-big-overlay { opacity: 1; }
.gbp-as-avatar-info { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.gbp-as-avatar-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .gbp-as-row-2col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.gbp-as-field {
display: flex;
flex-direction: column;
gap: 6px;
}
.gbp-as-label {
font-size: 12px;
font-weight: 600;
color: #3D3D3D;
letter-spacing: 0.04em;
text-transform: uppercase;
display: flex;
align-items: baseline;
gap: 6px;
}
.gbp-as-label-note {
font-size: 11px;
font-weight: 400;
text-transform: none;
letter-spacing: 0;
color: rgba(61,61,61,0.55);
}
.gbp-as-input {
background: #FAFAF7;
border: 1px solid rgba(32,55,49,0.18);
border-radius: 7px;
color: #1A1A1A;
font-family: var(--font-body);
font-size: 0.875rem;
padding: 10px 13px;
outline: none;
transition: border-color .18s, box-shadow .18s;
width: 100%;
box-sizing: border-box;
-webkit-appearance: none;
}
.gbp-as-input:focus {
border-color: var(--packers-green);
box-shadow: 0 0 0 3px rgba(32,55,49,0.10);
}
.gbp-as-input::placeholder { color: rgba(61,61,61,0.40); }
.gbp-as-textarea {
resize: vertical;
min-height: 80px;
line-height: 1.5;
}
.gbp-as-char-count {
font-size: 11px;
color: rgba(61,61,61,0.45);
text-align: right;
margin-top: -2px;
}
.gbp-as-hint {
font-size: 12px;
color: rgba(61,61,61,0.55);
margin: 0;
line-height: 1.5;
} .gbp-as-readonly-val {
font-size: 0.875rem;
color: #3D3D3D;
background: rgba(32,55,49,0.04);
border: 1px solid rgba(32,55,49,0.12);
border-radius: 7px;
padding: 10px 13px;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.gbp-as-readonly-note {
font-size: 11px;
color: rgba(61,61,61,0.45);
} .gbp-as-pw-wrap {
position: relative;
display: flex;
align-items: center;
}
.gbp-as-pw-wrap .gbp-as-input { padding-right: 40px; }
.gbp-as-pw-toggle {
position: absolute;
right: 0;
top: 0; bottom: 0;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
cursor: pointer;
color: #3D3D3D;
opacity: 0.45;
transition: opacity .18s;
padding: 0;
}
.gbp-as-pw-toggle:hover { opacity: 1; color: var(--packers-green); } .gbp-as-strength {
display: flex;
align-items: center;
gap: 10px;
margin-top: 6px;
}
.gbp-as-strength__bar {
flex: 1;
height: 4px;
background: rgba(32,55,49,0.10);
border-radius: 2px;
overflow: hidden;
}
.gbp-as-strength__fill {
height: 100%;
width: 0;
border-radius: 2px;
transition: width .3s, background .3s;
}
.gbp-as-strength__label {
font-size: 11px;
font-weight: 600;
color: #3D3D3D;
white-space: nowrap;
min-width: 80px;
} .gbp-as-msg {
padding: 11px 15px;
border-radius: 7px;
font-size: 0.875rem;
line-height: 1.4;
}
.gbp-as-msg--ok {
background: rgba(32,111,49,0.08);
border: 1px solid rgba(32,111,49,0.28);
color: #1a6b2e;
}
.gbp-as-msg--error {
background: rgba(180,40,40,0.07);
border: 1px solid rgba(180,40,40,0.25);
color: #a52020;
}
.gbp-as-msg--warn {
background: rgba(160,100,0,0.07);
border: 1px solid rgba(160,100,0,0.22);
color: #7a5000;
} .gbp-as-form-footer {
display: flex;
align-items: center;
gap: 12px;
padding-top: 4px;
border-top: 1px solid rgba(32,55,49,0.08);
} @media (max-width: 640px) {
.gbp-accsettings__hero { padding: 28px 0 24px; }
.gbp-accsettings__hero-inner { gap: 16px; }
.gbp-accsettings__avatar-wrap,
.gbp-accsettings__avatar { width: 68px; height: 68px; }
.gbp-accsettings__body { padding: 24px 16px 60px; }
.gbp-as-section__body { padding: 20px 16px 18px; }
.gbp-as-row-2col { grid-template-columns: 1fr; }
.gbp-as-avatar-row { flex-direction: column; align-items: center; text-align: center; }
.gbp-as-avatar-actions { justify-content: center; }
} .gbp-auth-hero {
background: var(--packers-green);
border-bottom: 3px solid var(--packers-gold);
padding: 48px 0 40px;
}
.gbp-auth-hero__inner {
max-width: 520px;
margin: 0 auto;
padding: 0 24px;
}
.gbp-auth-hero__label {
display: inline-block;
font-family: var(--font-condensed);
font-size: .75rem;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--packers-gold);
margin-bottom: 8px;
}
.gbp-auth-hero__title {
font-family: var(--font-condensed);
font-size: clamp(2rem, 5vw, 2.8rem);
font-weight: 800;
color: #fff;
text-transform: uppercase;
letter-spacing: -.01em;
margin: 0;
}
.gbp-auth-wrap {
background: #F8F5EE;
min-height: 60vh;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 48px 24px 80px;
}
.gbp-auth-card {
background: #fff;
border: 1px solid rgba(32,55,49,.12);
border-radius: 12px;
padding: 36px 40px 40px;
width: 100%;
max-width: 480px;
box-shadow: 0 4px 24px rgba(7,19,13,.07);
}
.gbp-auth-error {
background: #fef2f2;
border: 1px solid #fca5a5;
border-radius: 8px;
color: #dc2626;
font-size: .875rem;
padding: 12px 16px;
margin-bottom: 20px;
}
.gbp-auth-form { display: flex; flex-direction: column; gap: 18px; }
.gbp-auth-field { display: flex; flex-direction: column; gap: 6px; }
.gbp-auth-label {
font-family: var(--font-condensed);
font-size: .8125rem;
font-weight: 700;
letter-spacing: .05em;
text-transform: uppercase;
color: var(--packers-green);
}
.gbp-auth-input {
border: 1.5px solid rgba(32,55,49,.2);
border-radius: 8px;
padding: 10px 14px;
font-size: 1rem;
font-family: var(--font-body);
color: #07130D;
background: #fff;
transition: border-color .2s;
width: 100%;
-webkit-text-fill-color: #07130D;
}
.gbp-auth-input:focus { outline: none; border-color: var(--packers-green); }
.gbp-auth-hint { font-size: .75rem; color: #6b7280; }
.gbp-auth-remember {
display: flex;
align-items: center;
gap: 8px;
font-size: .875rem;
color: #07130D;
}
.gbp-auth-remember input[type="checkbox"] {
width: 16px;
height: 16px;
accent-color: var(--packers-green);
flex-shrink: 0;
}
.gbp-auth-submit { width: 100%; justify-content: center; margin-top: 4px; }
.gbp-auth-lost {
text-align: center;
margin-top: 16px;
font-size: .875rem;
}
.gbp-auth-lost a { color: var(--packers-green); text-decoration: underline; }
.gbp-auth-switch {
text-align: center;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(32,55,49,.1);
font-size: .875rem;
color: #6b7280;
}
.gbp-auth-switch a { color: var(--packers-green); font-weight: 600; text-decoration: none; }
.gbp-auth-switch a:hover { text-decoration: underline; }
@media (max-width: 540px) {
.gbp-auth-card { padding: 24px 20px 28px; }
} .gbp-author-hero {
background: var(--packers-green);
border-bottom: 3px solid var(--packers-gold);
padding: clamp(48px, 8vw, 80px) var(--section-padding-x);
}
.gbp-author-hero__inner {
display: flex;
align-items: center;
gap: var(--space-8);
}
.gbp-author-hero__avatar {
width: 120px;
height: 120px;
border-radius: 50%;
border: 3px solid var(--packers-gold);
object-fit: cover;
flex-shrink: 0;
}
.gbp-author-hero__eyebrow {
font-family: var(--font-condensed);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--packers-gold);
margin-bottom: var(--space-1);
}
.gbp-author-hero__name {
font-family: var(--font-headline);
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.03em;
color: #F8F5EE;
margin-bottom: var(--space-3);
line-height: 1;
}
.gbp-author-hero__bio {
color: rgba(248, 245, 238, 0.75);
font-size: 1rem;
max-width: 560px;
margin-bottom: var(--space-3);
}
.gbp-author-hero__count {
font-family: var(--font-condensed);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255, 182, 18, 0.65);
}
.gbp-author-body {
background: #F8F5EE;
padding: var(--space-10) var(--section-padding-x) var(--space-16);
}
.gbp-author-search {
max-width: 640px;
margin: 0 auto var(--space-10);
}
.gbp-author-body .gbp-search-form__input {
-webkit-text-fill-color: #07130D;
color: #07130D;
}
.gbp-author-empty {
text-align: center;
padding: var(--space-12) 0;
color: var(--gbp-text-muted);
font-size: 1.05rem;
}
@media (max-width: 600px) {
.gbp-author-hero__inner {
flex-direction: column;
text-align: center;
gap: var(--space-5);
}
.gbp-author-hero__bio { margin-left: auto; margin-right: auto; }
}  .gbp-qn-mobile-filter-bar {
display: none;
margin-bottom: 24px;
}
@media (max-width: 767px) {
.gbp-qn-mobile-filter-bar { display: block; }
} .gbp-qn-type-trigger {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
width: 100%;
padding: 11px 18px;
background: #FFFFFF;
border: 1.5px solid rgba(32,55,49,0.22);
border-radius: 6px;
color: #203731;
font-family: 'Barlow Condensed', sans-serif;
font-size: .9rem;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
cursor: pointer;
transition: background .2s, border-color .2s;
}
.gbp-qn-type-trigger:hover { background: #f5f5f5; border-color: #203731; }
.gbp-qn-type-trigger[aria-expanded="true"] { background: #203731; color: #FFB612; border-color: #203731; } .gbp-qn-type-sheet[hidden] { display: none; }
.gbp-qn-type-sheet {
position: fixed;
inset: 0;
z-index: 9999;
}
.gbp-qn-type-backdrop {
position: absolute;
inset: 0;
background: rgba(2,4,3,.55);
}
.gbp-qn-type-panel {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #F8F5EE;
border-top: 3px solid #203731;
border-radius: 16px 16px 0 0;
padding: 12px 20px 32px;
animation: gbhi-sheet-up .28s cubic-bezier(0.32,0,0.67,0) forwards;
}
.gbp-qn-type-handle {
width: 40px; height: 4px;
background: rgba(32,55,49,.18);
border-radius: 2px;
margin: 0 auto 16px;
}
.gbp-qn-type-title {
font-family: 'Barlow Condensed', sans-serif;
font-size: .75rem;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: #203731;
margin: 0 0 14px;
}
.gbp-qn-type-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 2px;
}
.gbp-qn-type-item {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 11px 16px;
background: none;
border-radius: 6px;
color: #203731;
font-family: 'Barlow Condensed', sans-serif;
font-size: 1rem;
font-weight: 700;
letter-spacing: .04em;
text-decoration: none;
transition: background .15s;
}
.gbp-qn-type-item:hover { background: rgba(32,55,49,.06); color: #203731; }
.gbp-qn-type-item.is-active { background: rgba(255,182,18,.12); }
.gbp-qn-type-check { flex-shrink: 0; color: #203731; } .gbp-qn-archive-filters--desktop {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 28px;
}
@media (max-width: 767px) {
.gbp-qn-archive-filters--desktop { display: none; }
}