.mm-page {
    background: #f5f7fb;
    color: #222;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    width: 1200px;
    max-width: calc(100% - 10px);
    margin: 0 auto;
}

/* ===== TITLE ===== */
.mm-title-wrapper {
    padding: 25px 0;
    text-align: center;
}

.mm-title {
    display: inline-block;
    padding: 22px 60px;
    background: linear-gradient(90deg, #1976d2, #2196f3);
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
.mm-section {
    background: #fff;
    margin: 25px 0;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.mm-section h2 {
    margin-bottom: 18px;
    font-size: 26px;
    color: #0f4c81;
}

.mm-list {
    padding-left: 20px;
}

.mm-list li {
    margin-bottom: 10px;
}

/* ===== CARDS ===== */
.mm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mm-card {
    background: #f9fbff;
    border: 1px solid #e2ecf5;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}

.mm-card:hover {
    transform: translateY(-4px);
}

/* ===== GALLERY ===== */
.mm-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mm-gallery-item {
    height: 120px;
    background: #dde8f2;
    border-radius: 10px;
}

/* ===== STAFF ===== */
.mm-staff {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mm-staff-card {
    background: #f9fbff;
    border: 1px solid #e2ecf5;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.mm-staff-card:hover {
    transform: translateY(-5px);
}

.mm-staff-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

.mm-staff-img img {
    width: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .container {
        width: 100%;
    }

    .mm-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .mm-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .mm-staff {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telefon */
@media (max-width: 600px) {

    .mm-title {
        font-size: 18px;
        padding: 14px 20px;
    }

    .mm-section {
        padding: 15px;
    }

    .mm-section h2 {
        font-size: 20px;
    }

    .mm-cards,
    .mm-gallery,
    .mm-staff {
        grid-template-columns: 1fr;
    }

    .mm-staff-img {
        width: 90px;
        height: 90px;
    }

    .mm-card {
        padding: 15px;
    }

    .mm-staff-card {
        padding: 15px;
    }
}

.mm-gallery-item {
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.mm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.mm-gallery-item img:hover {
    transform: scale(1.05);
}