.roots{
font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
background: #fff;
padding: clamp(22px, 4vw, 44px) 16px;
}
.roots__inner{
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 10px 1fr;
gap: 22px;
align-items: start;
}
.wwd__bar1{
width: 8px;
border-radius: 8px;
background: #111;
height: clamp(20px, 18vw, 80px);
margin-top: 6px;
grid-column: 1;
}
.roots__inner > :not(.wwd__bar1){
grid-column: 2;
}
.roots__title{
margin: 0 0 clamp(18px, 2.4vw, 34px);
font-weight: 800;
letter-spacing: -0.02em;
color: #111827;
font-size: clamp(28px, 3.6vw, 56px);
line-height: 1.05;
}
.roots__content p{
margin: 0;
font-size: clamp(16px, 3vw, 32px);
font-weight: 400;
color: #111;
line-height: 1.22;
letter-spacing: -0.01em;
}
.roots__content strong{
font-weight: 800;
}
.roots__link{
color: inherit;
text-decoration: none;
border-bottom: 2px solid rgba(17,17,17,0.55);
}
.roots__link:hover{
border-bottom-color: rgba(17,17,17,1);
}
@media (max-width: 640px){
.roots__inner{
grid-template-columns: 6px 1fr;
gap: 14px;
}
.wwd__bar{
width: 6px;
height: 120px;
}
}