﻿/* Kleiner Hero */
.fewo-hero-small {
    height: 200px;
    position: relative;
    background: url('img/Eisstadion_Davos.jpg') center/cover no-repeat;
    filter: brightness(70%);
}

    .fewo-hero-small .fewo-hero-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-shadow: 0 0 12px rgba(0,0,0,0.45);
    }

/* Content Card */
.fewo-service-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* List Design */
.fewo-service-list {
    padding-left: 0;
    list-style: none;
}

    .fewo-service-list li {
        padding: 8px 0;
        font-size: 16px;
        color: #555;
        display: flex;
        align-items: flex-start;
    }

        .fewo-service-list li::before {
            content: "•";
            font-size: 20px;
            color: #4e66f8;
            margin-right: 10px;
            line-height: 14px;
        }

/* Dezente, moderne Page Titles */
.fewo-page-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #222;
}

