/* =========================================
   XADRAK — Blog & About Extra Styles
   ========================================= */

/* ── PAGE HERO ──────────────────────────── */
.page-hero {
  position: relative;
  padding: 120px 2rem 4rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin: 0.5rem 0 1rem;
  background: linear-gradient(135deg, #00E5FF, #00FF88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-stats {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-val {
  color: var(--cyan);
  font-weight: 600;
}

.stat-sep {
  opacity: 0.4;
}

/* ── TOOLBAR ────────────────────────────── */
.blog-toolbar {
  background: var(--graphite-mid);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.toolbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
}

.search-icon {
  position: absolute;
  left: 10px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 2rem;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.78rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: rgba(0, 229, 255, 0.4);
}

.search-clear {
  position: absolute;
  right: 8px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  padding: 2px;
}

.search-clear.visible {
  display: block;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.pill:hover {
  color: var(--white);
}

.pill.active {
  color: var(--white);
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
}

.pill.critical.active,
.pill.critical:hover {
  color: var(--red);
  background: rgba(255, 59, 59, 0.1);
  border-color: rgba(255, 59, 59, 0.3);
}

.pill.high.active,
.pill.high:hover {
  color: var(--orange);
  background: rgba(255, 140, 66, 0.1);
  border-color: rgba(255, 140, 66, 0.3);
}

.pill.medium.active,
.pill.medium:hover {
  color: var(--yellow);
  background: rgba(255, 209, 102, 0.1);
  border-color: rgba(255, 209, 102, 0.3);
}

.pill.low.active,
.pill.low:hover {
  color: #6EE7B7;
  background: rgba(110, 231, 183, 0.08);
  border-color: rgba(110, 231, 183, 0.2);
}

.pill.info.active,
.pill.info:hover {
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
}

.category-select {
  padding: 0.45rem 0.75rem;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.75rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.category-select:focus {
  border-color: rgba(0, 229, 255, 0.4);
}

.category-select option {
  background: var(--graphite);
}

/* ── BLOG MAIN LAYOUT ───────────────────── */
.blog-main {
  background: var(--black);
  min-height: 60vh;
  padding: 3rem 2rem;
}

.blog-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* ── POSTS GRID ─────────────────────────── */
.posts-area {
  min-width: 0;
}

.posts-status {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

#results-count {
  color: var(--cyan);
}

.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Post Card — List style */
.post-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  animation: cardIn 0.35s ease both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.post-card.critical::before {
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.4);
}

.post-card.high::before {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 140, 66, 0.4);
}

.post-card.medium::before {
  background: var(--yellow);
}

.post-card.low::before {
  background: #6EE7B7;
}

.post-card.info::before {
  background: var(--cyan);
}

.post-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.post-severity-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 3px;
}

