/* ============================================================
   MOG Support Center – Section Page Styles
   (stejná struktura jako mog-category.css)
   ============================================================ */

/* ---------- Layout ---------- */
.mog-category-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 32px 0 80px;
}

@media (max-width: 768px) {
  .mog-category-layout {
    flex-direction: column;
    gap: 32px;
  }
}

/* ---------- Sidebar ---------- */
.mog-sidebar {
  width: 200px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mog-sidebar {
    width: 100%;
  }
}

.mog-sidebar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5a6080;
  margin: 0 0 12px;
}

.mog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mog-sidebar__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  margin-bottom: 2px;
}

.mog-sidebar__item a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: #8890aa !important;
  text-decoration: none !important;
  flex: 1;
  transition: color 0.15s;
}

.mog-sidebar__item a:hover {
  color: #ffffff !important;
}

.mog-sidebar__item--active {
  background-color: #0e0e1e;
  border-left: 2px solid #2b3fef;
}

.mog-sidebar__item--active a {
  color: #ffffff !important;
  font-weight: 600;
}

.mog-sidebar__count {
  font-size: 12px;
  color: #5a6080;
  background-color: #14142a;
  border-radius: 10px;
  padding: 1px 8px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ---------- Main content ---------- */
.mog-category-content {
  flex: 1;
  min-width: 0;
}

/* ---------- Header ---------- */
.mog-category-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #0e0e1a;
}

.mog-category-header__title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.mog-category-header__desc {
  font-size: 14px;
  color: #5a6080;
  margin: 0 0 16px;
}

.mog-category-header__stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mog-category-header__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #5a6080;
}

.mog-category-header__stat-sep {
  color: #2e2e45;
  font-size: 13px;
}

/* ---------- Article list ---------- */
.mog-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mog-article-item {
  border-bottom: 1px solid #0e0e1a;
}

.mog-article-item:last-child {
  border-bottom: none;
}

.mog-article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-decoration: none !important;
  gap: 16px;
  transition: opacity 0.15s;
}

.mog-article-link:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.mog-article-link__content {
  flex: 1;
  min-width: 0;
}

.mog-article-link__title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #e0e4f0;
  margin-bottom: 4px;
}

.mog-article-link__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5a6080;
}

.mog-article-link__sep {
  color: #2e2e45;
}

.mog-article-link__arrow {
  color: #2e2e45;
  flex-shrink: 0;
  transition: color 0.15s;
}

.mog-article-link:hover .mog-article-link__arrow {
  color: #2b3fef;
}

/* ---------- CTA ---------- */
.mog-category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #0e0e1a;
}

@media (max-width: 600px) {
  .mog-category-cta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.mog-category-cta__text {
  font-size: 14px;
  color: #5a6080;
}

.mog-category-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2b3fef;
  border: 1px solid #2b3fef;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.mog-category-cta__btn:hover {
  background-color: #1f30d4;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ---------- Sub-nav (breadcrumbs + search) ---------- */
.sub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #0e0e1a;
  margin-bottom: 0;
}

.breadcrumbs li,
.breadcrumbs li a {
  color: #5a6080 !important;
  font-size: 13px;
}

.breadcrumbs li a:hover {
  color: #ffffff !important;
}
