#featured-custom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-inline: var(--page-padding);
}
#featured-custom-image {
    min-width: 0;
    max-width: 100%;
    aspect-ratio: 1 / 1;
}
#featured-custom-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 24px;
    gap: 20px;
}
#featured-custom-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 80px;
    max-width: var(--track-size);
}
#favorites, #merch {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-block: 40px;
    padding-inline: var(--page-padding);
}
#merch h1 {
    text-align: center;
    margin-bottom: 0.2em;
}
#favorites-container, #merch-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
#favorites-grid, #merch-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.favorites-row, .merch-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.favorite, .merch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    gap: 20px;
    text-decoration: none;
}
.favorite img, .merch-item img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}
.favorite .button, .merch-item .button {
    width: 11rem;
    padding-inline: 0;
    text-align: center;
}
#beyond-custom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: var(--yellow);
    padding-inline: var(--page-padding);
    padding-block: 20px;
}
#beyond-custom-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    max-width: var(--track-size);
    padding: 20px;
}
#beyond-custom-image {
    align-self: center;
}
#beyond-custom-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 24px;
    gap: 20px;
}
@media (max-width: 800px) {
    #featured-custom-container {
        flex-direction: column;
        gap: 40px;
    }
    #beyond-custom-container {
        flex-direction: column;
        gap: 40px;
    }
    #beyond-custom-image {
        order: 1;
    }
    #beyond-custom-info {
        order: 2;
    }
}
@media (max-width: 30rem) {
    .favorite .button, .merch-item .button {
        width: 8rem;
        font-size: 0.6rem;
    }
}