/* ===== MODEL UBERSICHT & SEITEN ===== */

/* Modell Übersicht */

.model-overview-section {
    width: var(--sectionWidth);
    max-width: var(--columnWidth);
    margin: 0 auto;
    padding: 60px 20px 70px;
    box-sizing: border-box;
}

.model-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 76px;
    align-items: start;
}

/* Card */

.model-overview-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Image */

.model-overview-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--borderRadius);
    background: var(--headerBackground);
}

.model-overview-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Box */

.model-overview-info {
    position: relative;
    width: calc(100% - 60px);
    min-height: 174px;
    margin: -50px auto 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: var(--modelHeadline);
    border-radius: var(--borderRadius);
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: var(--boxShadowDarkbox);
}

/* Title */

.model-overview-title {
    flex: 0 0 auto;
    padding: 9px 14px;
    box-sizing: border-box;
    background: #252c39;
    color: var(--modelHeadline);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* Content */

.model-overview-content {
    flex: 1 1 auto;
    padding: 13px 14px 12px;
    box-sizing: border-box;
    color: var(--modelTitle);
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.model-overview-text {
    margin: 0 0 12px;
    font-weight: 700;
}

.model-overview-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.model-overview-list-item {
    position: relative;
    padding-left: 9px;
    box-sizing: border-box;
}

.model-overview-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--icon-color);
}

/* Link / CTA */

.model-overview-link {
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:  var(--boxOrangeBackground);
}

.model-overview-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: var(--modelHeadline);
    text-decoration: none;
    text-transform: uppercase;
}

.model-overview-link a:hover {
    background: var(--boxOrangeBackground);
}

/* ===== MODEL Seiten ===== */

.model-section {
    width: var(--sectionWidth);
	margin: 0 auto;
}

.model-column {
    max-width: var(--columnWidth);
    box-sizing: border-box;
    margin: 30px auto;
    padding: 40px;
    background-color: var(--modelBackground);
    border: 1px solid var(--modelBorder);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}

.headline-basis { border-bottom: 3px solid var(--priceBasis); }
.headline-plus { border-bottom: 3px solid var(--pricePlus); }
.headline-premium { border-bottom: 3px solid var(--pricePremium); }

.model-detail-title {
    margin: 0 0 8px 0;
    color: var(--modelTitle);
}

.model-detail-text {
    margin: 0 0 24px 0;
    color: var(--modelText);
}

.model-detail-title h3.title-block-start {
    margin-top: 40px;
}

.model-detail-text p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.model-detail-text p.text-block-end {
    margin-bottom: 20px;
}

.model-detail-bullets {
    margin: 16px 0;
}

.model-detail-bullet {
    position: relative;
    margin: 6px 0;
    padding-left: 22px;
    color: var(--modelText);
}

.model-detail-bullet::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--icon-color);
    font-weight: bold;
}

.grund-buttons .button-primary:hover {
    color: var(--buttonDark-Text);
}

/* ===== FOUNDING EDITION ===== */

/* Founding Headline */

.founding-headline {
    width: 100%;
    background: var(--headlineBackground);
}

.founding-headline-columns {
    width: 100%;
    max-width: none;
}

.founding-headline-center {
    width: 100%;
    text-align: center;
}

.founding-headline-center h1 {
    margin: 0;
    padding: 24px 20px;
    color: var(--modelHeadline);
}

.founding-headline-center h1 span {
    color: var(--foundingColor);
}

.founding-headline-text {
    margin: 0;
    text-align: center;
    font-size: 1.8rem;
    color: var(--modelHeadline);
}

/* ===== Founding Edition Hero ===== */

.founding-columns {
    display: grid;
    align-items: center;
   /* width: 100%; */
      width: 1200px;
    box-sizing: border-box;
    padding: 20px 20px 20px 20px;
    background-color: var(--headlineBackground);
}

.founding-intro {
    width: 100%;
    padding: 40px 0 80px 0;
    background: var(--headlineBackground);
}

/* 4 Founding Boxen */

.founding-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* einzelne Box */

.founding-box {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 18px 20px;
    background: var(--foundingBoxBackground);
    border-radius: var(--borderRadius);
    box-shadow:
        3px 4px 8px rgba(0, 0, 0, 0.25),
        0 2px 0 var(--foundingColor);
}

/* Icon */

.founding-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
}

.founding-box-icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Text der Boxen */

.founding-box-content {
    flex: 1;
    min-width: 0;
}

.founding-box-title {
    margin-bottom: 6px;
    color: var(--modelTitle);
    font-weight: 600;
}

.founding-box-text {
    line-height: 1.5;
    color: var(--modelText);
    overflow-wrap: break-word;
}

/* Founding Info Boxen */

.founding-info-section {
    width: 100%;
    padding-top: 60px;
    background: var(--foundingSectionBackground);
}

.founding-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.founding-boxes,
.founding-info-boxes {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.founding-info-box {
    width: 100%;
    min-width: 0;
    padding: 20px 40px 10px;
    background: var(--foundingBackground);
    border-radius: var(--borderRadius);
    box-shadow:
        3px 4px 8px rgba(0, 0, 0, 0.25),
        0 2px 0 var(--foundingColor);
    box-sizing: border-box;
}

.founding-info-title {
  margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--modelTitle);
}

.founding-info-text {
    color: var(--modelText);
    overflow-wrap: break-word;
}

.founding-info-text p.text-block-end {
    margin-bottom: 20px;
}

.founding-info-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 30px;
}

.founding-info-list-item {
    position: relative;
    padding-left: 12px;
    box-sizing: border-box;
}

.founding-info-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--icon-color);
}

.founding-buttons {
    margin-bottom: 60px;
}

/* ===== Model Tabelle Funktionen ===== */

.compare-head,
.compare-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        repeat(5, 90px);
    align-items: center;
    width: 100%;
}

/* Kopf */

.compare-head {
    font-weight: 700;
}

.compare-head > div {
    padding: 12px 10px;
    text-align: center;
}

@media (min-width: 768px) {
	.compare-head-title {
    	text-align: left !important;
	}
}

/* Zeilen */

.compare-row {
    min-height: 54px;
}

.compare-row > div {
    padding: 10px;
    box-sizing: border-box;
}

/* Textspalte */

.compare-text {
    min-width: 0;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: normal;
}

/* Statusspalten */

.compare-status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Icons */

.compare-status img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.compare-head {
    font-weight: 700;
    background-color: var(--boxOrangeBackground);
    color: var(--menueTitle);
    border-radius: 6px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.product-iconinfo {
    margin-top:10px;
}

.product-iconinfo img {
    width: 20px;
    height: 20px;
    margin: 0 6px 0 14px;
    vertical-align: middle;
    object-fit: contain;
}

.product-iconinfo img:first-child {
    margin-left: 0;
}