.hardware {

    .header-section {
        .page-headline {
            margin: 0;
        }
    }

    .wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
        padding: 20px;
        margin-bottom: 60px;

        @media screen and (min-width: 1000px) {
            flex-direction: row;
            align-items: center;
            gap: 60px;
        }

        &.alternating {
            flex-direction: column;

            @media screen and (min-width: 1000px) {
                flex-direction: row;
            }
        }

        .left, .right {
            width: 100%;

            @media screen and (min-width: 1000px) {
                width: 50%;
            }
        }

        .text-card {
            display: flex;
            flex-direction: column;
            justify-content: center;

            h2 {
                margin-top: 0;
                margin-bottom: 1.5rem;
            }

            p {
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .btn {
                align-self: flex-start;
                margin-top: 1rem;
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;

            li {
                display: flex;
                align-items: flex-start;
                margin-bottom: 0.75rem;

                i {
                    margin-top: 4px;
                    margin-right: 12px;
                }
            }
        }

        .image-frame {
        / / Placetel behält die Background-Box &: not(. no-bg) {
            background: var(--color-grey-surface);
            padding: 30px;
            border-radius: var(--border-radius-large, 12px);
        }

            .modern-image {
                width: 100%;
                height: auto;
                border-radius: var(--border-radius-large, 8px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                display: block;
                transition: transform 0.3s ease;

                &:hover {
                    transform: translateY(-5px);
                }
            }
        }
    }
}
