.wwd{
--blue: #2f69b3;
--text: #1f2a37;
--muted: #5b6b82;
--pill-purple: #7b78b8;
--pill-red: #b53a3a;
--pill-redSoft: #c85f5f;
background: #fff;
padding: clamp(32px, 5vw, 72px) 16px;
}
.wwd__inner{
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
gap: clamp(24px, 4vw, 56px);
align-items: start;
}
.wwd__left{
display: grid;
grid-template-columns: 10px minmax(0, 1fr);
gap: 18px;
align-items: start;
}
.wwd__bar{
width: 10px;
background: var(--blue);
border-radius: 10px;
align-self: stretch;
min-height: 120px;
}
.wwd__text{
min-width: 0;
}
.wwd__title{
margin: 0;
font-weight: 800;
line-height: 1.05;
color: var(--blue);
font-size: clamp(28px, 3.6vw, 56px);
letter-spacing: -0.02em;
}
.wwd__subtitle{
margin: 14px 0 28px;
color: var(--muted);
font-size: clamp(14px, 1.6vw, 18px);
line-height: 1.5;
}
.wwd__media{
margin: 0;
width: 100%;
border-radius: 22px;
overflow: hidden;
background:
radial-gradient(circle at 30% 30%, rgba(47,105,179,.20), transparent 45%),
radial-gradient(circle at 70% 60%, rgba(123,120,184,.22), transparent 50%),
#f3f4f6;
box-shadow: 0 10px 22px rgba(0,0,0,0.08);
aspect-ratio: 16 / 10;
}
.wwd__media img{
width: 100%;
height: 100%;
display: block;
object-position: center;
}
.wwd__right{
display: flex;
flex-direction: column;
align-items: stretch;
gap: 16px;
padding-top: 10px;
}
.wwd__list{
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.pill{
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: #fff;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
border-radius: 999px;
height: 64px;
padding: 0 34px;
width: 100%;
min-width: 0;
box-shadow: 0 10px 22px rgba(0,0,0,0.08);
transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.pill--sm{
height: 48px;
padding: 0 26px;
font-size: 18px;
letter-spacing: 0.04em;
width: fit-content;
align-self: flex-end;
}
.pill--purple{ background: var(--pill-purple); }
.pill--red{ background: var(--pill-red); }
.pill--redSoft{ background: var(--pill-redSoft); }
.pill:hover{
transform: translateY(-2px);
box-shadow: 0 14px 26px rgba(0,0,0,0.12);
filter: brightness(1.02);
}
.pill:active{ transform: translateY(0px); }
.brand-logo{
display: flex;
flex-direction: row-reverse;
}
.brand-logo img{
width: 4rem;
height: 4rem;
}
@media (max-width: 1024px){
.wwd__inner{
grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
}
}
@media (max-width: 900px){
.wwd__inner{
grid-template-columns: 1fr;
}
.wwd__right{
padding-top: 0;
}
.pill--sm{
width: 100%;
align-self: stretch;
}
.wwd__media{
aspect-ratio: 16 / 9;
}
.brand-logo{
display:none;
}
}