/*
Theme Name: WeinInfoScan_Theme
Author: Frank Gabriel
Description: Child Theme auf Divi Basis
Version: 1.0
Template: Divi

This is the child theme for Divi theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/



/* Steuerung des Flaschenbildes auf bestimmte optimale Größe unabhängig von der Größe des Uploads */
.flaschenbild-wrapper {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px auto;
}

.flaschenbild-wrapper img.flaschenbild {
	max-height: 700px;
	max-width: 710px; /* ← Begrenzung der Breite am Desktop */
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease-in-out;
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .flaschenbild-wrapper img.flaschenbild {
        max-height: 500px;
        max-width: 400px;
    }
}

/* Smartphone */
@media screen and (max-width: 768px) {
    .flaschenbild-wrapper img.flaschenbild {
        max-height: 600px;
        max-width: 90%; /* flexible auf Mobilgeräten */
    }
}



/* Styling des Berichs Zusatzinfos */
.zusatzangaben-box {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.zusatzangaben-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.zusatzangaben-box .zusatzwerte {
    display: table;
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.zusatzangaben-box .zusatzwerte div {
    display: table-row;
}

.zusatzangaben-box .zusatzwerte div span {
    display: table-cell;
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
}

.zusatzangaben-box .zusatzwerte div span:first-child {
    font-weight: 500;
    color: #444;
    width: 50%;
}