.achi{
    background-color: var(--main-color);
}

.achi__holder h2{
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 20px;
}

.achi__posts{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 50px;
}

.achi__item{
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: unset !important;
    align-self: unset !important;
    text-decoration: none;
}

.achi__item:hover .btn.btn__secondary{
    background: #fff;
    padding: 10px 16px 10px 16px;
    border-radius: 1000em;
    border: 1px solid #fff;
    color: #FFA200;
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 700;
    font-family: sans-serif;
    appearance: unset; {# so that .hs-button takes the style from above #}
    transition: .3s;
}

.achi__1 { grid-area: 1 / 1 / 3 / 2; }
.achi__2 { grid-area: 1 / 2 / 2 / 3; }
.achi__3 { grid-area: 2 / 2 / 3 / 3; }

.achi__1{
    margin-left: 20px;
}

.achi__item svg{
    position: absolute;
    z-index: 1;
}

.achi__item h3{
    font-size: 24px;
}

.achi__item-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.achi__date{
    margin: 20px 0 0 20px;
    padding: 4px 15px;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: inset 0px 0px 1px 0px, 0px 0px 1px 0px;
    border-radius: 10px;
}

.achi__date span{
    line-height: 18px;
}

.achi__company{
    height: 74px;
    width: 74px;
    padding:18px;
    margin-right: 26px;
    background-color: #fff;
    border-radius: 0px 0px 10px 10px; 
}

.achi__company img{
    object-fit: contain;
}

.achi__item-bottom{
    display: flex;
    justify-content: space-between;
}

.achi__item-bottom a{
    padding: 0 30px 30px 0;
}

.achi__text{
    padding: 20px;
    position: relative;
    border-radius: 10px;
    top: 20px;
    margin-left: 20px;
    z-index: 2;
    background-color: var(--secondary-color);
    max-width: 300px;
    word-wrap: break-word;
}

.achi__1 .achi__text{
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #0160B9;
    right: 40px;
    margin-top: 300px;
    max-width: 390px;
}

.achi__1 .achi__text h3{
    color: #fff;
}

.achi__text p{
    display: none;
}

.achi__1 .achi__text p{
    display: block;
}

.achi__holder a{
    align-self: center;
    padding-top: 70px; 
}

.achi__bottom-cta{
    width: 100%;
    margin: 80px 0;
    display: flex;
    justify-content: center;
}

.achi__holder .btn{
    align-self: flex-end;
    margin: 0 20px 20px 0px;
    color: #fff;
    border-color: #fff;
}

.achi__1 .btn span{
    width: 90px;
}

.achi__text .btn.btn__secondary{
    display: none;
}

.achi__2 svg,
.achi__3 svg{
    scale: 1.1;
}

@media(max-width: 845px){
    .achi__posts{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .achi__1 { grid-area: unset; }
    .achi__2 { grid-area: unset; }
    .achi__3 { grid-area: unset; }

    .achi__text{
        margin-top: 250px;
    }
}

@media(max-width: 768px){
    .achi__item-bottom .achi__text .btn.btn__secondary{
        display: block
    }

    .achi__item-bottom .btn.btn__secondary{
        display: none;
    }

    .achi__holder .btn{
        margin: unset;
        color: #fff;
        border-color: #fff;
    }

    .achi__holder .achi__2 .btn,
    .achi__holder .achi__3 .btn{
        margin: unset;
        color: unset;
        border-color: unset;
    }

    .achi__text{
        margin-top: 100px !important;
    }

    .achi__2 svg,
    .achi__3 svg{
        scale: 1.2;
        transform: translate(9px, 21px);
    }
}

@media(max-width: 425px){
    .achi__holder h2{
        font-size: 32px;
        line-height: 32px;
    }

    .achi__1 svg{
        transform: translate(-21px, -80px);
        scale: 0.8;
    }
}