.top-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.top-card {
    height: 15rem;
    padding: 1.6rem;
    overflow: hidden;
}

.top-card__first {
    grid-column: span 3;
}

.top-card__second {
    grid-column: span 3;
}

.top-card__section {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    height: 100%;
}

.top-card__section--second {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-card__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 15rem;
    z-index: 3;
}

.top-card__info a {
    width: max-content;
}

.top-card__title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-7);
}

.top-card__desc {
    color: var(--text-secondary);
    font-weight: var(--font-weight-5);
    font-size: 14px;
    text-transform: none;
}

.top-card__first .top-card__button {
    background-color: color-mix(in srgb, var(--span) 10%, transparent);
    color: var(--span);
}

.top-card__second .top-card__button {
    background-color: color-mix(in srgb, var(--green) 10%, transparent);
    color: var(--green);
}

.top-card__button:hover {
    filter: brightness(1.1);
}

.top-card img {
    position: absolute;
    right: 1rem;
    bottom: 0;
    height: 14rem;
    width: auto;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.top-card .top-card__icon--left,
.top-card .top-card__icon--right {
    position: absolute;
    width: 8rem;
    height: 8rem;
}

.top-card .top-card__icon--left {
    right: 10rem;
    bottom: -1rem;
}

.top-card .top-card__icon--right {
    right: 1rem;
    top: 1rem;
}

.top-card__store--item {
    position: relative;
    height: max-content;
}

.top-card__store--item img {
    position: relative;
    /* height: 8rem; */
    width: auto;
    border-radius: var(--br-20);
    right: auto;
}

.top-card__store--price {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: .5rem .8rem;
    color: var(--text-custom);
    font-weight: var(--font-weight-5);
}

.top-card__buttons {
    display: flex;
    gap: .5rem;
}

.top-modal__button {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: 1px solid var(--transparent-3-w);
}

.top-modal__info {
    color: var(--text-custom);
    margin-top: -10px;
    max-width: 420px;
}


@media (max-width: 992px) {
    .top-wrapper {
        display: flex;
        flex-direction: column;
    }

    .top-card__store--item img {
        width: auto;
        /* height: 6rem; */
    }
}