.articles-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(243, 244, 246, 1);
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed) ease;
}

.article-card:hover {
  transform: translateY(-4px); 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem; 
}

.article-title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: rgba(17, 24, 39, 1);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.article-title:hover {
  color: #d66a3d;
  text-decoration: none;
}

.article-name {
  margin-top: 0.5rem;
  font-size: 0.875rem; 
  line-height: 1.25rem;
  font-weight: 500;
  color: #666
}

.article-image {
  display: block;
  flex-shrink: 0;
  height: 4rem; 
  width: 4rem;
  border-radius: 0.75rem;
  object-fit: cover;
  background-color: royalblue;
  transition: transform var(--transition-speed) ease;
}

.article-image:hover {
  transform: scale(1.05);
}

.article-description {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #666
}

.article-post-info {
  margin-top: 1.75rem;
  display: flex;
  gap: 1.5rem;
}

.article-cr {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.25rem;
}

.article-dt {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #666
}

.article-dd {
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666
}