.elementor-1642 .elementor-element.elementor-element-02f7a20{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-d8c67bf */.article-card {
  direction: rtl;
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.13);
}

.article-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b2a38;
}

.article-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.article-card:hover .article-card__image-wrap img {
  transform: scale(1.08);
}

.article-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 20, 28, 0.42), transparent 58%),
    linear-gradient(135deg, rgba(0, 151, 178, 0.18), transparent 45%);
  pointer-events: none;
}

.article-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.article-card__title {
  margin: 0 0 12px;
  color: #0b2530;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.article-card:hover .article-card__title {
  color: #008aa3;
}

.article-card__excerpt {
  margin: 0 0 22px;
  color: #60717a;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 2;
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 42, 56, 0.08);
}

.article-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6b7c84;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.article-card__meta-item svg {
  color: #0097b2;
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .article-card {
    border-radius: 18px;
  }

  .article-card__content {
    padding: 18px 18px 17px;
  }

  .article-card__title {
    font-size: 18px;
  }

  .article-card__excerpt {
    font-size: 14px;
  }
}/* End custom CSS */