/* === GLOBAL CSS === */
/* 1. Container-Grid-Layout */
.bewerbung-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
justify-content: center;
}
/* 2. Einzelne Boxen */
.bewerbung-box {
aspect-ratio: 1 / 1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-sizing: border-box;
width: 100%;
}
/* 3. Optional: Schrift oder Innenabstand innerhalb der Box */
.bewerbung-box > * {
padding: 1rem;
}
/* 4. Responsive Verhalten wird automatisch durch grid-template-columns geregelt */