.elementor-3045 .elementor-element.elementor-element-75a906b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c70c7c0 *//* Category/Content Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2em;
}

.category-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-decoration: none; /* For link cards */
    color: inherit;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 200px; /* This is the key for image height */
    object-fit: cover;
    background-color: #e0e0e0; /* Placeholder background */
    display: block;
}

.card-content {
    padding: 20px;
    flex-grow: 1; /* Allows content to push footer down */
    display: flex; /* Flexbox für den inneren Inhalt */
    flex-direction: column; /* Elemente untereinander anordnen */
    justify-content: space-between; /* Inhalt und Button nach unten drücken */
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: #2c3e50;
}

.card-content p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5em;
}

.card-link {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
    margin-top: auto; /* Drückt den Link nach unten */
}

.card-link:hover {
    background-color: #0056b3;
}

/* Call to Action for the book (footer-like) */
.cta-box {
    background-color: #e6f7e6; /* Light green background */
    border: 1px solid #ccebcc;
    border-left: 5px solid #4CAF50; /* Green left border */
    padding: 25px;
    margin: 4em 0 2em;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-box h3 {
    color: #28a745;
    margin-top: 0;
    font-size: 1.6em;
}

.cta-box p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    color: #444;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #0056b3;
}

.affiliate-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 1em;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) { /* Angepasster Breakpoint für 3 Spalten */
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexibler für 2 oder 3 Spalten */
    }
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.7em;
    }
    .card-image {
        height: 180px; /* Responsive adjustment for image height */
    }
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Angepasster minmax für kleinere Bildschirme */
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr; /* Eine Spalte auf sehr kleinen Bildschirmen */
    }
}

/* Basic Reset & Body Styling - These are also important! */
body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Main Title */
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.8em;
    color: #1a2c3d;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Headings */
h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-top: 2.5em;
    margin-bottom: 1em;
    text-align: center;
}/* End custom CSS */