36 lines
682 B
CSS
36 lines
682 B
CSS
.hero-stat-row {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.hero-stat {
|
|
flex: 1;
|
|
background: rgba(250, 250, 248, 0.04);
|
|
border: 1px solid rgba(250, 250, 248, 0.08);
|
|
padding: 1.2rem;
|
|
}
|
|
|
|
.hero-stat-num {
|
|
font-family: var(--deepdrft-font-display);
|
|
font-size: 2rem;
|
|
font-weight: 300;
|
|
color: var(--deepdrft-white);
|
|
line-height: 1;
|
|
}
|
|
|
|
.hero-stat-label {
|
|
font-family: var(--deepdrft-font-mono);
|
|
font-size: 0.58rem;
|
|
letter-spacing: 0.2em;
|
|
color: rgba(250, 250, 248, 0.4);
|
|
text-transform: uppercase;
|
|
margin-top: 0.4rem;
|
|
}
|
|
|
|
@media (max-width: 599px) {
|
|
.hero-stat-row {
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
}
|