/* Base theme migrated from Blazor app.css */
:root {
  --bg-base: #020617;
  --bg-deep: #000000;
  --bg-surface: #0f172a;
  --bg-surface-a85: rgba(15, 23, 42, 0.85);
  --bg-surface-a90: rgba(15, 23, 42, 0.90);
  --bg-surface-a95: rgba(15, 23, 42, 0.95);
  --bg-surface-a98: rgba(15, 23, 42, 0.98);
  --text-primary: #e5e7eb;
  --text-muted: #9ca3af;
  --text-subtle: #cbd5f5;
  --border: rgba(148, 163, 184, 0.50);
  --border-subtle: rgba(148, 163, 184, 0.30);
  --border-accent: rgba(96, 165, 250, 0.90);
  --accent-indigo: #6366f1;
  --accent-cyan: #22d3ee;
  --accent-sky: #0ea5e9;
  --accent-a25: rgba(37, 99, 235, 0.25);
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.90);
  --shadow-card-lg: 0 26px 60px rgba(15, 23, 42, 1.00);
  --shadow-modal: 0 24px 70px rgba(0, 0, 0, 0.90);
  --link-color: #006bb7;
  --btn-primary-bg: #1b6ec2;
  --btn-primary-border: #1861ac;
}

html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

a { color: var(--link-color); }

.btn-primary {
  color: #fff;
  background-color: var(--btn-primary-bg);
  border-color: var(--btn-primary-border);
}

.page {
  position: relative;
  display: flex;
  min-height: 100vh;
}

main {
  flex: 1 1 auto;
  min-width: 0;
  background: var(--bg-base);
  color: var(--text-primary);
}

.content {
  padding-top: 1.1rem;
}

.page-wrapper {
  animation: page-fade-slide 320ms ease-out;
}

@keyframes page-fade-slide {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.sidebar {
  background-color: #0f172a;
  color: #e5e7eb;
  width: 210px;
  min-height: 100vh;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: width 0.2s ease;
  box-shadow: 2px 0 12px rgba(15, 23, 42, 0.6);
  position: sticky;
  top: 0;
}

.sidebar.collapsed {
  width: 72px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-title {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sidebar-toggle {
  border: none;
  background: transparent;
  color: #e5e7eb;
  padding: 0.25rem;
  border-radius: 999px;
  cursor: pointer;
}

.sidebar-toggle:hover {
  background-color: rgba(148, 163, 184, 0.25);
}

.icon-mobile { display: none; }
.icon-desktop { display: inline-block; }

.sidebar-nav {
  margin: 0;
  padding: 0.25rem 0.25rem 0.25rem 0;
  list-style: none;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #c7d2fe;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link i { font-size: 1.25rem; }

.nav-link:hover {
  background: rgba(129, 140, 248, 0.15);
  color: #e5e7eb;
}

.nav-link.active {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #f9fafb;
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.6);
}

.sidebar.collapsed .nav-text,
.sidebar.collapsed .sidebar-title {
  display: none;
}

.sidebar.collapsed .nav-link {
  justify-content: center;
  padding-inline: 0.4rem;
}

.nav-item-separator {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-separator-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  padding-left: 0.75rem;
}

.sidebar-stats {
  padding: 1rem 1.3rem 1.4rem;
  border-top: 1px solid var(--border-subtle);
  font-size: .8rem;
  color: var(--text-muted);
}

.sidebar-stats-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  margin-bottom: .4rem;
  color: #6b7280;
}

.sidebar-stats-main {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e5e7eb;
}

.sidebar-stats-main-caption {
  font-size: .7rem;
  margin-left: .35rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9ca3af;
}

.sidebar-stats-rows {
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.last30-bar {
  margin-top: .25rem;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  overflow: hidden;
}

.last30-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan));
  transition: width .25s ease;
}

.page-root {
  min-height: calc(100vh - 3rem);
  padding: 3rem 2.5rem 2.5rem;
  color: var(--text-primary);
}

