.popular-links {
  width: 100%;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px;
  background: #F4F1EC;
  border-radius: 40px;
  color: #001A35;
  margin-bottom: 85px;
  margin-top: 52px;
}

.popular-links__intro {
  display: flex;
  align-items: center;
  gap: 26px;
}

.title-for-cat{
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    color: #001A35;   
    margin-bottom: 40px;
}

.popular-links__icon {
    padding: 28px;
    place-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 15px 70px rgba(118, 104, 90, 0.2);
}

.popular-links__icon img {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #5899AF;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popular-links h2 {
  margin: 0;
  font-size: 33px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.popular-links__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 32px;
  border-left: 1px solid #c6ced4;
  flex-wrap: wrap;
}

.popular-links__intro h2{
  font-size: 32px;
  line-height: 140%;
}

.pill-link {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 30px;
  border-radius: 999px;
  background: #CCDAE1;
  color: #001A35;
  text-decoration: none!important;
  font-size: 16px;
  line-height: 140%;
  white-space: nowrap;
  justify-content: space-between;
}

.pill-link__arrow {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.pill-link__arrow img {
  width: 14px;
  height: auto;
  fill: none;
  stroke: #08213d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .popular-links {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 34px;
    border-radius: 30px;
  }

  .popular-links__actions {
    width: 100%;
    flex-wrap: wrap;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid #c6ced4;
  }
}

@media (max-width: 720px) {
    .popular-links{
        gap: 20px;
    }
    
    .pill-link{min-width: 270px;}

    .popular-links__intro{
     	gap: 16px;   
    }
    
    .popular-links__intro h2{
        font-size: 28px;
    }

    .popular-links__icon{
		padding: 20px;
    }
    
    .popular-links__icon img{
        width: 20px;
    	height: 20px;
    }
    
    .title-for-cat{
     	font-size: 24px;   
    }
    
}