.og-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── Hero ── */
.og-hero {
  padding: 48px 0 36px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 32px;
}
.og-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  background: var(--blue-lt);
  border: 1px solid var(--blue-mid);
  border-radius: 20px;
  padding: 4px 13px;
  margin-bottom: 16px;
}
.og-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.2;
}
.og-hero-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* ── List head ── */
.og-list-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.og-list-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.og-list-label i { color: var(--blue); }
.og-list-count {
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  border: 1px solid var(--blue-mid);
}

/* ── Cards ── */
.og-list { display: flex; flex-direction: column; gap: 14px; }

.og-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--sh);
}

.og-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.og-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.og-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  line-height: 1.35;
}

.og-date {
  font-size: 12px;
  color: var(--text-4);
  white-space: nowrap;
}

.og-content {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.og-content a        { color: var(--blue); text-decoration: underline; }
.og-content a:hover  { color: var(--blue-dk); }
.og-content strong   { font-weight: 700; color: var(--text); }

/* ── Pagination ── */
.og-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.og-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.og-page-btn:hover          { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.og-page-btn.og-page-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.og-page-btn.og-page-off    { opacity: .4; pointer-events: none; }

/* ── Empty ── */
.og-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.8;
}
.og-empty i { font-size: 36px; margin-bottom: 12px; display: block; color: var(--text-4); }

@media (max-width: 560px) {
  .og-hero-title { font-size: 26px; }
  .og-date       { display: none; }
}
