/**
 * Angebote Frontend Styles
 */

/* Grid Layout */
.bc-angebote-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.bc-spalten-1 { grid-template-columns: 1fr; }
.bc-spalten-2 { grid-template-columns: repeat(2, 1fr); }
.bc-spalten-3 { grid-template-columns: repeat(3, 1fr); }
.bc-spalten-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive */
@media (max-width: 1024px) {
    .bc-spalten-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .bc-spalten-3,
    .bc-spalten-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .bc-spalten-2,
    .bc-spalten-3,
    .bc-spalten-4 { grid-template-columns: 1fr; }
}

/* Box */
.bc-angebot-box {
    padding: 20px;
    border-width: 1px;
    border-style: solid;
    transition: box-shadow 0.2s ease;
}

.bc-angebot-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Titel */
.bc-angebot-titel {
    font-size: 1em;
    font-weight: 600;
    margin: 0 0 5px 0;
    padding: 0;
    line-height: 1.3;
}

/* Dauer */
.bc-angebot-dauer {
    font-size: 0.875em;
    margin-bottom: 10px;
}

/* Preis */
.bc-angebot-preis {
    font-size: 1.1em;
    font-weight: 600;
}

.bc-angebot-waehrung {
    font-weight: 400;
    margin-left: 3px;
}

/* Beschreibung */
.bc-angebot-beschreibung {
    font-size: 0.875em;
    margin-top: 10px;
    line-height: 1.4;
}

/* Keine Angebote */
.bc-keine-angebote {
    padding: 20px;
    background: #f5f5f5;
    text-align: center;
    color: #666;
}
