/* Section Box */
.section-box {
  border: 1px solid #e5e5e5;
  padding: 16px;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.section-box:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Title */
.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
}

/* Quick Links */
.quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.quick-list i {
  color: #f0a500;
  font-size: 14px;
}

.quick-list a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.2s ease;
}

.quick-list a:hover {
  color: #f0a500;
}

/* Articles */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-list li {
  margin-bottom: 14px;
}

.article-list a {
  display: block;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.article-list a:hover {
  color: #f0a500;
}

.article-list small {
  color: #777;
}

/* Skeleton Loader */
.skeleton-loader .title-placeholder,
.skeleton-loader .meta-placeholder {
  display: block;
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f5f5f5 37%,
    #e0e0e0 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

.title-placeholder {
  width: 85%;
  height: 14px;
  margin-bottom: 6px;
}

.meta-placeholder {
  width: 60%;
  height: 12px;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.quick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-list i {
  color: #f07c2b;
  width: 20px;
}
