header {
    background: var(--main-bg);
    .wrapper {
        box-shadow: 0px 2px 12px 0px #0000001A;
    }
}
main {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}
h1 {
    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--title);
}
main > p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 64px;
    max-width: 640px;
}
.items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    &.featured {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 64px;
    }
    .item {
        img {
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }
}