/* ==========================================
   Hochschulen Technik Stack Cards
   ========================================== */

#hochschulen-technik .content-container {
    max-width: 1280px;
    margin: 0 auto;
}

#hochschulen-technik .text-container {
    width: 100%;
}

#hochschulen-technik h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#hochschulen-technik > .content-container > .text-container > p {
    max-width: 900px;
    margin: 0 auto 38px auto;
    text-align: center;
}

#hochschulen-technik .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
    margin-bottom: 32px;
}

#hochschulen-technik .feature-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 18px 42px rgba(0,0,0,0.16);
    transform: none !important;
}

    #hochschulen-technik .feature-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 24px 56px rgba(0,0,0,0.22);
    }

    #hochschulen-technik .feature-card::before {
        content: "";
        display: block;
        height: 8px;
        background: linear-gradient(90deg, #7dd3fc, #ffffff);
    }

#hochschulen-technik .feature-content {
    padding: 24px 24px 26px 24px;
}

#hochschulen-technik .feature-card h3 {
    min-height: 0;
    margin: 0 0 12px 0;
    font-size: 1.45rem;
    line-height: 1.2;
    color: #0f172a;
}

#hochschulen-technik .feature-card p {
    font-size: 0.94rem;
    line-height: 1.55;
    color: #475569;
    margin-bottom: 18px;
    flex-grow: 0;
}

#hochschulen-technik .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#hochschulen-technik .feature-card li {
    position: relative;
    padding: 9px 0 9px 22px;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #1f2937;
    border-top: 1px solid rgba(15,23,42,0.08);
}

    #hochschulen-technik .feature-card li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 9px;
        color: #16a34a;
        font-weight: 800;
    }

    #hochschulen-technik .feature-card li b {
        color: #0f172a;
    }

#hochschulen-technik .feature-grid + p {
    max-width: 960px;
    margin: 18px auto 0 auto;
    text-align: center;
    color: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 1100px) {
    #hochschulen-technik .feature-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    #hochschulen-technik .feature-content {
        padding: 20px;
    }

    #hochschulen-technik .feature-card h3 {
        font-size: 1.25rem;
    }

    #hochschulen-technik .feature-card li {
        font-size: 0.86rem;
    }
}


/* ==========================================
   Zwischen-CTA Preise
   ========================================== */

.cta-strip {
    background: #0f172a;
    color: #fff;
}

    .cta-strip .content-container {
        padding-top: 34px;
        padding-bottom: 34px;
    }

.cta-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
}

.cta-strip h2 {
    margin: 0 0 8px 0;
    padding: 0 !important;
    font-size: 1.75rem;
    line-height: 1.2;
    color: #fff;
}

.cta-strip p {
    margin: 0;
    padding: 0 !important;
    max-width: 760px;
    color: rgba(255,255,255,0.82);
}

.cta-strip .cta-button {
    flex-shrink: 0;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-strip .cta-button {
        width: 100%;
        text-align: center;
    }
}


.feature-card a {
    text-decoration: none !important;
}


.feature-card-link {
    color: inherit;
    text-decoration: none !important;
}

    .feature-card-link:hover {
        color: inherit;
        background-color: inherit;
    }

    .feature-card-link:hover h3 {
        color: #000;
    }

.feature-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.feature-card-link:hover .feature-more {
    text-decoration: underline;
}

