/* ================================================================
   BEWERTUNG PAGE — Rating system explanation
   ================================================================ */

.bw-header {
    padding: 140px 24px 60px;
    text-align: center;
    background: white;
}

.bw-hero-img {
    width: 240px;
    height: auto;
    margin-bottom: 24px;
}

.bw-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bw-header p {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content */
.bw-content {
    padding: 60px 0 80px;
    background: var(--off-white);
}

.bw-intro {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.bw-intro p {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Levels */
.bw-levels {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto 48px;
}

.bw-level {
    display: flex;
    align-items: center;
    gap: 28px;
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.bw-level-img {
    flex-shrink: 0;
    width: 120px;
}

.bw-level-img img {
    width: 100%;
    height: auto;
}

.bw-level-info h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bw-level-short {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
}

.bw-level-info p:last-child {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.6;
}

/* Disclaimer */
.bw-disclaimer {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--green);
}

.bw-disclaimer h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bw-disclaimer p {
    font-size: 0.92rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .bw-level {
        flex-direction: column;
        text-align: center;
    }

    .bw-level-img {
        width: 80px;
    }

    .bw-header h1 {
        font-size: 1.8rem;
    }

    .bw-hero-img {
        width: 160px;
    }
}
