

.alchemy-card .tn-atom {
    position: relative;
    overflow: hidden;
}

/* Разделитель */
.alchemy-card::after {
    content: "";
    position: absolute;

    left: 0;
    top: 73%;

    width: 100%;
    height: 3px;

    background: #9E9A00;

    transition: background-color 0.2s ease;
}

/* Hover разделителя */
.alchemy-card:hover::after {
    background: #FFF801;
}

/* Фото */
.alchemy-image {
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

</style>