.wiki-wrap {
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    height: 100%;
    &:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 11.06%, rgba(0, 0, 0, 0.8) 86.54%);
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .wiki-body {
        position: absolute;
        bottom: 32px;
        width: calc(100% - clamp(48px, 4vw, 64px));
        right: 50%;
        transform: translateX(50%);
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
        color: white;
        .wiki-title {
            font-size: 24px;
            line-height: 32px;
            font-family: var(--Medium);
        }
        .wiki-desc {
            font-size: 16px;
            font-family: var(--Medium);
        }
    }
}
@media only screen and (max-width: 768px) {
    .wiki-wrap {
        margin-bottom: 16px;
    }
}