.itemList a {
    color: #333;
    border: 1px solid #333;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.itemList h1 {
    font-size: 24px;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0 15px;
}

.itemList span {
    width: 160px;
    height: 36px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itemList:hover a {
    border: 1px solid var(--color);
}

.itemList:hover a span {
    background: var(--color);
}

.itemList:hover a span img {
    filter: brightness(10);
}