/* =====================================================
   KIDS AM DÖNBERG E.V.
   PROJEKTE
   ===================================================== */


/* =====================================================
   PROJEKTSEKTIONEN
   ===================================================== */


/* =====================================================
   PROJEKTKARTEN
   ===================================================== */

.project-card {
    max-width: 900px;
}

.project-card-content h3 {
    margin: 0 0 16px;

    color: var(--blue);

    font-size: 1.35rem;
    line-height: 1.25;
}

.project-card-content p {
    margin: 0 0 16px;

    line-height: 1.65;
}

.project-card-content .button {
    margin-top: 24px;
}


/* =====================================================
   HAUPTPROJEKT
   ===================================================== */

.project-card-featured {
    display: grid;
    gap: 28px;

    max-width: none;
}

.project-card-image {
    overflow: hidden;

    border-radius: 24px;
}

.project-card-image img {
    display: block;

    width: 100%;
    height: auto;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (min-width: 768px) {

    .project-card-content h3 {
        font-size: 1.5rem;
    }

}

/* =====================================================
   Desktop
   ===================================================== */
@media (min-width: 1000px) {

    .project-card-featured {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        align-items: center;
        gap: 48px;
    }

    .project-card-content h3 {
        font-size: 1.5rem;
    }

}