.showcase2 {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase2__decoration {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.showcase2__decoration2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0px;
    transform: rotateY(190deg);
    display: none;
}

.showcase2__wrapper {
    padding-block: 1rem;
    padding-inline: 1rem;
    display: flex;
    width: max-content;
}

.showcase2__wrapper-outter {
    overflow-x: scroll;
}

.showcase2__items {
    display: flex;
    width: 100%;
    place-content: center;
    /* Large Screen */
    gap: 0.5rem;
}

.showcase2__item {
    width: clamp(240px, 30vw, 400px);
    min-height: 320px;
    padding: 1.5rem 0.25rem 0.25rem 0.25rem;
    border-radius: 0.375rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.showcase2__item__arrow {
    opacity: 0;
    transform: translateX(-4px) scale(0.92);
    transition: all 400ms var(--transition-easeOutSin);
}

.showcase2__item:hover {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.05), 0px 0px 0px 1px var(--primary-color), 0px 0px 0px 2.5px var(--primary-color-light);
    transition: box-shadow 400ms var(--transition-easeOutSin);
}

.showcase2__item:hover .showcase2__item__arrow {
    transform: translateX(0px) scale(1);
    opacity: 1;
}

.showcase2__item:hover .showcase2__item__title {
    color: var(--primary-color);
}

.showcase2__item__image {
    width: 100%;
    height: 100%;
    max-height: 320px;
    border-radius: 0.125rem;
    object-fit: cover;
}

.showcase2__item__image__wrapper {
    flex-grow: 1;
    display: flex;
    margin-top: 1.5rem;
}

.showcase2__item__content {
    padding: 0rem 1.25rem;
}

.showcase2__item__title {
    display: flex;
    justify-content: space-between;
    color: var(--text-loud, #0d0d12);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 1rem */
    letter-spacing: -0.05rem;
    transition: color 400ms var(--transition-easeOutSin);
}

.showcase2__item__body {
    margin-top: 0.75rem;
    min-height: 5.25rem;
    color: var(--text-normal);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 1.3125rem */
}