.custom-block {
    transition: background-color 0.3s ease;
    margin: 10px 0;
}
.custom-block:hover {
    background-color: var(--hover-bg, #e0e0e0);
}
.custom-block .button-link {
    /* border-radius: 6px;
    background-color: #F5F6F8;
    color: #707070 ;
    text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    font-size: 16px ; */
}
.custom-block a.button-link:hover {
    background-color: #303030;
}
.content-btn-wrapper{
    width: 100%;
    max-width: 300px;
}
.acn-block-button:hover{
    background-color: var(--hover-bg, #e0e0e0);
}
.wp-block-columns .custom-block p{
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.wp-block-columns h1, .wp-block-columns h2 .wp-block-columns h3, .wp-block-columns h4, .wp-block-columns h5, .wp-block-columns h6 {
    font-family: "Merriweather";
}

.acn-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 1rem;
}
.acn-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}
.acn-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.acn-image-wrapper:hover .acn-hover-image {
    opacity: 1;
}
.acn-image-wrapper:hover .acn-main-image {
    opacity: 0;
}
