.fence-card a{
    position: relative;
    width: 460px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    transition: all .3s ease-in-out;
}
.fence-card a:hover{
    transform: translateY(-2px);
}
.fence-card img {
    display: block;
    width: 100%;
    height: auto;
}

.fence-card-gradient {
    position: absolute;
    inset: 50% 0 0 0;
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.88) 40%,
    rgba(255, 255, 255, 1) 100%
    );
}

.fence-card-caption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    right: 20px;
    color: #111827;
}

.fence-name {
    color: rgba(0, 0, 0, 1);
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    margin: 0;
}

.fence-series {
    color: rgba(0, 0, 0, 1);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}