h4 {
    margin-bottom: 10px;
}

.template a.link-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background-color: var(--color-white);
    background-image: url(../images/icons/chevron-right.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position-y: center;
    background-position-x: calc(100% - 20px);
    padding: 20px 25px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    color: var(--color-text);
    transition: .2s ease;
    margin-bottom: 10px;
}

.template a.link-banner:hover {
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.template a.link-banner img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

@media (max-width:767px) {
    .template a.link-banner {
        padding: 20px 15px;
        gap: 10px;
    }
}