fix: shift hero copy slightly right

This commit is contained in:
devRaGonSa
2026-05-26 10:44:08 +02:00
parent 6c66535089
commit bf2d7a65cb

View File

@@ -24,6 +24,7 @@
.hero:not(.historical-hero) .hero__copy { .hero:not(.historical-hero) .hero__copy {
max-width: 980px; max-width: 980px;
align-content: center; align-content: center;
transform: translateX(clamp(18px, 2.2vw, 44px));
} }
.hero:not(.historical-hero) .hero__title { .hero:not(.historical-hero) .hero__title {
@@ -47,6 +48,10 @@
gap: 40px; gap: 40px;
} }
.hero:not(.historical-hero) .hero__copy {
transform: translateX(clamp(12px, 1.6vw, 24px));
}
.hero:not(.historical-hero) .hero__title { .hero:not(.historical-hero) .hero__title {
font-size: clamp(3.6rem, 5.5vw, 5.1rem); font-size: clamp(3.6rem, 5.5vw, 5.1rem);
} }