.blog-addresses-wrapper {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    gap: 45px;
    flex-wrap: wrap;
}
.blog-address {
    width: 335px;
    padding: 20px;
    background-color: #EAEFFB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.blog-address h2 {
    font-family: var(--beon-font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #053C62;
    text-align: center;
}
.blog-address p, .blog-address a.blog-address-website {
    font-family: var(--beon-font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #053C62;
    text-align: center;
    overflow-wrap: break-word;
    width: 295px;
}
.blog-address a.beon-blog-address-button {
    width: 100%;
    min-width: 280px;
    height: 46px;
    background-color: #053C62;
    color: #FFF;
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.blog-address a.beon-blog-address-button img {
    height: 12px;
    max-width: 10px;
    left: 0px;
    position: relative;
    transition: left ease-out 0.3s;
    filter: var(--beon-icon-filter-white);
}
.blog-address a.beon-blog-address-button:hover img {
    left: 5px;

}