
.reports-page__recommendation-card {
  width: 310px;
  height: 428px;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  margin: 0 12px 24px;
  flex-direction: column;
  cursor: pointer;
  color: #263856;
  transition: all 0.3s ease-in;
}

.reports-page__recommendation-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.reports-page__recommendation-card .summary__logo-container {
  display: flex;
  align-items: center;
  padding: 16px 21px;
  margin: 0;
}

.reports-page__recommendation-card .summary__logo-title {
  margin: 0 0 0 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}

.recommendation-card__img {
  width: 100%;
  height: 162px;
  position: relative;
}

.recommendation-card__img img {
  width: 100%;
  height: 162px;
  object-fit: cover;
}

.recommendation-card__text {
  padding: 14px 20px 10px;
}

.recommendation-card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 8px;
}

.recommendation-card__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.reports-page__recommendation-card .summary__price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto 0 0;
    padding: 0 20px 18px;
}


.reports-page__recommendation-card .summary__more-btn {
  display: flex;
  background: #ff7c11;
  border-radius: 32px;
  width: 86px;
  margin: 0 0 0 auto;
  height: 32px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.reports-page__recommendation-card .summary__more-btn:hover {
  transform: translateY(-2px);
}

.reports-page__recommendation-card .dashboard-card__status{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 13px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    max-width: 98px;
    top: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #ff7c11;
}
.reports-page__recommendation-card .status-summary{
    left: 20px;
    top: 20px;
    margin: 0;
}

.reports-page__recommendation-card_splide-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 28px;
    height: 48px;
    margin: 24px;
}

.reports-page__recommendation-card_splide-arrows .splide__arrow{
    position: relative;
    transform: none;
    top: 0;
    background: none;
    border: 1px solid #D1C8BE;
    width: 42px;
    left: 0;
    height: 42px;
}
.reports-page__recommendation-card_splide-arrows .splide__arrow--prev, .reports-page__recommendation-card_splide-arrows .splide__arrow--next{
  right:0;
  left:0;

}



.report-card-slim{
  /*background: linear-gradient(0deg, #FFFFFF, #FFFFFF), rgba(255, 255, 255, 0.15);*/
  background-color:#FFF;
  background-repeat: no-repeat;
  background-size:cover 164px;
  background-position:top center;
  width:352px;
  min-width: 352px;
  height:284px;
  /*box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.45);*/
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  color:#263856;
  padding:20px;
  position:relative;
  overflow:hidden;
}

.report-card-slim.dark{
  /*background: linear-gradient(0deg, #272D3D, #272D3D), rgba(255, 255, 255, 0.15);*/
  background-color:#272D3D;
  background-repeat: no-repeat;
  background-size:100% 164px;
  background-position:top center;
  color:#FFF;
}

@media (max-width: 930px) {
  .report-card-slim,.report-card-slim.dark{
    width: 310px;
    min-width: 310px;
    height: 395px;
    background-size:310px 164px;
  }
}
.report-card-slim__bg-desktop, .report-card-slim__bg-mobile{
  display: flex;
  position:absolute;
  top:0;
  left:0;
  right:0;
  margin:0 auto;
  width:352px;
  height:164px;
  z-index:0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.report-card-slim__bg-mobile{
  display: none;
  width: 310px;
  height: 241px;
  object-fit: cover;
}

.report-card-slim__bg-shadow{
  z-index: 1;
  background: linear-gradient(87.12deg, rgba(39, 45, 61, 0.6) -0.05%, rgba(39, 45, 61, 0) 93.28%);
}

@media (max-width: 930px) {
  .report-card-slim__bg-desktop{
    display: none;
  }
  .report-card-slim__bg-mobile{
    display: flex;
  }
}

.report-card-slim__heading{
  display:flex;
  align-items:center;
  gap:8px;
  z-index:2;
}

.report-card-slim__heading__icon{
  border-radius: 50%;
  width:36px;
  height: 36px;
}
@media (max-width: 930px) {
  .report-card-slim__heading__icon{
    width: 30px;
    height: 30px;
  }
}
.report-card-slim__heading__status{
      background: rgba(255, 255, 255, 0.15);
border-radius: 6px;
display: flex;
align-items:center;
justify-content: center;
text-transform: uppercase;
color: #FF7C11;
font-style: normal;
font-weight: 600;
font-size: 12px;
line-height: 18px;
width:90px;
height:24px;
}

.report-card-slim__title{
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  z-index: 2;
  color: #FFFFFF;
  width: 140px;
  min-height: 48px;
}
@media (max-width: 930px) {
  .report-card-slim__title{
    display: none;
  }
}
.report-card-slim__subtitle{
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  display:none;
  z-index: 2;
}
.report-card-slim__bodtitle{
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  overflow:hidden;
  height:0px;
  transition:all 200ms ease-in-out;
}
@media (max-width: 930px) {
  .report-card-slim__bodtitle{
    display: none;
  }
  .report-card-slim__subtitle{
    display: flex;
  }
}
.report-card-slim__body{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  z-index: 2;
  max-height: 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.report-card-slim__cta{
  padding: 8px 16px;
  gap: 2px;
  width: auto;
  height: 32px;
  background: #FF7C11;
  border-radius: 32px;
  display: flex;
  align-items:center;
  justify-content:center;
  z-index: 2;
  transition:all 150ms ease-in-out;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor:pointer;
  margin-left:auto;
  cursor: pointer;
}

.report-card-slim__cta:hover{
  background-color:#d1660e;
  transform: translateY(-2px);
}

.report-card-slim__bottom{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
}

.report-card-slim__price{
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-decoration-line: line-through;
  color: #6786AC50;
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:center;
  opacity:0;
  transition:all 600ms ease-in-out;
}
.report-card-slim__price .accent{
  text-decoration:none;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  color: #FFFFFF;
}

@media (max-width: 930px) {
  .report-card-slim__price{
    display:none;
  }
  .report-card-slim__cta{
    margin-left: 0;
    margin-right:auto;
  }
}

.report-card-slim__cta.secondary{
  background:none;
  border: 1px solid #FFFFFF;
  border-radius: 32px;
}
.report-card-slim__cta.secondary:hover{
  background:none;
  text-decoration: underline;
  background-color:none;
  transform: translateY(-2px);
}

