/* ==================================================================
   STANDARD-STYLES (Gilt standardmäßig für MOBILE & alle Geräte)
   ================================================================== */
header {
    /* Da es vorher unter 992px aktiv war, gilt es jetzt standardmäßig für Mobile */
    margin-top: 65px; 
}

.card {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 40px;
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 2px;
    background-clip: padding-box;
    min-height: 400px;
}

.card span.card-title {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.card .card-image {
    position: relative;
    overflow: hidden;
}

.card .card-image img {
    border-radius: 2px 2px 0 0;
    background-clip: padding-box;
    position: relative;
    z-index: -1;
}

.card .card-image span.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
}

.card .card-content {
    padding: 16px;
    border-radius: 0 0 2px 2px;
    background-clip: padding-box;
    box-sizing: border-box;
}

.card .card-content p {
    margin: 0;
    color: inherit;
}

.card .card-content span.card-title {
    line-height: 48px;
}

.card .card-action {
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    padding: 16px;
}

.card .card-action a {
    color: #ffab40;
    margin-right: 16px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.card .card-action a:hover {
    color: #ffd8a6;
    text-decoration: none;
}

/* ==================================================================
   DESKTOP-STYLES (Greift erst AB einer Bildschirmbreite von 900px)
   ================================================================== */
@media (min-width: 900px) {
    header {
        /* Setzt den oberen Abstand auf Desktop wieder zurück, 
           da die 65px nur für Mobile gelten sollten */
        margin-top: 0; 
    }
    
    /* Hier kannst du ab sofort alle CSS-Änderungen eintragen, 
       die NUR auf dem Desktop (ab 900px) für deine .card gelten sollen.
       Beispiel: 
       .card { min-height: 450px; } 
    */
}