






/* Article (Styles) */
/*--------------------------------------------------------------------------*/

.article {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #FFFFFF;
}
.article-inner {
  position: relative;
  width: 100%; height: 100%;
  padding-bottom: 16px;
}
.article .article-content {
  margin: 16px;
}
.article .article-content strong {
  display: inline-block;
  margin-bottom: 16px;
  word-break: break-word;
}
.article-image {
  background: #F7F7F7;
  overflow: hidden;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}
.article-image > img {
  transition: all 150ms ease;
}


/* Article (Addon) */
/*--------------------------------------------------------------------------*/

.article .addon {
  margin-bottom: 8.0px;
}
.article .addon .tag-list .tag,
.article .addon .date-time {
  color: #7F7F7F;
  font-style: normal;
}

/* Article (Link) */
/*--------------------------------------------------------------------------*/

.article .read-more {
  color: #D9D9D9;
  position: relative;
  transition: all 150ms linear;
}
.article .area-link:hover ~ .article-content > .read-more,
.article .area-link:focus ~ .article-content > .read-more {
  color: #FF9428;
  padding-left: 12px;
}
.article .area-link:hover ~ .article-image > img,
.article .area-link:focus ~ .article-image > img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.article .read-more i {
  position: absolute;
  opacity: 0; left: 0;
  transition: all 150ms linear;
}
.article .area-link:hover ~ .article-content > .read-more i,
.article .area-link:focus ~ .article-content > .read-more i {
  opacity: 1;
}


/* Article (Responsive Grid) */
/*--------------------------------------------------------------------------*/

@media (min-width:1024px) {
  .article {
    max-width: 592.0px;
  }
}

/* Article (Custom) */
/*--------------------------------------------------------------------------*/




.article {
  height: max-content;
  margin-bottom: 16px;
}

.article .live-webinar {
  z-index: 1; 
}

.article.default, .article.webinar {
  padding: 0; 
}

.article-inner {
  display: flex;
  flex-direction: column;
}

.article-inner .area-link {
  z-index: 3; 
}

.article .topline {
  font-size 16px;
  font-weight: 600; 
  line-height: 58px; 
  color: #FF9428;
  margin: 0;
  margin-top: 8px;
}

.article .article-content {
  position: relative;
  flex: 1; 
  z-index: 2; 
  margin: 0px;
  padding: 0 32px 32px;
  background-color: #FFFFFF;
  transition: all 0.4s;
}

.article .article-content strong {
  margin-top: 32px;
}

.article .article-content .topline + strong {
  margin-top: 0;
}

.article .button-container {
  overflow: hidden; 
  position: absolute;
  left: 32px; 
  bottom: 32px; 
  z-index: 1;
}

.article.default:hover .article-content {
  transform: translateY(-35px)
}


.article .btn.btn-text {
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 1s ease;
}

.article.default:hover .btn,
.article.webinar:hover .btn {
  opacity: 1
}

.article .button-container.transition-end {
  z-index: 3; 
}

.article .area-link:hover ~ .article-image > img,
.article .area-link:focus ~ .article-image > img {
  transform: none;
  filter: none;
}

/* Varian Webinar */


.article.webinar .article-content {
  padding-bottom: 0;
}

.article.webinar:hover .article-content {
  transform: translateY(-75%);
}

.article.webinar .article-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.article.webinar .article-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}

.article.webinar .live-webinar {
  position: absolute;
  top: 34%; 
}

.article .article-button-container .btn svg {
  width: 14px;
}

@media (max-width:767px) {
  .article {
    margin-bottom: 0;
  }
}


