24 lines
354 B
CSS
24 lines
354 B
CSS
.section {
|
|
}
|
|
|
|
.sectionTitle {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
line-height: 19px;
|
|
letter-spacing: 0.05em;
|
|
color: #292929;
|
|
margin: 24px 0;
|
|
}
|
|
|
|
.sectionGroup {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-gap: 12px;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.sectionGroup {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|