.studentam_wrapper {
    background-color: #fff; 
    height: 160px; 
    padding: 20px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 20px;
}

.studentam_h2 {
    font-weight: 700 !important; 
    font-size: 20px !important;
}

.links-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.links-block__item {
    padding: 20px;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
}
.links-block__item:hover {
	box-shadow: 0 0 20px 0 rgba(67, 112, 183, 0.3);
	transition: box-shadow .2s ease;
}
.image-container {
    width: 168px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.block-item__text {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #212121;
    width: calc(100% - 168px);
}

.links-block__item-link:hover {
	text-decoration: none;
}

@media screen and (max-width: 1440px) {
    .adaptive-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }
}
  
/* Планшеты и лаптопы */
@media screen and (min-width: 768px) and (max-width: 1439px) {
    .adaptive-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Смартфоны L */
@media screen and (min-width: 576px) and (max-width: 768px) {
    .block-item__text {
        text-align: center !important;
    }
}

/* Смартфоны M */
@media screen and (min-width: 375px) and (max-width: 576px) {
    .block-item__text {
        text-align: center !important;
    }

    .links-block__item {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* Смартфоны S */
@media screen and (max-width: 375px) {
    .block-item__text {
        text-align: center !important;
    }
}

@media screen and (max-width: 320px) {
    .block-item__text {
        text-align: center !important;
    }
}