.steps-content {
    text-align: center;
    padding: 1rem 3rem 1rem 3rem;
}


.steps-content h3 {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    /*font-size: 1.1rem;*/
    color: #6791bb;
    font-weight: bold;
    line-height: normal;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.steps-content h4 {
    padding: 1rem;
}

.steps-content ul {
    padding: 1rem 2rem 1rem 2rem;
    list-style: none;
}

.points-item {
    max-width: 200px;
    border-radius: 50% 20% / 10% 40%;
    padding: 1.5rem;
    /*margin-bottom: 5px;*/
    animation: fadeInUp 0.7s ease forwards;
    opacity: 0;
    position: relative;
    background-color: #a6bada;
    transition: transform 0.3s, border-radius 0.7s;

    display: flex;
    /*!*центрирует содержимое по вертикали*!*/
    align-items: center;
    /*!*центрирует содержимое по горизонтали*!*/
    justify-content: center;
    /*центрирование текста (на случай многострочного текста)*/
    text-align: center;
}

.points-item a {
    color: black;
    font-family: serif;
    text-decoration: none;

    /* Чтобы ссылка занимала всю доступную область для лучшего клика */
    width: 100%;
    height: 100%;
    display: flex;
}

.points-item:hover {
    background: #e9ecef;
    border-radius: 40% 60% / 90% 20%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.content-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(12px, 3fr));
    gap: 0.3rem;
    justify-content: center;
    max-width: 40rem;
    margin: 0 auto;
}