.reports .border-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.reports__cards {
    margin-top: 60px;
}

.reports__card {
    position:relative;
    padding:35px;
    border-radius:24px;
    background:var(--white);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    overflow:hidden;
    border: 1px solid rgba(52,109,166,.3);
    transition: all .3s ease-in-out;
}

.reports__card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.reports__card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-90px;
    bottom:-90px;
    border-radius:50%;
    background:rgba(52,109,166,.3);
}

.reports__top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.reports__icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:var(--accent-block-color);
    color:var(--accent-color);
    display:flex;
    justify-content:center;
    align-items:center;
}

.reports__date{
    font-size:var(--text-size-14);
}

.reports__title{
    margin-bottom:22px;
}

.reports__tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.reports__tags span{
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--accent-block-color);
    color: var(--accent-color);
    font-size: var(--text-size-14);
    font-weight: var(--fw-semibold);
}

.reports__list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.reports__list strong{
    display: block;
    margin-bottom: 8px;
}

.reports__result{
    padding:20px;
    margin-bottom:30px;
    border-radius:16px;
    background:var(--accent-block-color);
    line-height:1.6em;
}

.reports__btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--accent-color);
    font-weight:var(--fw-semibold);
    text-decoration:none;
    transition: all .3s ease-in-out;
}

.reports__card:hover .reports__btn {
    color: var(--accent-color-hover);
}

@media (max-width: 1199px) {
    .reports__card {
        padding: 24px;
    }
}