main {
    width: 100%;
    max-width: 62.5rem;
    margin-inline: auto;
    margin-block: 10rem 0;
    padding-inline: 1rem;
    section {
        > h2 {
			margin-top: 7rem;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        > div {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            article {
                display: flex;
                align-items: center;
                gap: 1.5rem;
                padding: 1.2rem 1.5rem;
                border: 0.1rem solid oklch(80% 0 0);
                border-radius: 0.5rem;
                background-color: var(--bg);
                transition:
                    transform 0.2s ease,
                    box-shadow 0.2s ease;
                &:hover {
                    transform: translateY(-0.2rem);
                    box-shadow: 0 0.2rem 0.75rem rgb(0 0 0 / 15%);
                }
                > div:first-child {
                    min-width: 4rem;
                    text-align: center;
                    p {
                        margin: 0;
                        &:first-child {
                            font-size: 1.5rem;
                            font-weight: bold;
                        }
                        &:last-child {
                            font-size: 0.9rem;
                            font-weight: bold;
                            color: oklch(50% 0 0);
                        }
                    }
                }
                > div:nth-child(2) {
                    flex: 1;
                    h3 {
                        margin: 0 0 0.3rem;
                    }
                    p {
                        margin: 0;

                        &:last-child {
                            margin-top: 0.3rem;
                            font-weight: bold;
                        }
                    }
                }
                > a {
                    padding: 0.6rem 1rem;
                    border: 0.1rem solid var(--primary);
                    border-radius: 2rem;
                    color: var(--primary);
                    text-decoration: none;
                    white-space: nowrap;
                    &:hover {
                        background-color: var(--primary);
                        color: var(--bg);
                    }
                    &:focus-visible {
                        outline: 0.2rem solid oklch(55% 0.12 250);
                        outline-offset: 0.2rem;
                    }
                }
            }
        }
    }
}
@media (max-width: 37.5rem) {
    main {
        margin-block: 9rem 0;

        section {
            > h2 {
                font-size: 2rem;
            }

            > div {
                article {
                    flex-direction: column;
                    text-align: center;

                    > div:first-child {
                        min-width: auto;
                    }

                    > div:nth-child(2) {
                        width: 100%;
                    }

                    > a {
                        width: 100%;
                    }
                }
            }
        }
    }
}