.page-header .header-title {
    padding: 150px 0 !important;
}
.page-header .header-title h1 {
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}
.header-title {
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.project .project-content {
    margin: 0;
}
.single-project blockquote {
    margin-top: 40px;
    padding: 25px 30px;
    border-left: 4px solid #2991d6;
    background: #f5f7fa;
    font-style: italic;
}
.single-project blockquote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
}
.single-project blockquote cite span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

/*************************************
 * PDM 
 *************************************/

.fp-section-title h2, .fp-section-title.center h2 {
    margin-bottom: 0px;
}

/*************************************
 * PDM 
 *************************************/

.fk-pdm {
    padding: 40px 30px 40px 30px;
}

/* CARD */
.fk-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(.22,.61,.36,1);

    display: flex;
    flex-direction: column;
    height: 100%;
}
.fk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.fk-card h3 {
    font-size: 22px;
    margin: 15px 15px 8px;
    font-weight: 600;
    line-height: 1.3;
}
.fk-card p {
    font-size: 16px;
    color: #666;
    margin: 0 15px 15px;
    flex-grow: 1;
}

.fk-card-img {
    width: 100%;
    height: 180px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #ddd;
    border-radius: 6px;
}
.fk-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =========================================================
   CAROUSEL
========================================================= */

.fk-carousel {
    --fk-carousel-gap: 20px;
    --fk-carousel-items: 5;
    position: relative;
    padding: 80px 0 0;
}

.fk-carousel-track {
    display: flex;
    gap: var(--fk-carousel-gap);
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}

/* ITEM */
.fk-carousel-item {
    flex: 0 0 calc(
        (
            100% -
            (
                (var(--fk-carousel-items) - 1)
                * var(--fk-carousel-gap)
            )
        )
        / var(--fk-carousel-items)
    );
    max-width: calc(
        (
            100% -
            (
                (var(--fk-carousel-items) - 1)
                * var(--fk-carousel-gap)
            )
        )
        / var(--fk-carousel-items)
    );
}

/* Card bleibt wie gehabt */
.fk-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}