/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	INGENIUMDESIGN
Theme URI: https://www.ingeniumdesign.de/
Author URI: https://www.ingeniumdesign.de/
*/

/*Add your own styles here:*/

.text-white {
    color: #FFFFFF !important;
}

.text-white a {
    color: #FFFFFF !important;
}

.text-white a:hover {
  color: var(--color-content-link-hover) !important;
}


/* Startseite Metro Style Boxen */

/* Grid-Container */
.w-grid.type_metro .w-grid-list {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Zwei Spalten: links breit, rechts schmal */
  grid-template-rows: 1fr 1fr; /* Zwei gleich hohe Zeilen */
  grid-gap: 3.0rem; /* Einheitlicher Abstand (Gutter) zwischen allen Elementen */
}

/* Großes Element links */
.w-grid.type_metro .w-grid-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3; /* Spannt sich über beide Zeilen */
}

.w-grid.type_metro .w-grid-item:nth-child(1) .w-grid-item-h {
	height: 100%;
}

.w-grid.type_metro .w-grid-item:nth-child(1) .w-grid-item-h .w-post-elm.post_image {
	height: 100%;
}

.w-grid.type_metro .w-grid-item:nth-child(1) h3 {
  font-size: 2.5rem !important;
}

/* Kleineres Element oben rechts */
.w-grid.type_metro .w-grid-item:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* Kleineres Element unten rechts */
.w-grid.type_metro .w-grid-item:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Post Content */

/* FAQ */
.post_content section div {
    margin-bottom: 3rem;
}

.post_content section div h3 {
    margin-bottom: 1rem;
    line-height: 1.4
}