mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-13 06:36:26 +03:00
65 lines
1.0 KiB
CSS
65 lines
1.0 KiB
CSS
/* Intro Section */
|
|
|
|
.intro {
|
|
padding: var(--s-2xl) 0;
|
|
}
|
|
|
|
.intro-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: var(--s-2xl);
|
|
align-items: start;
|
|
|
|
@media (max-width: 768px) {
|
|
grid-template-columns: 1fr;
|
|
gap: var(--s-xl);
|
|
}
|
|
}
|
|
|
|
.intro-content h2 {
|
|
font-size: clamp(1.75rem, 3vw, 2.5rem);
|
|
font-weight: 400;
|
|
line-height: 1.3;
|
|
color: var(--c-charcoal);
|
|
}
|
|
|
|
/* Meta Statistics */
|
|
.intro-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-lg);
|
|
padding-top: var(--s-md);
|
|
|
|
@media (max-width: 768px) {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.meta-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-xs);
|
|
}
|
|
|
|
.meta-number {
|
|
font-family: var(--font-display);
|
|
font-size: 3rem;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
color: var(--c-accent);
|
|
|
|
@media (max-width: 480px) {
|
|
font-size: 2.5rem;
|
|
}
|
|
}
|
|
|
|
.meta-label {
|
|
font-size: 0.875rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--c-ash);
|
|
font-weight: 500;
|
|
}
|
|
|