27 lines
522 B
CSS
27 lines
522 B
CSS
.container {
|
|
width: 100%;
|
|
margin-bottom: 24px;
|
|
padding: 16px;
|
|
background-color: #fff9fa;
|
|
border: 1px solid var(--wine-red);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.title {
|
|
color: var(--wine-red);
|
|
margin-bottom: 16px !important;
|
|
font-weight: 600 !important;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 8px !important;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
|
|
border: 1px solid #eaeaea;
|
|
}
|