.about-section {
  margin-bottom: 2rem;
}
.about-section h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c61779;
  border-left: 4px solid #c61779;
  padding-left: 12px;
  margin-bottom: 0.9rem;
}
.about-section p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 0.7rem;
}
.about-section ul,
.about-section ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.about-section ul li,
.about-section ol li {
  color: #444;
  line-height: 1.85;
  padding: 6px 0 6px 28px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.about-section ul li:last-child,
.about-section ol li:last-child {
  border-bottom: none;
}
.about-section ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c61779;
  flex-shrink: 0;
}
.about-section ol {
  counter-reset: asi-counter;
}
.about-section ol li {
  counter-increment: asi-counter;
}
.about-section ol li::before {
  content: counter(asi-counter);
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c61779;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .article-type-card {
  background: #fafafa;
  border: 1px solid #f0d6e8;
  border-left: 4px solid #c61779;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.about-section .article-type-card h6 {
  font-weight: 700;
  color: #c61779;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.about-section .article-type-card dl {
  margin: 0;
}
.about-section .article-type-card dt {
  font-weight: 700;
  color: #333;
  font-size: 0.9rem;
  margin-top: 8px;
}
.about-section .article-type-card dd {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-left: 0;
  padding-left: 14px;
  border-left: 2px solid #f0d6e8;
}
.frequency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}
@media (min-width: 576px) {
  .frequency-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .frequency-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.frequency-grid .freq-item {
  background: #fdf0f6;
  border: 1px solid #f0a0cc;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 13px;
  color: #333;
  text-align: center;
}
.freq-item strong {
  display: block;
  color: #c61779;
  font-size: 12px;
}
.publisher-box {
  background: #f8f9ff;
  border: 1px solid #dde3f8;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.9;
}
.publisher-box strong {
  color: #013289;
}
.section-divider {
  border: none;
  border-top: 1px solid #f0d6e8;
  margin: 1.8rem 0;
}
