/**
 * Category Page - Article Styles
 * Featured article, horizontal cards, list items, mini cards, grids
 */

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  align-items: center;
}
.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #14bdee;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.featured-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 18px 0;
}
.featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.featured-title a:hover {
  color: #14bdee;
}
.featured-excerpt {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px 0;
}
.featured-meta {
  font-size: 0.85rem;
  color: #888;
}
.featured-meta .separator {
  margin: 0 8px;
  color: #ccc;
}
.featured-meta .read-time {
  color: #666;
}
.featured-image {
  border-radius: 8px;
  overflow: hidden;
  max-height: 320px;
}
.featured-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Cards Section */
.articles-cards-section {
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.articles-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Horizontal Article Card */
.article-card-horizontal {
  display: flex;
  gap: 16px;
  padding: 0;
}
.card-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-thumb-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}
.card-content {
  flex: 1;
  min-width: 0;
}
.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: #14bdee;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.card-title a:hover {
  color: #14bdee;
}
.card-excerpt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  font-size: 0.75rem;
  color: #999;
  margin-top: 8px;
}
.card-meta .separator {
  margin: 0 6px;
  color: #ddd;
}

/* Split Section - 50% List, 50% Grid */
.articles-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #eee;
  align-items: start;
}

/* Left Column - List View */
.split-list-column {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding-right: 40px;
}

/* Article List Item (no image) */
.article-list-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.article-list-item:first-child {
  padding-top: 0;
}
.article-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.article-list-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.article-list-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.article-list-title a:hover {
  color: #14bdee;
}
.article-list-meta {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.article-list-meta .separator {
  margin: 0 8px;
  color: #ccc;
}

/* Right Column - Horizontal Cards */
.split-grid-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mini Card - Horizontal Layout */
.mini-card {
  display: flex;
  gap: 16px;
}
.mini-card-image {
  flex-shrink: 0;
  width: 110px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}
.mini-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-card-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}
.mini-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mini-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: #14bdee;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.mini-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
.mini-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.mini-card-title a:hover {
  color: #14bdee;
}
.mini-card-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mini-card-meta {
  font-size: 0.75rem;
  color: #999;
}
.mini-card-meta .separator {
  margin: 0 6px;
  color: #ddd;
}

/* Extra Articles Section */
.articles-extra-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

