/* Lager Anmeldung Plugin Styles */

.lager-anmeldung-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: 'Londrina Solid', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Card ===== */
.la-card {
    background: #f8f8f6;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(35, 62, 94, 0.06);
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    cursor: pointer;
}

.la-card:hover {
    box-shadow: 0 4px 14px rgba(35, 62, 94, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}

.la-card:active {
    transform: translateY(0);
}

/* ===== Header ===== */
.la-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.la-header-icon {
    font-size: 20px;
    color: #233E5E;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.la-title {
    font-size: 16px;
    font-weight: 900;
    color: #233E5E;
    font-family: 'Londrina Solid', sans-serif;
    line-height: 1.2;
    margin-right: auto;
}

.la-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Londrina Solid', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.la-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

/* ===== Motto ===== */
.la-motto {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Londrina Solid', sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ===== Date Row ===== */
.la-date-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.la-date-row ion-icon {
    font-size: 14px;
    color: #6b7280;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.la-date-row span {
    font-size: 14px;
    font-weight: 900;
    color: #233E5E;
    font-family: 'Londrina Solid', sans-serif;
}

/* ===== Deadline ===== */
.la-deadline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 10px;
}

.la-deadline ion-icon {
    font-size: 13px;
    color: #f59e0b;
    flex-shrink: 0;
    width: 13px;
    height: 13px;
}

.la-deadline span {
    font-size: 12px;
    color: #d97706;
    font-family: 'Londrina Solid', sans-serif;
    font-weight: 900;
}

/* ===== Bottom Row ===== */
.la-bottom-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

/* ===== CTA Pill ===== */
.la-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #233E5E;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Londrina Solid', sans-serif;
    white-space: nowrap;
    transition: background 0.2s;
}

.la-card:hover .la-cta {
    background: #1a2f4a;
}

.la-cta ion-icon {
    font-size: 12px;
    color: #fff;
    width: 12px;
    height: 12px;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
    .la-card {
        padding: 14px;
    }

    .la-header {
        flex-wrap: wrap;
    }

    .la-title {
        font-size: 15px;
    }
}
