/* ================================
   WBB2-STYLE LANDINGPAGE
   ================================ */

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    background: url('../images/bg.png');
    color: #000000;
    margin: 0;
    padding: 0;
}

/* Haupt-Container */
.page {
    width: 95%;
    max-width: 900px;
    margin: 20px auto;
}

/* Card im WBB2-Stil */
.card {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8); 
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8);
}

@media (max-width: 800px) {
    .card {
        grid-template-columns: 1fr;
    }
}

/* Badge oben */
.badge {
    display: inline-block;
    padding: 4px 10px;
    background: #DEE3E7;
    border: 1px solid #000000;
    border-radius: 10px;
    font-size: 10px;
    color: #003366;
    margin-bottom: 10px;
}

.badge-dot {
    display: none;
}

/* Titel */
h1 {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

h1 span {
    color: #006600;
}

/* Untertitel */
.subtitle {
    font-size: 11px;
    color: #000000;
    margin-bottom: 15px;
}

/* Meta-Infos */
.meta {
    margin: 10px 0;
    font-size: 10px;
}

.meta-item {
    margin-bottom: 4px;
}

.meta-dot {
    display: none;
}

/* Hinweisbox */
.highlight-box {
    background: #E8F0FF;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 10px;
    font-size: 10px;
    margin-top: 15px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8); 
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.8);
}

/* CTA-Bereich */
.cta-row {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* WBB2-Button */
.btn-primary {
    background: #4A7EBB url('../images/header_bg.png') repeat-x;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    color: #FFFFFF;
    cursor: pointer;
}

.btn-primary:hover {
    background: #003366;
}

/* Hinweistext */
.cta-note {
    font-size: 10px;
    color: #000000;
}

/* Rechte Spalte: Bildcontainer */
.visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-inner {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 10px;
    width: 100%;
    max-width: 260px;
    text-align: center;
}

.visual-image-wrap {
    padding: 10px;
}

.visual-image {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #000000;
}

/* Tag unten */
.visual-tag {
    margin-top: 8px;
    font-size: 10px;
    color: #003366;
}

/* Footer */
.footer {
    margin-top: 15px;
    background: #DEE3E7;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    font-size: 10px;
    color: #666666;
}
