48 lines
703 B
CSS
48 lines
703 B
CSS
.band {
|
|
background: var(--hive-900);
|
|
border-top: 1px solid var(--line-soft);
|
|
border-bottom: 1px solid var(--line-soft);
|
|
}
|
|
|
|
.header {
|
|
max-width: 720px;
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 32px;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.item {
|
|
border-top: 2px solid var(--honey-600);
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
color: var(--hive-50);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.body {
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: var(--hive-300);
|
|
}
|
|
|
|
@media (max-width: 1023px) {
|
|
.grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
.grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|