.widgets {
    width: 100%;
    margin-top: 8px;
    display: flex;
    gap: 24px;
    border-radius: 20px;

    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* smooth on mobile */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.widgets::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.widget {
    max-width: calc(375px - 64px);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.links, .link {
    margin-top: 8px;
}

h1 {
    font-weight: 700;
    margin-bottom: 8px;
}