diff --git a/assets/sass/styles.scss b/assets/sass/styles.scss
index be26ecffb..5dc3e127e 100644
--- a/assets/sass/styles.scss
+++ b/assets/sass/styles.scss
@@ -284,6 +284,20 @@ figure {
}
}
+.o-columns {
+ display: flex;
+ gap: 1rem;
+ align-items: flex-start;
+
+ @media (max-width: #{$breakpoint-md}) {
+ flex-direction: column;
+
+ > .o-columns__column {
+ flex-basis: 100% !important;
+ }
+ }
+}
+
.o-single {
padding: 2rem;
background-color: var(--bg-default);
diff --git a/content/operator/cd/index.de.md b/content/operator/cd/index.de.md
index e56c3029d..da579cf9c 100644
--- a/content/operator/cd/index.de.md
+++ b/content/operator/cd/index.de.md
@@ -261,18 +261,14 @@ Auf einigen Routen und Regionen gelten keine FIP Vergünstigungen, obwohl die Ve
Für eine Übersicht der Gültigkeit kann die Übersichtskarte hier verwendet werden. Ausführlichere Informationen finden sich in der Detailkarte und den konkreten Regelungen in den folgenden Abschnitten zu [ČD Kommerzielle Verbindungen (zuschlagspflichtig)](#čd-kommerzielle-verbindungen-zuschlagspflichtig) und [Verbindungen der ČD ohne FIP](#verbindungen-der-čd-ohne-fip).
-
+{{% columns %}}
+{{% column width="50%" %}}
+ für Tschechien (© Petr Duda)](cd-fip-map-overview-26.webp)
+{{% /column %}}
+{{% column width="50%" %}}
+ für Tschechien (© Petr Duda)](cd-fip-map-detail-26.webp)
+{{% /column %}}
+{{% /columns %}}
### ČD Kommerzielle Verbindungen (zuschlagspflichtig)
diff --git a/content/operator/cd/index.en.md b/content/operator/cd/index.en.md
index 38f38d4ab..df29fdfa1 100644
--- a/content/operator/cd/index.en.md
+++ b/content/operator/cd/index.en.md
@@ -261,18 +261,14 @@ On some routes and in some regions, FIP benefits are not valid, even if the serv
For an overview of validity, the overview map can be used here. More detailed information can be found in the detailed map and the specific rules in the following sections on [ČD Commercial Services (Surcharge Required)](#čd-commercial-services-surcharge-required) and [ČD Services Without FIP](#čd-services-without-fip).
-
+{{% columns %}}
+{{% column width="50%" %}}
+ for Czechia (© Petr Duda)](cd-fip-map-overview-26.webp)
+{{% /column %}}
+{{% column width="50%" %}}
+ for Czechia (© Petr Duda)](cd-fip-map-detail-26.webp)
+{{% /column %}}
+{{% /columns %}}
### ČD Commercial Services (Surcharge Required)
diff --git a/content/operator/cd/index.fr.md b/content/operator/cd/index.fr.md
index ff5853f9c..629ef2e69 100644
--- a/content/operator/cd/index.fr.md
+++ b/content/operator/cd/index.fr.md
@@ -261,18 +261,14 @@ Sur certaines lignes et dans certaines régions, les avantages FIP ne sont pas v
Pour un aperçu de la validité, la carte de vue d’ensemble peut être consultée ici. Des informations plus détaillées sont disponibles dans la carte détaillée et les règles spécifiques dans les sections suivantes sur les [Liaisons commerciales ČD (supplément obligatoire)](#liaisons-commerciales-čd-supplément-obligatoire) et les [Services ČD sans FIP](#services-čd-sans-fip).
-
+{{% columns %}}
+{{% column width="50%" %}}
+ pour la Tchéquie (© Petr Duda)](cd-fip-map-overview-26.webp)
+{{% /column %}}
+{{% column width="50%" %}}
+ pour la Tchéquie (© Petr Duda)](cd-fip-map-detail-26.webp)
+{{% /column %}}
+{{% /columns %}}
### Liaisons commerciales ČD (supplément obligatoire)
diff --git a/layouts/shortcodes/column.html b/layouts/shortcodes/column.html
new file mode 100644
index 000000000..96c9be975
--- /dev/null
+++ b/layouts/shortcodes/column.html
@@ -0,0 +1,3 @@
+
+ {{ .Inner }}
+
diff --git a/layouts/shortcodes/columns.html b/layouts/shortcodes/columns.html
new file mode 100644
index 000000000..30674970e
--- /dev/null
+++ b/layouts/shortcodes/columns.html
@@ -0,0 +1 @@
+{{ .Inner }}