/********************************************************************* General List */
.spotlight-list-view .row {
  display: flex;
  flex-wrap: wrap;
}
.spotlight-list-view .row > .col-xs-12.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 32px;
}
.spotlight-list-view .row {
  margin-bottom: -32px;
}
.spotlight-list-view a:hover {
    text-decoration: none;
}
.spotlight-list-view span.txt{
    margin-bottom: 32px;
    color: #647190;
    display: block;
}
.spotlight-list-view hr{
  border-top: 1px solid #DEE2ED;
  margin-top: 0;
  margin-bottom: 0;
}
.spotlight-list-view h2 {
    margin-top: 0;
    color: #1F2E53;
    font-size: 44px;
    font-weight: 400;
    line-height: 42px;
}
@media (max-width: 700px) {
  .spotlight-list-view .row > .col-xs-12.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .spotlight-list-view .col-md-4,
  .spotlight-list-view .col-md-8 {
      width: 100%;
      float: none;
  }
}

/********************************************************************* Detail site */
.spotlight-single .container {
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .spotlight-single .row {
    padding: 0 16px;
  }
}
.spotlight-single .firstContainer {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #DEE2ED;
  background: #FFF;
}
.spotlight-single .secondContainer {
    margin-top: 80px;
}
.spotlight-single h1 {
  font-size: 48px !important;
  line-height: 64px !important;
  margin-bottom: 32px !important;
}
@media (max-width: 700px) {
  .spotlight-single h1 {
    font-size: 44px !important;
  }
}
.spotlight-single .autor {
  margin-bottom: 32px;
}
.spotlight-single .autor,
.relatedContainer .spotlight-single p {
  color: #DDDFE4;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}
.spotlight-single .author {
    margin-bottom: 32px;
}
.spotlight-single .author img {
  margin-right: 16px;
}
.spotlight-single .news-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.spotlight-single ul.listCategory {
  margin-top: 24px;
}
.spotlight-single .news-backlink-wrap,
.spotlight-single .userNote {
  margin-top: 80px;
}
.spotlight-single .userNote {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #DEE2ED;
  padding: 24px;
  gap: 16px;
}
.spotlight-single .userNotev .avatar {
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.spotlight-single .userNote .autorName{
  display: block;
  margin-top: 8px;
  color: #647190;
}

/*
* divs width same height *
*/
.spotlight-article {
  display: flex;
  flex-direction: column;
  height: 100%;

  padding: 32px;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #DEE2ED;
  background: #F6F7FA;
}
.spotlight-article:hover {
  border: 1px solid #4277FC;
  cursor: pointer;
  text-decoration: none;
}
.spotlight-article .news-img-wrap {
  flex: 0 0 auto;
  margin-bottom: 32px;
  width: 100%;
  min-height: 280px;
  border-radius: 16px;
  background-color: #141E39;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.spotlight-article .header,
.spotlight-article .teaser-text {
  flex: 1 0 auto;
  color: #647190;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}
.spotlight-article .footer {
  margin-top: auto;
}

/*
* div style *
*/
.spotlight-article .teaser-text > div {
    margin-bottom: 24px;
}
.spotlight-article .h4 {
    color: #1F2E53 !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 32px !important;
    margin-bottom: 24px !important;
}

/*
* tags style *
*/
.spotlight-list-view ul.Tagsfilter li {
    border-radius: 25px;
    background: #D9E4FE;
    padding: 8px 16px;
    color: #1F2E53;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 8px;
    margin: 0 8px 0 0;
}

/*
* cat style *
*/
.spotlight-list-view .switch {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.spotlight-list-view .switch input {
  display: none;
}
.spotlight-list-view .slider {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #DEE2ED;
  border-radius: 12px;
  transition: background-color 0.3s;
  flex-shrink: 0;
}
.spotlight-list-view .slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: #A4AABA;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
/* Checked State */
.spotlight-list-view .switch input:checked + .slider {
  background-color: #C5D5FE;
}
.spotlight-list-view .switch input:checked + .slider::before {
  transform: translateX(24px);
  background-color: #4277FC;
}
.spotlight-list-view .switch-text {
  font-size: 0.95rem;
  color: #333;
}

/********************************************************************* related detail site */
.spotlight-single.related {
  padding: 80px 0 ;
}
.spotlight-single .related-wrap {
  display: flex;
  flex-wrap: wrap;
}
.spotlight-single .related-article {
  border-radius: 16px;
  background: #1F2E53;
  padding: 32px;
  color: #fff;
  text-decoration: none;
  height: 100%;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spotlight-single .relatedLink:hover {
  text-decoration: none;
}
.spotlight-single .news-img-wrap {
  text-align: center;
  background: #141E39;
  border-radius: 8px;
  margin-bottom: 32px;
}
.spotlight-single .related-article img{
  width: auto;
  max-width: 100%;
  max-height: 278px;
}
@media (max-width: 700px) {
  .spotlight-single .col-xs-12 {
    margin-bottom: 32px;
  }
  .spotlight-single .col-xs-12:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .spotlight-single .col-sm-6 {
    width: 50%;
    margin-bottom: 32px;
  }
  .spotlight-single .col-sm-6:last-child {
    margin-bottom: 0;
  }
}