/* App Store & Google Play badge block (login hero + startseite) */

.store-badges-block {
    margin-top: 1rem;
}

.store-badges-block--align-start .store-badges {
    justify-content: flex-start;
}

.store-badges-block--align-center .store-badges {
    justify-content: center;
}

.store-badges-block--hero {
    margin-bottom: 2.5rem;
}

.store-badges-announcement {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.store-badges-block--default .store-badges-announcement {
    color: #666;
    font-size: 0.95rem;
}

.store-badges-block--hero .store-badges-announcement {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.store-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.95;
}

.store-badge:hover {
    transform: translateY(-3px) scale(1.03);
    opacity: 1;
}

.store-badge img {
    display: block;
    width: 160px;
    height: 48px;
    object-fit: contain;
}
