@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
.afr-container {
  max-width: 1440px;
  margin: 0 auto
}
.afr-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 16px
}
.afr-filters select {
    padding: 8px 100px 10px 10px;
    border: 2px solid #0072CE;
    border-radius: 4px;
    font-size: 19px;
    color: #152D49;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230072CE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px
}
.afr-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px;
  width:1200px;	
}
.afr-featured-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px
}
#afr-featured-main .afr-item,
#afr-featured-side .afr-item {
  height: 100%
}
.afr-heading {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: #152D49;
  font-size: 26px;
  margin: 36px 0 28px 0;
}
.afr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}
.afr-item {
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    padding-top: 25px;
    display: flex;
    flex-direction: column
}
.afr-item .afr-content {
    padding-left: 14px;
    flex: 1;
}
.afr-item .afr-image {
    display: flex;
    justify-content: center;
    margin-top: auto;
    background-color: #E1EBFA;
}
.afr-animate .afr-item {
  opacity: 0;
  transform: translateY(8px);
  animation: afrFadeInUp .4s ease-out forwards;
}
.afr-animate .afr-item:nth-child(1) { animation-delay: 0.02s }
.afr-animate .afr-item:nth-child(2) { animation-delay: 0.06s }
.afr-animate .afr-item:nth-child(3) { animation-delay: 0.10s }
.afr-animate .afr-item:nth-child(4) { animation-delay: 0.14s }
.afr-animate .afr-item:nth-child(5) { animation-delay: 0.18s }
.afr-animate .afr-item:nth-child(6) { animation-delay: 0.22s }
.afr-animate .afr-item:nth-child(7) { animation-delay: 0.26s }
.afr-animate .afr-item:nth-child(8) { animation-delay: 0.30s }
.afr-animate .afr-item:nth-child(9) { animation-delay: 0.34s }
@keyframes afrFadeInUp {
  to { opacity: 1; transform: translateY(0) }
}
.afr-item .afr-type {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  color: #5AAAFA;
  padding: 12px 12px 0
}
.afr-item .afr-thumb {
    display: block;
    width: 40%;
    height: auto;
}
.afr-item .afr-title {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0;
  color: #152D49;
  margin: 20px 12px 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 58px
}
.afr-item .afr-title a {
  color: inherit;
  text-decoration: none
}
.afr-item .afr-image a {
    display: flex;
    justify-content: center;
}
.afr-item .afr-title a:hover {
  text-decoration: underline
}
.afr-item .afr-desc {
  margin: 0 12px 12px;
  color: #646464;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0
}
.afr-loading {
  text-align: center;
  padding: 16px
}
.afr-loading::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #E6F2FF;
  border-top-color: #0072CE;
  animation: afrSpin 0.9s linear infinite;
}
@keyframes afrSpin { to { transform: rotate(360deg) } }
.afr-empty {
  text-align: center;
  color: #0072CE;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  font-size: 18px;
  padding: 24px 8px;
}
@media(max-width:900px) {
  .afr-featured {
    grid-template-columns: 1fr
  }
  .afr-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .afr-item .afr-type {
    font-size: 18px
  }
  .afr-item .afr-title {
    font-size: 22px
  }
  .afr-item .afr-desc {
    font-size: 18px
  }
}
@media(max-width:600px) {
  .afr-filters { flex-direction: column }
  .afr-filters select { width: 100% }
  .afr-grid {
    grid-template-columns: 1fr
  }
  .afr-item .afr-type {
    font-size: 16px
  }
  .afr-item .afr-title {
    font-size: 20px
  }
  .afr-item .afr-desc {
    font-size: 16px
  }
}
#afr-featured-main article {
    padding: 75px 0px 0px 0px !important;
}

#afr-featured-main .afr-item .afr-content {
    padding: 12px 30px 0 !important;
}
article.afr-item {
    border-radius: 0px !important;
}
#afr-featured-main article .afr-image .afr-thumb{
    width:50%;
}
.afr-content {
    padding-bottom: 24px;
}