/* Workshop cards */

.workshop-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.workshop-info-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 112px;
    padding: 16px;
    border: 1px solid var(--schluter-border);
    background: #fff;
    color: #222;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.workshop-info-card span {
    font-weight: 700;
    line-height: 1.3;
}

.workshop-info-card small {
    margin-top: 12px;
    color: var(--schluter-orange-dark);
    font-weight: 600;
}

.workshop-info-card:hover,
.workshop-info-card:focus {
    background: #fff4e8;
    border-color: var(--schluter-orange);
    color: #111;
}

/* =========================================================
   Mobile / tablet
   ========================================================= */

@media (max-width: 991.98px) {
    
    .content-card,
    .workshop-menu,
    .invite-card,
    .contact-card {
        border-radius: 0;
    }

    .workshop-menu {
        margin-bottom: 8px;
    }

    .workshop-menu__link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    
    .content-card .card-body,
    .invite-card .card-body,
    .contact-card .card-body {
        padding: 18px;
    }

    .workshop-card-grid {
        grid-template-columns: 1fr;
    }

    .workshop-info-card {
        min-height: auto;
    }
}