feat: add consultation section

This commit is contained in:
2025-07-03 09:02:52 +03:00
parent 89d5946407
commit a8391964f1
11 changed files with 209 additions and 89 deletions

View File

@@ -0,0 +1,42 @@
.Related {
.Container {
margin: 0 auto;
width: rem(1540px);
display: grid;
grid-template-columns: auto 360px;
gap: 160px;
}
.Header {
font-family: $font-roboto;
font-weight: 300;
font-size: 32px;
line-height: 130%;
color: $color-text;
margin-bottom: 16px;
}
.Grid {
display: grid;
grid-template-columns: auto auto;
gap: 16px;
margin-bottom: 20px;
.Title {
font-family: $font-roboto;
font-weight: 500;
font-size: 20px;
line-height: 130%;
color: $color-text;
margin-bottom: 16px;
}
.Description {
font-family: $font-roboto;
font-weight: 400;
font-size: 16px;
line-height: 130%;
color: $color-text;
}
}
}