/**
 * Aktionspreise Frontend Styles
 *
 * Base-Styles für alle Frontend-Shortcodes:
 * - Preis-Anzeige (short/long)
 * - Restplätze
 * - Aktions-Enddatum
 *
 * @package Aktionspreise
 */

/* =============================================================================
   PRICE DISPLAY
   ============================================================================= */

.price-short,
.price-long {
    display: inline;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* --- Strikethrough Price --- */

.price-strikethrough {
    text-decoration: line-through;
    font-weight: inherit;
    opacity: 0.7;
    margin-right: 0.3em;
}

/* --- Current/Promo Price --- */

.price-current {
    font-weight: bold;
    color: var(--promotion-promo-color, #2D8801);
}

/* --- Promo Link --- */

.price-promo-link {
    margin-left: 0.5em;
    color: inherit;
    text-decoration: underline;
}

.price-promo-link:hover {
    opacity: 0.8;
}

/* --- Promo Info --- */

.price-promo-info {
    font-style: normal;
    margin-left: 0.5em;
}

/* Kein doppelter Margin wenn Info in Link */
.price-promo-link .price-promo-info {
    margin-left: 0;
}

/* =============================================================================
   SEATS
   ============================================================================= */

.seats {
    display: inline;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
}

/* =============================================================================
   END DATE
   ============================================================================= */

.end-date {
    display: inline;
    font-style: normal;
    white-space: nowrap;
}
