/* ================================
   ASTORE INFO TAFEL
   Rückbaubar & gekapselt
================================ */

.astore-notice-wrapper {
    padding: 30px 0;
}

.astore-notice-board {
    background: #1e1e1e;
    background-clip: padding-box;
    border-radius: 6px;
    padding: 30px 34px;
    color: #f5f5f5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 3px 3px;
}

.astore-notice-title {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #e6e6e6;
}

.astore-notice-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* === HOLZRAHMEN ALS ECHTER RAHMEN === */
.astore-notice-frame {
    padding: 0px; /* Abstand zwischen Holz und Tafel */
    border-style: solid;
    border-width: 22px;
    border-image-source: url("../img/wood-frame-wide.png");
    border-image-slice: 80 fill;
    border-image-repeat: stretch;
}

/* Mobile: etwas dünnerer Rahmen */
@media (max-width: 768px) {
    .astore-notice-frame {
        border-width: 16px;
    }
    .astore-notice-board {
        padding: 18px 20px;
    }
}

/* === MOBILE FIX: Rahmen bündig === */
@media (max-width: 768px) {
    .astore-notice-wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }
}