.ani-guarantee {
    padding: 0 0 40px;
}

.ani-guarantee .c-media-title {
    margin-bottom: 16px;
}

.ani-guarantee__list {
    display: grid;
    grid-template-columns: 1fr;
}

.ani-guarantee__item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 12px 0;
}

.ani-guarantee__item + .ani-guarantee__item {
    border-top: 1px solid var(--ap-dark-300, #efefef);
}

.ani-guarantee__icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.ani-guarantee__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.ani-guarantee__title {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.ani-guarantee__subtitle {
    margin: 0;
    color: var(--AP-Gold-500, #B39A5A);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

@media (min-width: 768px) {
    .ani-guarantee__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ani-guarantee__item {
        padding: 12px 16px;
    }

    .ani-guarantee__item + .ani-guarantee__item {
        border-top: 0;
    }

    .ani-guarantee__item:nth-child(odd) {
        padding-left: 0;
    }

    .ani-guarantee__item:nth-child(even) {
        border-left: 1px solid var(--ap-dark-300, #efefef);
        padding-right: 0;
    }
}

@media (min-width: 1200px) {
    .ani-guarantee__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ani-guarantee__item:nth-child(even) {
        border-left: 0;
    }

}
