2024-07-30 12:07:47 +02:00
|
|
|
.hero {
|
2024-07-31 08:50:49 +02:00
|
|
|
--padding-vertical: calc(var(--space-m) / 1.5);
|
2024-07-30 12:07:47 +02:00
|
|
|
display: grid;
|
2024-09-03 14:48:28 +02:00
|
|
|
grid-template-columns: 1.6fr 3fr;
|
|
|
|
|
column-gap: calc(var(--space-m) / 1.5);
|
2024-07-30 12:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-09-03 17:06:25 +02:00
|
|
|
.hero__text {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-30 12:07:47 +02:00
|
|
|
.hero__text h2 {
|
2024-09-03 14:48:28 +02:00
|
|
|
font-size: var(--font-size-xl);
|
2024-07-30 12:07:47 +02:00
|
|
|
width: 100%;
|
2024-07-31 18:29:16 +02:00
|
|
|
margin-bottom: var(--padding-vertical);
|
2024-07-30 12:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-09-04 14:23:32 +02:00
|
|
|
.hero__text h2.big {
|
|
|
|
|
font-size: var(--font-size-xxl);
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-30 12:07:47 +02:00
|
|
|
.hero__text h3 {
|
2024-09-13 15:29:02 +02:00
|
|
|
color: var(--color-season);
|
2024-09-03 14:48:28 +02:00
|
|
|
font-size: var(--font-size-h2);
|
|
|
|
|
}
|
|
|
|
|
.hero__text h3:nth-child(odd) {
|
|
|
|
|
text-align: end;
|
2024-07-30 12:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero__text p:not(:last-of-type) {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero__text p:first-of-type {
|
2024-07-31 18:29:16 +02:00
|
|
|
margin-top: var(--padding-vertical);
|
2024-07-30 12:07:47 +02:00
|
|
|
}
|
2024-09-03 17:06:25 +02:00
|
|
|
|
|
|
|
|
.hero__link {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.hero__link::before {
|
|
|
|
|
content: "→";
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
2024-09-10 15:23:24 +02:00
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
|
.hero__text h2 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero__text p:first-of-type {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero__link {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero {
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
}
|
|
|
|
|
}
|