.view-all-articles {
  padding: 2rem 0;
}

.view-all-articles .view-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.view-all-articles .item {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.view-all-articles .item:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  border-color: #d1d5db;
}

.view-all-articles .thumbnail {
  flex-shrink: 0;
  width: 280px;
  height: 158px;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f3f4f6;
}

.view-all-articles .thumbnail iframe,
.view-all-articles .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-all-articles .data {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  padding: 0.5rem 0;
}

.view-all-articles .type {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.25rem 0.75rem;
  background: #f3f4f6;
  border-radius: 0.375rem;
  align-self: flex-start;
}

.view-all-articles .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-all-articles .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-articles .title a:hover {
  color: #2563eb;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .view-all-articles .item {
    background: #1f2937;
    border-color: #374151;
  }
  
  .view-all-articles .item:hover {
    border-color: #4b5563;
  }
  
  .view-all-articles .thumbnail {
    background: #374151;
  }
  
  .view-all-articles .type {
    background: #374151;
    color: #9ca3af;
  }
  
  .view-all-articles .title {
    color: #f3f4f6;
  }
  
  .view-all-articles .title a:hover {
    color: #60a5fa;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .view-all-articles .item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .view-all-articles .thumbnail {
    width: 100%;
    height: 200px;
  }
  
  .view-all-articles .data {
    padding: 0;
  }
  
  .view-all-articles .title {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .view-all-articles .item {
    padding: 1rem;
  }
  
  .view-all-articles .thumbnail {
    height: 180px;
  }
  
  .view-all-articles .type {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
  }
  
  .view-all-articles .title {
    font-size: 1rem;
  }
}