/*
Theme Name: AMS-Theme_16.0-Child
Template: AMS-Theme_16.0
Author: Arne Steiger
Version: 1.0
Text Domain: AMS-Theme_16.0-Child
*/

/* ==========================================================================
   ARCHIVE SECTION (DEDIZIERTER WRAPPER MIT ABSPERRBAND-HINTERGRUND UND ROTEM RAHMEN)
   ========================================================================== */

.archive-section {
    max-width: 1200px; 
    margin: 20px auto 20px; 
    padding: 20px; 
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    
    /* NEU: Roten Rahmen der Hauptsektionen hinzufügen */
    border-left: 5px solid #ff3300; 
    border-right: 5px solid #ff3300; 
    
    /* Hintergrund: Gelb-Schwarz Absperrband-Hintergrund */
    /* WICHTIG: Winkel auf -45deg gedreht (von links unten nach rechts oben) */
    background: repeating-linear-gradient(
        -45deg,                            /* Winkel der Streifen (jetzt von links unten nach rechts oben) */
        #ffcc00,                           /* Startfarbe (Ihr Gelb) */
        #ffcc00 20px,                      /* Gelb bis 20px */
        #000 20px,                         /* Schwarz ab 20px */
        #000 40px                          /* Schwarz bis 40px */
    );
    /* box-shadow beibehalten */
    box-shadow: 0 0 15px rgba(0,0,0,0.2); 
    
    position: relative;
    z-index: 1;
}

/* === Archiv-Button-Styling bleibt unverändert, da die Fehler behoben waren === */
.archive-section .btn-cta-archive {
    display: inline-block; 
    background: #000; 
    color: #fff; 
    border: 2px solid #ffcc00; 
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: bold;
    text-decoration: none;
    text-align: center; 
    transition: 0.3s ease;
    margin-top: 0; 
    position: relative;
    z-index: 2; 
}

.archive-section .btn-cta-archive:hover {
    background: #ffcc00; 
    color: #000; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); 
    transform: none; 
}