/* 1. DAS GRID (Kompakter) */
.gk-comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
    gap: 20px;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

/* 2. DIE BOX */
.gk-comic-card {
    position: relative;
    height: 360px;
    border: 2px solid #000;
    border-radius: 12px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
}

.gk-comic-card:hover {
    transform: translateY(-8px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

/* 3. DAS BILD */
.gk-comic-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.gk-comic-card:hover img {
    transform: scale(1.05);
}

/* Verlauf für bessere Lesbarkeit */
.gk-comic-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* 4. INHALT */
.gk-card-content {
    position: relative;
    z-index: 3;
    padding: 20px 18px;
    color: #fff;
    text-align: left;
}

.gk-card-title {
    font-family: 'Archivo Black', sans-serif;
    color: #f8db46;
    font-size: 32px;
    margin: 0 0 8px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 0 #000;
}

.gk-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    margin-bottom: 15px;
    line-height: 1.4;
    opacity: 0.95;
    min-height: 40px;
    letter-spacing: -0.1px;
}

.gk-card-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #000;
    font-size: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    align-self: flex-start;
}

.gk-comic-card:hover .gk-card-btn {
    background: #f8db46;
    color: #000;
}

@media (max-width: 768px) {
    .gk-comic-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
        padding: 10px 0;
    }

    .gk-comic-card {
        height: 280px;
        border-width: 2px;
    }

    .gk-card-content {
        padding: 15px 10px;
    }

    .gk-card-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .gk-card-text {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 10px;
        min-height: auto;
        letter-spacing: -0.2px;
    }

    .gk-card-btn {
        padding: 6px 15px;
        font-size: 10px;
    }
}