.Solutions {
    h2 {
        color: white;
    }
    display: flex;
    flex-direction: column;
    gap: 24px;

    .SolutionCard {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;

        .Icon {
            .Stacked {
                position: relative;
                height: 120px;
                width: 120px;
                display: flex;
                align-items: center;
                justify-content: center;

                .Hexagon {
                    svg {
                        position: absolute;
                        z-index: 1;
                        width: 120px;
                        height: 120px;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                    }
                }

                svg {
                    position: absolute;
                    z-index: 2;
                    width: 80px;
                    height: 80px;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }

        .Content {
            border-radius: 24px;
            padding: 16px;
            width: 100%;
        }
    }

    .SolutionCard .Content {
        &.LightGreen {
            background-color: var(--bg-primary);
            color: white;
        }

        &.Coral {
            background-color: var(--bg-primary);
            color: white;
        }

        &.LightBlue {
            background-color: var(--bg-primary);
            color: white;
        }

        &.Blue {
            background-color: var(--bg-primary);
            color: white;
        }
    }

    .SolutionCard .Icon {
        &.LightGreen svg {
            color: #01E371;
        }

        &.Coral svg {
            color: #01C4BF;
        }

        &.LightBlue svg {
            color: #01AAFF;
        }

        &.Blue svg {
            color: #0161F0;
        }
    }
}

@media screen and (min-width: 768px) {
    .Solutions {
        .SolutionCard {
            flex-direction: row;
            display: grid;
            grid-template-columns: 3fr 9fr;
            grid-template-rows: 1fr;
            grid-column-gap: 0;
            grid-row-gap: 0;
            align-items: center;

            .Icon .Stacked {
                width: 160px;
                height: 160px;

                .Hexagon svg {
                    width: 160px;
                    height: 160px;
                }

                svg {
                    width: 100px;
                    height: 100px;
                }
            }

            .Content {
                border-radius: 32px;
                padding: 16px 24px;
            }
        }
    }
}
