.nglb-box {
--nglb-accent: #6d2929;
--nglb-accent-dark: #572020;
--nglb-accent-soft: rgba(109, 41, 41, .08);
--nglb-text: #171717;
--nglb-muted: #5f6064;
--nglb-border: #e8e1df;
--nglb-bg: #ffffff;
position: relative;
box-sizing: border-box;
width: 100%;
margin: 34px 0;
overflow: hidden;
border: 1px solid var(--nglb-border);
border-radius: 14px;
background:
radial-gradient(circle at 100% 0%, rgba(109, 41, 41, .055), transparent 32%),
var(--nglb-bg);
box-shadow:
0 15px 38px rgba(31, 22, 20, .065),
0 2px 8px rgba(31, 22, 20, .035);
}
.nglb-box,
.nglb-box * {
box-sizing: border-box;
}
.nglb-box__topline {
height: 4px;
background: linear-gradient(90deg, var(--nglb-accent), #8b4242 72%, rgba(109, 41, 41, .48));
}
.nglb-box__inner {
padding: 27px 30px 29px;
}
.nglb-box__label {
display: inline-flex;
align-items: center;
min-height: 25px;
margin: 0 0 12px;
padding: 5px 9px;
border: 1px solid rgba(109, 41, 41, .15);
border-radius: 999px;
background: var(--nglb-accent-soft);
color: var(--nglb-accent);
font-size: 11px;
line-height: 1.15;
font-weight: 750;
letter-spacing: .055em;
text-transform: uppercase;
}
.nglb-box__headline {
max-width: 900px;
margin: 0 0 9px;
color: var(--nglb-text);
font-size: clamp(21px, 2.15vw, 27px);
line-height: 1.22;
font-weight: 750;
letter-spacing: -.018em;
}
.nglb-box__text {
max-width: 900px;
margin: 0;
color: var(--nglb-muted);
font-size: 15.5px;
line-height: 1.68;
}
.nglb-box__text p {
margin: 0;
}
.nglb-box__text p + p {
margin-top: 10px;
}
.nglb-box__action {
margin-top: 19px;
}
.nglb-box__button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 11px;
min-height: 48px;
padding: 0 19px;
border: 1px solid var(--nglb-accent);
border-radius: 8px;
background: var(--nglb-accent);
color: #fff !important;
font-size: 14px;
line-height: 1.2;
font-weight: 750;
text-decoration: none !important;
box-shadow: 0 8px 18px rgba(109, 41, 41, .18);
transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.nglb-box__action.is-full .nglb-box__button {
width: 100%;
}
.nglb-box__button:hover,
.nglb-box__button:focus {
border-color: var(--nglb-accent-dark);
background: var(--nglb-accent-dark);
color: #fff !important;
transform: translateY(-1px);
box-shadow: 0 10px 24px rgba(109, 41, 41, .22);
}
.nglb-box__button:focus-visible {
outline: 3px solid rgba(109, 41, 41, .22);
outline-offset: 3px;
}
.nglb-box__arrow {
display: inline-block;
font-size: 18px;
line-height: 1;
transition: transform .18s ease;
}
.nglb-box__button:hover .nglb-box__arrow {
transform: translateX(3px);
}
@media (max-width: 760px) {
.nglb-box {
margin: 27px 0;
border-radius: 12px;
}
.nglb-box__inner {
padding: 23px 21px 24px;
}
.nglb-box__headline {
font-size: 21px;
}
.nglb-box__text {
font-size: 15px;
line-height: 1.63;
}
.nglb-box__action {
margin-top: 17px;
}
.nglb-box__button {
width: 100%;
min-height: 49px;
padding-left: 16px;
padding-right: 16px;
}
}
@media (prefers-reduced-motion: reduce) {
.nglb-box__button,
.nglb-box__arrow {
transition: none;
}
}