2026-01-10 13:42:14 +00:00
|
|
|
@use "hugo:vars" as v;
|
|
|
|
|
|
|
|
|
|
.half-section {
|
|
|
|
|
padding: 48px 95px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
2026-02-08 13:41:56 +00:00
|
|
|
& > div {
|
2026-01-10 13:42:14 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
max-width: calc(v.$max_content_width / 2);
|
|
|
|
|
}
|
2026-02-08 13:41:56 +00:00
|
|
|
|
|
|
|
|
@media (min-width: v.$bp_mobile) {
|
|
|
|
|
& > div {
|
|
|
|
|
flex: 0 0 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-01-10 13:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.half-section__content {
|
|
|
|
|
font-family: "Assistant";
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: v.$color_panel_text;
|
|
|
|
|
background: v.$color_panel_background;
|
|
|
|
|
padding: 34px;
|
|
|
|
|
}
|