*{
  box-sizing: border-box;
}

.blog-spotlight_container{
  padding-top: 50px;
  height: 500px;
  width: 100%;
  background:linear-gradient(180deg,#ffffff 50%,#ECEFF3 0.1%,#ECEFF3 50%);
  display: flex;
  align-items: center;
  justify-content: center; 
}

.blog-spotlight_main_wrapper{
  width: 100%;
  max-width: 1114px;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blog-spotlight_content_wrapper{
  border-radius: 20px;
  display: flex;
  width: 100%;
  height: 380px;
  align-items: center;
  justify-content: center;
  background-color: white;    
  box-shadow: 2px 1px 14px 1px rgb(205 216 228);
}

.blog-spotlight_shadow_wrapper{
  background: transparent linear-gradient(90deg, #1C599900 0%, #1C59992A 6%, #1C599985 21%, #1C5999C7 34%, #1C5999F0 44%, #1C5999 50%, #1C5999F0 56%, #1C5999C7 66%, #1C599985 79%, #1C59992A 94%, #1C599900 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.2;
  filter: blur(10px);
  height: 25px;
  width: 100%;
  margin: 25px 0;
}

.blog-spotlight_content_info_wrapper{
  background: linear-gradient(to top,#193055,#289cc9) no-repeat;
  background-position: left;
  background-size: 7px 100%;
  border-radius: 12px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.blog-spotlight_image_wrapper{
  height: 100%;
  width: 50%;
  background-color: grey;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.blog-spotlight_text_wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.blog-spotlight_header_text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.blog-spotlight_header_date{
  text-align: left;
  font: normal normal 600 16px "Mulish";
  letter-spacing: 0px;
  color: #6B7883;
  opacity: 0.8;
}

.blog-spotlight_header_tag{
  text-align: left;
  letter-spacing: 1.4px;
  color: #255893;
  opacity: 1;
  font: normal normal 14px "Mulish";
  text-transform: uppercase;
}

.blog-spotlight_title{
  margin: 25px 0;
  text-align: left;
  font: normal normal 900 24px "Mulish";
  letter-spacing: 0px;
  color: #303030;
  opacity: 0.8;
}

.blog-spotlight_header_description{
  font: normal normal 500 16px "Mulish";
  letter-spacing: 0px;
  color: #303030;
  opacity: 0.8;
}

.blog-spotlight_button_wrapper{
  padding: 20px;
}

.blog-spotlight_button{
  width: fit-content;
  text-decoration: none;
  text-align: left;
  font: normal normal bold 14px "Mulish";
  letter-spacing: 1.92px;
  color: #255893 !important;
  opacity: 1;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.blog-spotlight_button:hover{
  transform: translateY(-2px);
  color: #255893 !important;
  transition: all 0.2s ease;

}


.icon {
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    margin: auto;
    background: #255893;
    position: relative;
    margin-left: 15px;
}

.icon.arrow {
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    width: 1.2rem;
    height: 2px;
    background: none;
    background-color: #255893;
}

.arrow::before {
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    position: absolute;
    content: '';
    top: -0.20rem;
    right: 0.0625rem;
    width: 0.525rem;
    height: 0.525rem;
    border-top: 0.15rem solid #255893;
    border-right: 0.15rem solid #255893;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.blog-spotlight_button:hover .icon.arrow {
    background: #255893;
    -webkit-transform: translate(-0.1rem, 0);
    -ms-transform: translate(-0.1rem, 0);
    transform: translate(-0.1rem, 0);
    width: 0.9rem;
}

@media (max-width: 768px) {
  .blog-spotlight_container{
    height: unset;
  }
  
  .blog-spotlight_content_wrapper{
    flex-direction: column;
    height: 520px;
  }
  
  .blog-spotlight_content_info_wrapper{
    background: linear-gradient(to left,#193055,#289cc9) no-repeat;
    background-position: bottom;
    background-size: 100% 7px;
    border-radius: 12px;
    width: 100%;
    height: 60%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0px;
    border-top-left-radius: 0px;
    padding: 10px;
    order: 1;
  }

  .blog-spotlight_image_wrapper{
    height: 40%;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    order: 0;
  }

  .blog-spotlight_text_wrapper, .blog-spotlight_button_wrapper {
    padding: 10px;
  }
  
  .blog-spotlight_title {
    margin: 15px 0;
  }

  .blog-spotlight_header_description{
    font-size: 14px;  
  }  

}

