/* =========================================
   Portfolio – MM Stimme Modern
   ========================================= */

.portfolio-page {
    background:
        radial-gradient(circle at top right, rgba(0, 102, 102, 0.06), transparent 24%),
        linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

/* =========================================
   Hero
   ========================================= */

.portfolio-hero {
    padding: 88px 0 36px;
}

.portfolio-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 102, 102, 0.08);
    color: var(--ci-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-kicker-small {
    margin-bottom: 14px;
}

.portfolio-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.portfolio-intro {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6f6f;
}

.portfolio-hero-video {
    max-width: 760px;
    margin: 0 auto 28px;
}

/* =========================================
   Video
   ========================================= */

.portfolio-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 24px;
    background: #dfeaea;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.portfolio-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.portfolio-hero-actions {
    display: flex;
    justify-content: center;
}

/* =========================================
   Sections
   ========================================= */

.portfolio-section {
    padding: 32px 0 72px;
}

.portfolio-section.alt {
    background: linear-gradient(180deg, #f5fafa 0%, #eef7f7 100%);
}

.portfolio-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.portfolio-section-head h2,
.portfolio-cta-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 0;
}

/* =========================================
   Grid
   ========================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.portfolio-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
}

.portfolio-video-card {
    padding: 0;
}

/* =========================================
   CTA
   ========================================= */

.portfolio-cta-section {
    padding: 8px 0 88px;
}

.portfolio-cta-box {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #006666 0%, #004c4c 100%);
    box-shadow: 0 24px 60px rgba(0, 76, 76, 0.22);
}

.portfolio-cta-text h2,
.portfolio-cta-text p,
.portfolio-cta-text .portfolio-kicker {
    color: #ffffff;
}

.portfolio-cta-text .portfolio-kicker {
    background: rgba(255, 255, 255, 0.12);
}

.portfolio-cta-text p {
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.portfolio-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

/* Fallback für Buttons */
.portfolio-hero-actions .mm-btn,
.portfolio-hero-actions .mm-btn-primary,
.portfolio-cta-actions .mm-btn,
.portfolio-cta-actions .mm-btn-primary,
.portfolio-cta-actions .mm-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.portfolio-cta-actions .mm-btn-primary,
.portfolio-hero-actions .mm-btn-primary {
    background: #ffffff;
    color: var(--ci-primary);
    border: 1px solid #ffffff;
}

.portfolio-cta-actions .mm-btn-primary:hover,
.portfolio-hero-actions .mm-btn-primary:hover {
    background: #f1f7f7;
    color: var(--ci-primary-dark);
}

.portfolio-cta-actions .mm-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.portfolio-cta-actions .mm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-cta-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .portfolio-hero {
        padding: 70px 0 40px;
    }

    .portfolio-grid,
    .portfolio-grid-two {
        grid-template-columns: 1fr;
    }

    .portfolio-section {
        padding: 30px 0 55px;
    }

    .portfolio-cta-section {
        padding-bottom: 70px;
    }

    .portfolio-cta-box {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .portfolio-video {
        border-radius: 18px;
    }

    .portfolio-intro,
    .portfolio-cta-text p {
        font-size: 16px;
    }
}