.section-header {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.section-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-header h1 {
  font-size: clamp(2rem, 2.3vw + 1rem, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-intro {
  max-width: 40rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.rz-badge,
.home-tag,
.project-tags .badge {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-surface-a90);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.home-root {
  min-height: calc(100vh - 3rem);
  display: flex;
  align-items: stretch;
  background: radial-gradient(circle at top left, #1d4ed8 0, var(--bg-base) 50%, var(--bg-deep) 100%);
}

.home-hero {
  margin: 0 auto;
  padding: 3rem 2.5rem;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
}

.home-hero-main h1 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-hero-main h2 {
  font-size: clamp(1.2rem, 1.2vw + 0.9rem, 1.6rem);
  font-weight: 500;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.home-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.home-lead {
  max-width: 42rem;
  font-size: 1.04rem;
  line-height: 1.7;
}

.home-actions {
  display: flex;
  gap: 1rem;
  margin: 1.75rem 0 1rem;
}

.home-actions .btn {
  border-radius: 999px;
  padding-inline: 1.8rem;
}

.home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.home-hero-card {
  align-self: center;
  background: var(--bg-surface-a90);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 1.7rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.home-hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.home-hero-meta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-hero-meta strong {
  color: var(--text-primary);
}

.about-root {
  min-height: calc(100vh - 3rem);
  padding: 3rem 2.5rem;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 50%, #000 100%);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
}

.about-main h1 {
  font-size: clamp(2rem, 2.3vw + 1rem, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.about-lead {
  font-size: 1.02rem;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.about-alert {
  margin-bottom: 1.5rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.96));
  border-radius: 1rem;
  border: 1px solid rgba(96, 165, 250, 0.9);
  padding: .9rem 1rem;
}

.about-sections section + section {
  margin-top: 1.25rem;
}

.about-sections h2 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.about-sections p {
  color: #cbd5f5;
  font-size: 0.98rem;
}

.about-sidecard {
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-card);
  font-size: 0.95rem;
}

.about-photo {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(96, 165, 250, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  margin: 0 auto 1.1rem auto;
}

.projects-root {
  min-height: calc(100vh - 3rem);
  padding: 3rem 2.5rem 2.5rem;
  background: radial-gradient(circle at top left, #1d4ed8 0, var(--bg-base) 55%, var(--bg-deep) 100%);
}

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

.project-card {
  background: radial-gradient(circle at top left, var(--accent-a25), var(--bg-surface-a95));
  border-radius: 1.5rem;
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-lg);
}

.project-image-wrap {
  height: 140px;
  border-radius: 1.1rem;
  overflow: hidden;
  background: var(--bg-base);
}

.project-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease-out, filter 180ms ease-out;
}

.project-image-overlay,
.cert-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.1), var(--bg-surface-a90));
  color: var(--text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 160ms ease-out;
}

.project-image-link:hover .project-image-overlay,
.cert-thumb:hover .cert-thumb-overlay {
  opacity: 1;
}

.project-image-link:hover .project-image,
.cert-thumb:hover .cert-thumb-image-wrap img {
  transform: scale(1.05);
  filter: blur(0.5px) brightness(0.9);
}

.project-body h2 {
  font-size: 1.15rem;
}

.project-tech {
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

.project-tags {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.project-footer {
  margin-top: auto;
}

.skills-root {
  min-height: calc(100vh - 3rem);
  padding: 3rem 2.5rem 2.5rem;
  background: radial-gradient(circle at top left, var(--accent-sky) 0, var(--bg-base) 55%, var(--bg-deep) 100%);
}

.skills-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.skills-columns section + section {
  margin-top: 1.4rem;
}

.skills-columns h2 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.skills-columns p {
  font-size: 0.96rem;
  color: var(--text-subtle);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.skill-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), var(--bg-surface-a95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.skill-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.skill-body h3 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.skill-body p {
  font-size: 0.86rem;
  margin: 0;
  color: var(--text-subtle);
}

.skills-timeline {
  min-width: 200px;
  margin: 0.5rem auto 0;
  padding-left: 1rem;
  border-left: 1px solid var(--border-subtle);
}

.skills-timeline h2 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-item {
  position: relative;
  padding: 0 0 1rem 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.43rem;
  top: .2rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: .25rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-subtle);
  font-size: .9rem;
}

.timeline-item.hidden {
  opacity: 0;
  transform: translateY(8px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}

.certs-root {
  min-height: calc(100vh - 3rem);
  padding: 3rem 2.5rem 2.5rem;
  background: radial-gradient(circle at top left, #1d4ed8 0, #020617 55%, #000 100%);
}

.certs-groups {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.certs-filter {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.certs-filter input {
  width: 260px;
  background-color: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: rgba(96, 165, 250, 0.95);
  padding: .5rem 1rem;
}

.cert-group {
  border-radius: 1.3rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
}

.cert-group[open] {
  border-color: rgba(96, 165, 250, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 1);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.98));
}

.cert-group > summary {
  cursor: pointer;
  padding: 1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cert-summary-meta {
  font-size: 0.8rem;
  font-weight: 400;
  color: #9ca3af;
  text-transform: none;
}

.cert-group-content {
  padding: 0 1.25rem 1.25rem;
}

.cert-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cert-thumb {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.28), rgba(15, 23, 42, 0.96));
  border-radius: 1rem;
  border: 1px solid rgba(55, 65, 81, 0.85);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.9);
}

.cert-thumb.hidden-by-filter {
  display: none;
}

.cert-thumb-image-wrap {
  position: relative;
  height: 140px;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #020617;
  margin-bottom: 0.5rem;
}

.cert-thumb-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease-out, filter 180ms ease-out;
}

.cert-thumb-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.cert-thumb-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.contact-root {
  min-height: calc(100vh - 3rem);
  padding: 3rem 2.5rem 2.5rem;
  background: radial-gradient(circle at top left, #06b6d4 0, #020617 55%, #000 100%);
}

.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-main h1 {
  font-size: clamp(2rem, 2.3vw + 1rem, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 1.3rem;
}

.contact-card {
  border-radius: 1.4rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.35), rgba(15, 23, 42, 0.98));
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
}

.contact-card.secondary {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-links li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-links a {
  color: #bfdbfe;
  text-decoration: none;
}

.contact-form-panel {
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.38), rgba(15, 23, 42, 0.98));
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.98);
}

.contact-form-sub {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 1rem;
}

.contact-form-panel .form-control {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: rgba(75, 85, 99, 0.9);
  color: #e5e7eb;
}

.contact-form-panel .form-control:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 0.15rem rgba(56, 189, 248, 0.28);
}

.contact-alert {
  margin-top: .8rem;
  padding: .7rem .9rem;
  border-radius: .75rem;
  background-color: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.6);
  display: none;
}

.contact-alert.show {
  display: block;
}

.image-modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--bg-surface-a85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.image-modal-backdrop.open {
  display: flex;
}

.image-modal {
  position: relative;
  max-width: min(1000px, 96vw);
  max-height: 90vh;
}

.image-modal img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-modal);
}

.image-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  background: var(--bg-surface-a90);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .projects-grid,
  .cert-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skills-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .home-hero,
  .about-grid,
  .contact-layout,
  .contact-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100% !important;
    min-height: 0;
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.5);
    padding: 0.5rem 0.5rem;
  }

  .sidebar:not(.open) .sidebar-nav,
  .sidebar:not(.open) .sidebar-stats {
    display: none;
  }

  .icon-mobile {
    display: inline-block;
    font-size: 1.4rem;
  }

  .icon-desktop { display: none; }

  .sidebar-toggle-mobile { display: inline-flex; }
  .sidebar-toggle-desktop { display: none; }

  .page-root,
  .about-root,
  .projects-root,
  .skills-root,
  .certs-root,
  .contact-root {
    padding: 2rem 1.4rem 2rem;
  }
}

@media (min-width: 769px) {
  .sidebar-toggle-desktop { display: inline-flex; }
  .sidebar-toggle-mobile { display: none; }
}

@media (max-width: 700px) {
  .projects-grid,
  .skills-grid,
  .cert-items {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-actions {
    flex-direction: column;
  }
}