.post-sev-badge {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 6px;
  border-radius: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.post-sev-badge.critical {
  background: rgba(255, 59, 59, 0.12);
  color: var(--red);
  border: 1px solid rgba(255, 59, 59, 0.2);
}

.post-sev-badge.high {
  background: rgba(255, 140, 66, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.post-sev-badge.medium {
  background: rgba(255, 209, 102, 0.1);
  color: var(--yellow);
  border: 1px solid rgba(255, 209, 102, 0.2);
}

.post-sev-badge.low {
  background: rgba(110, 231, 183, 0.08);
  color: #6EE7B7;
  border: 1px solid rgba(110, 231, 183, 0.15);
}

.post-sev-badge.info {
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.post-body {
  min-width: 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.post-category {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--green);
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.15);
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.post-date {
  font-family: var(--mono);
  font-size: 0.67rem;
  color: var(--text-muted);
}

.post-source {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.post-read-time {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: auto;
}

.post-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.post-card:hover .post-title {
  color: var(--cyan);
}

.post-summary {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.post-tag {
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.12);
  padding: 1px 6px;
  border-radius: 3px;
}

.post-cta {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap 0.2s;
}

.post-card:hover .post-cta {
  gap: 8px;
}

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.nr-icon {
  margin-bottom: 1.25rem;
}

.nr-title {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.nr-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ── SIDEBAR ────────────────────────────── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.sc-header {
  margin-bottom: 1rem;
}

.sc-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 1px;
}

.sc-author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.sc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E5FF, #00FF88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  color: #05070A;
  font-size: 1rem;
  flex-shrink: 0;
}

.sc-name {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
}

.sc-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sc-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sc-categories {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sc-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: color 0.2s;
}

.sc-cat-item:hover {
  color: var(--cyan);
}

.sc-cat-name {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.sc-cat-count {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 1px 6px;
  border-radius: 10px;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sc-tag-pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-tag-pill:hover {
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.25);
}

.nl-sidebar-card {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(0, 255, 136, 0.04));
  border-color: rgba(0, 229, 255, 0.15);
}

.sc-nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── NAV ACTIVE STATE ───────────────────── */
.nav-link.active {
  color: var(--cyan);
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* ── ABOUT HERO ─────────────────────────── */
.about-page-hero {
  position: relative;
  padding: 120px 2rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.about-hero-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-avatar-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 3rem;
  color: var(--cyan);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.about-avatar-frame::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.about-hero-text .section-tag {
  text-align: left;
  margin-bottom: 0.5rem;
}

.about-hero-title {
  font-family: var(--mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.about-hero-title span {
  background: linear-gradient(135deg, #00E5FF, #00FF88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-role {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.about-hero-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.about-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Mission / Vision / Values */
.mvv-section {
  background: var(--graphite-mid);
  padding: 5rem 2rem;
}

.mvv-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.mvv-card.mission::before {
  background: linear-gradient(90deg, #00E5FF, transparent);
}

.mvv-card.vision::before {
  background: linear-gradient(90deg, #00FF88, transparent);
}

.mvv-card.values::before {
  background: linear-gradient(90deg, #FF3B3B, transparent);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mvv-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mvv-card.mission .mvv-label {
  color: var(--cyan);
}

.mvv-card.vision .mvv-label {
  color: var(--green);
}

.mvv-card.values .mvv-label {
  color: var(--red);
}

.mvv-title {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.mvv-text {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Values rows — base (Valores card: red) */
.mvv-values-rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mvv-value-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 59, 59, 0.04);
  border-left: 2px solid rgba(255, 59, 59, 0.3);
  transition: background 0.2s, border-color 0.2s;
}

.mvv-value-row:hover {
  background: rgba(255, 59, 59, 0.08);
  border-left-color: var(--red);
}

.mvv-value-marker {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.8;
  margin-top: 5px;
  box-shadow: 0 0 6px rgba(255, 59, 59, 0.4);
}

/* Missão card: cyan */
.mvv-card.mission .mvv-value-row {
  background: rgba(0, 229, 255, 0.04);
  border-left-color: rgba(0, 229, 255, 0.3);
}

.mvv-card.mission .mvv-value-row:hover {
  background: rgba(0, 229, 255, 0.08);
  border-left-color: var(--cyan);
}

.mvv-card.mission .mvv-value-marker {
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

/* Visão card: green */
.mvv-card.vision .mvv-value-row {
  background: rgba(0, 255, 136, 0.04);
  border-left-color: rgba(0, 255, 136, 0.3);
}

.mvv-card.vision .mvv-value-row:hover {
  background: rgba(0, 255, 136, 0.08);
  border-left-color: var(--green);
}

.mvv-card.vision .mvv-value-marker {
  background: var(--green);
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.4);
}

.mvv-value-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mvv-value-key {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.mvv-value-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Timeline / Experience */
.timeline-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  transform: translateX(calc(-50% + 0.5px));
}

.tl-period {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 1px;
}

.tl-role {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.tl-org {
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.tl-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tl-divider {
  margin: 0.85rem 0 0.65rem;
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
}

/* Skills section */
.skills-section {
  background: var(--graphite-mid);
  padding: 5rem 2rem;
}

.skills-container {
  max-width: 1100px;
  margin: 0 auto;
}

.skills-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.skill-group {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.sg-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.sg-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sg-skill {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.sg-skill:hover {
  color: var(--green);
  border-color: rgba(0, 255, 136, 0.25);
}

/* Ethics section */
.ethics-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.ethics-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--graphite);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.ethics-terminal-body {
  padding: 1.5rem;
}

.ethics-cta {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .toolbar-container {
    gap: 0.75rem;
  }

  .search-box {
    max-width: 100%;
  }

  .filter-group {
    width: 100%;
  }

  .blog-stats {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-severity-col {
    flex-direction: row;
    align-items: center;
  }

  .post-sev-badge {
    writing-mode: horizontal-tb;
    transform: none;
  }
}