/* ---------------------------------------------------------
   Globale Farbvariablen
--------------------------------------------------------- */
:root {
    --global-color-fwg-orange: #ff7a00;
    --global-color-fwg-blue: #003366;
}

/* ---------------------------------------------------------
   Grid-Layout
--------------------------------------------------------- */
.fwg-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .fwg-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fwg-box-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Box-Design
--------------------------------------------------------- */
.fwg-box {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ---------------------------------------------------------
   Titel (H3)
--------------------------------------------------------- */
.fwg-box h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: var(--global-color-fwg-orange);
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 2px 0; /* minimaler Abstand nach unten */
}

/* ---------------------------------------------------------
   Datum
--------------------------------------------------------- */
.fwg-date {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: var(--global-color-fwg-blue);
    margin: 2px 0 4px 0; /* enger Abstand oben & unten */
}

/* ---------------------------------------------------------
   Text
--------------------------------------------------------- */
.fwg-box-content {
    font-family: "Montserrat", sans-serif;
    flex-grow: 1;
    margin: 2px 0 4px 0;
    white-space: pre-line;
    color: var(--global-color-fwg-blue);
    font-weight: bold;
}

/* ---------------------------------------------------------
   PDF-Button
--------------------------------------------------------- */
.fwg-pdf-button {
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    background-color: var(--global-color-fwg-orange);
    color: var(--global-color-fwg-blue);
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 4px;
    text-align: center;
}

.fwg-pdf-button:hover {
    background-color: #e56d00;
    color: #ffffff;
}
