/** Shopify CDN: Minification failed

Line 66:21 Expected identifier but found whitespace
Line 66:23 Unexpected "{"
Line 66:32 Expected ":"

**/
/* General card styles */
.card-wrapper {
  margin-bottom: 2rem;
}
.article-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 20px;
  border-radius: 2rem;
  padding: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Fixed height and vertical layout */
  height: 460px; /* Adjust as needed */
}

.card__information {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden; /* Ensures content does not overflow */
  flex: 1;
}

.card__content {
  padding: 1.5rem;
  overflow-y: auto; /* Enables scroll if content is too long */
}

.card__heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1f2937;

  overflow: hidden;

}

.article-card__excerpt {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 1rem;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show 3 lines max */
  -webkit-box-orient: vertical;
}

.article-readmore {
  margin-top: auto; /* Push to bottom */
}
 .article-author {
    background-color: {{ section.settings.article_author_bg_color }};
  }

.content-readmore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.article-readmore__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-readmore__link:hover {
  color: #1d4ed8;
}

.article-readmore__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.article-readmore__link:hover .article-readmore__icon {
  background-color: #1d4ed8;
  transform: translateX(4px);
}

/* Author and date styles */
.article_auth {
  display: flex;
  align-items: center;
  
  gap: 8px;
  font-size: 1.4rem;
  color: #6b7280;
}

.article_auth svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .card__content {
    padding: 1rem;
  }

  .card__heading {
    font-size: 1.1rem;
  }

  .article-readmore__icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}
