/* content_featured  specific styles */
.mb-cnu-content_featured{
    max-width: 1280px;
    margin: 100px auto;
    padding: 20px;
    font-family: "Nunito Sans", sans-serif;
    color: #004884;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 14px;
    position: relative;
}

.mb-cnu-content_featured-title{
    font-size: 45px;
    line-height: 35px;
    margin-block: 5px;
    text-align: center;
    padding-block: 20px;
}

.mb-cnu-content_featured-wrapper{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.mb-cnu-content_featured-item{
    width: 25%;
    max-width: 250px;
    min-width: 200px;
    border: 2px solid #004884;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    background-color: white;
    color: #004884;
}

.mb-cnu-content_featured-item-link{
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.mb-cnu-content_featured-item-image{
    width: 100%;
    overflow: hidden;
}

.mb-cnu-content_featured-item-image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  transform: scale(1.025);
  &:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;  
  }
}

.mb-cnu-content_featured-item-body{
  text-align: center;
}

.mb-cnu-content_featured-item-title{}