/* Spezifische Stile für den Tagesplaner-Blogbeitrag */

.mobile-warning {
    display: none; /* Standardmäßig versteckt */
    color: #ef4444; /* Rote Farbe */
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: -1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Zentriert den Einleitungstext */
.beitrag p {
    text-align: center;
}

/* Richtet den Installations-Block linksbündig aus */
.installation-section, .installation-section p, .installation-section h3 {
    align-items: flex-start;
    text-align: left;
}

.installation-case {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    border-left: 3px solid #edc902;
    border-radius: 0 8px 8px 0;
}

.installation-case h4 {
    color: #edc902;
    margin-top: 0;
}

.installation-case ol {
    padding-left: 20px;
}

.blog-text-block ul {
    padding-left: 20px;
    list-style-type: '✔️ ';
}

.arrow-down-hint {
    text-align: center;
    margin-top: 1.5rem;
}

.arrow-down-hint svg {
    width: 48px;
    height: 48px;
    stroke: #edc902; /* Goldene Farbe */
    stroke-width: 2;
    fill: none;
    animation: bounceDownSoft 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
}

@keyframes bounceDownSoft {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
}

.blog-text-block ul li {
    padding-left: 10px;
    margin-bottom: 0.5rem;
}

.download-container {
    text-align: center;
    margin: 3rem auto;
}

.download-button img {
    width: 50%;
    max-width: 150px; /* Etwas größer für den neuen Look */
    height: auto;
    border-radius: 50%; /* Macht den Hintergrund rund */
    background-color: white; /* Setzt den weißen Hintergrund */
    padding: 1rem; /* Innerer Abstand, damit das Icon kleiner als der Kreis ist */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.download-hint {
    font-size: 1.25rem; /* Größere Schrift */
    font-weight: bold; /* Dicke Schrift */
    color: #edc902; /* Goldene Farbe für Aufmerksamkeit */
    margin-top: 1.5rem;
}

.download-caption {
    margin-top: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Zeigt den Warnhinweis nur auf Tablets und Smartphones an */
@media (max-width: 1024px) {
    .mobile-warning {
        display: block;
    }
}