.report-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 30px;
}

.report-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27%;
    min-height: 72px;
    padding: 12px 10px;
    border: 2px solid #b45b82;
    border-radius: 36px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition: background-color .2s ease, color .2s ease;
}

.report-link:hover,
.report-link:focus {
    background-color: #b45b82;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.report-link:focus-visible {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #7d3f5b;
}

@media (max-width: 767px) {
    .report-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .report-link {
        width: 80%;
        min-height: 64px;
        font-size: 18px;
    }
}