/* Plugin Style: Craftwork4All Expiration */

/* --- 1. ETICHETTA ROSSA (CLOSED) --- */
.cwa-expired {
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
}
.cwa-expired:hover { opacity: 0.9; }

.cwa-expired h1::before,
.cwa-expired h2::before,
.cwa-expired h3::before,
.cwa-expired .entry-title::before {
    content: "CLOSED";
    display: inline-block;
    background-color: #d9534f; /* Rosso */
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}
.cwa-expired h1 a, .cwa-expired h2 a, .cwa-expired h3 a, .cwa-expired .entry-title a {
    color: #666 !important;
}

/* --- 2. ETICHETTA VERDE (OPEN) --- */
/* Questa classe si applica se c'è una data ed è futura */
.cwa-open {
    position: relative;
}

.cwa-open h1::before,
.cwa-open h2::before,
.cwa-open h3::before,
.cwa-open .entry-title::before {
    content: "OPEN";
    display: inline-block;
    background-color: #28a745; /* Verde Bootstrap standard */
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* --- 3. PAGINA SINGOLA (Box Rosso Avviso) --- */
.cwa-expired-notice {
    text-align: center;
    color: #d9534f;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 20px;
    border: 2px solid #d9534f;
    margin-bottom: 30px;
    margin-top: 15px;
    background-color: #fff;
    border-radius: 4px;
}