.achievements {
    .layout {
        .lead {
            width: 88%;

            @media (width<=768px) {
                width: 100%;
            }
        }

        .wrapper {
            width: 90%;
            margin: 0 auto;
            padding: 24px 0 48px;

            @media (width<=768px) {
                width: 100%;
            }
        }

        .box {
            .outer {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;

                @media (width<=1025px) {
                    grid-template-columns: repeat(2, 1fr);
                }

                @media (width<=768px) {
                    grid-template-columns: repeat(1, 1fr);
                }

                .inner {
                    padding: 24px 16px;
                    display: grid;
                    gap: 16px;
                    text-align: center;

                    .hp-title {
                        padding: 8px 0;
                        background: linear-gradient(135deg, rgb(255, 140, 0), rgb(255, 100, 0));
                        border-radius: 4px;
                        position: relative;
                        font-weight: bold;
                        color: rgb(219, 233, 255);
                        -webkit-text-stroke: 2px rgb(24, 24, 24);
                        paint-order: stroke;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        &::before {
                            content: "";
                            position: absolute;
                            right: 10px;
                            width: 32px;
                            height: 32px;
                            background-color: rgb(51, 51, 51);
                            border-radius: 99px;
                        }

                        &::after {
                            content: "＞";
                            position: absolute;
                            right: 16px;
                            color: rgb(219, 233, 255);
                        }
                    }

                    .img-link {
                        img {
                            width: 100%;
                            border-radius: 4px;
                        }
                    }

                    p {
                        font-size: 14px;
                    }


                }
            }

        }

    }
}