
:root {
  /* Tech Color Palette */
  --color-bg-primary: #0a0f1f;
  --color-bg-secondary: #111827;
  --color-bg-surface: #1a2332;
  --color-bg-elevated: #1f2937;
  
  /* Brand Accents - Tech Focused */
  --color-accent-primary: #22c55e;
  --color-accent-primary-dark: #16a34a;
  --color-accent-primary-light: #4ade80;
  --color-accent-secondary: #3b82f6;
  --color-accent-tertiary: #8b5cf6;
  
  /* Text Colors */
  --color-text-primary: #f8fafc;
  --color-text-secondary: #cbd5e1;
  --color-text-tertiary: #94a3b8;
  --color-text-muted: #64748b;
  
  /* Border Colors */
  --color-border-light: rgba(148, 163, 184, 0.15);
  --color-border-medium: rgba(148, 163, 184, 0.25);
  --color-border-heavy: rgba(148, 163, 184, 0.35);
  
  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glow-primary: 0 0 15px rgba(34, 197, 94, 0.3);
  --glow-secondary: 0 0 15px rgba(59, 130, 246, 0.3);
}


.site-body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #0b1020;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  background: linear-gradient(90deg, var(--color-text-primary), var(--color-accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

strong {
  color: var(--color-text-primary);
  font-weight: 600;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: white;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  padding-block: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0a0f1f;
  text-decoration: none;
}

.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  padding: 2px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  color: #334155;
  text-decoration: none;
  font-size: 1.05rem;
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
}

.main-nav a.active {
  color: #059669;
  border-color: #22c55e;
}

.nav-link-button {
  background: none;
  border: none;
  color: #334155;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link-button:hover {
  color: #16a34a;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-size: cover;
  background-position: center-top;
}

.hero-compact {
  min-height: 360px;
  background: radial-gradient(circle at top left, #22c55e22, #020617);
}

.hero-overlay {
  width: 100%;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.25), rgba(15, 23, 42, 0.96));
}

.hero-content {
  padding-block: 4rem;
  color: #e5e7eb;
}

.hero-kicker {
   text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-primary);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  max-width: 640px;
}

.hero-list li {
  color: #cbd5f5;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-list-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a5b4fc;
  font-weight: 600;
}

.hero-list strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(to right, #22c55e, #4ade80);
  color: #022c22;
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

.btn:hover {
  transform: translateY(-1px);
}

.site-main {
  padding-block: 2.5rem 3.5rem;
}

.section {
  margin-bottom: 3rem;
}

.section-header {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #bbf7d0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  color: #e5e7eb;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}

.section-header p {
  color: #9ca3af;
  font-size: 0.98rem;
}


.slider {
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 1rem; 
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); 
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0; 
  animation: slide 30s infinite linear; 
}


.slider::-webkit-scrollbar{
  display: none;
}


.client-card{
  flex: 1 1 0;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.1), rgba(15, 23, 42, 0.98));
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.card,
.profile-card,
.contact-card {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.1), rgba(15, 23, 42, 0.98));
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.card-badge {
  display: inline-flex;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(15, 23, 42, 0.8);
  color: #a5b4fc;
  margin-bottom: 0.75rem;
}

.card h3 {
  color: #e5e7eb;
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.profile-card.full-width {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.profile-image-wrapper {
  flex: 0 0 220px;
  max-width: 260px;
}

.profile-image {
  width: 100%;
  border-radius: 0.9rem;
  object-fit: cover;
}

.profile-body {
  flex: 1 1 220px;
}

.profile-role {
  color: #a5b4fc;
  font-size: 0.9rem;
}

.profile-body p {
  color: #9ca3af;
  font-size: 0.96rem;
}

.client-image-wrapper {
  margin-bottom: 0.75rem;
}

.client-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.7rem;
}

.client-body h3 {
  color: #e5e7eb;
  margin: 0 0 0.3rem;
}

.client-body p {
  color: #9ca3af;
  font-size: 0.93rem;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.section-column {
  min-width: 0;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 1rem;
}

.required {
  color: #f87171;
}

.field-error {
  display: block;
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.alert-error ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.alert-error li {
  margin-bottom: 0.25rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #a5b4fc;
  background: rgba(15, 23, 42, 0.9);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #f87171;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7280;
}

.alert {
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
}

.contact-details .contact-card h3 {
  color: #e5e7eb;
  margin-bottom: 0.25rem;
}

.contact-details .contact-card p {
  color: #9ca3af;
  font-size: 0.93rem;
}

.contact-details .contact-card a {
  color: #a5b4fc;
  text-decoration: none;
}

.main-footer {
  background: #0a0f1f;
  color: #94a3b8;
  padding-block: 4rem 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #f8fafc;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #22c55e;
  transform: translateY(-2px);
}

.footer-title {
  color: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links, .footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-info li {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #22c55e;
}

.footer-info svg {
  color: #22c55e;
  flex-shrink: 0;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: white;
  color: #475569;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  padding: 2px;
}

.form-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.form-section h3 {
  color: #e5e7eb;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.form-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.submissions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.submission-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.submission-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.submission-header h3 {
  color: #e5e7eb;
  font-size: 1.1rem;
  margin: 0 0 0.25rem 0;
}

.submission-meta {
  color: #9ca3af;
  font-size: 0.9rem;
}

.submission-meta a {
  color: #a5b4fc;
  text-decoration: none;
}

.submission-date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

.submission-subject {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.submission-body {
  color: #cbd5e1;
  line-height: 1.6;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    padding-block: 3rem;
  }

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

  .contact-form .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }
}

/* ============================================================================
   BLOG STYLES
   ============================================================================ */

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.category-filter {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.category-filter:hover,
.category-filter.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: #6366f1;
  color: #a5b4fc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.4);
}

.blog-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-card-body h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.blog-card-body h2 a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-body h2 a:hover {
  color: #a5b4fc;
}

.blog-meta {
  color: #9ca3af;
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

.blog-description {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 1rem 0;
}

.blog-read-more {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.blog-read-more:hover {
  color: #818cf8;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #e5e7eb;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-top: 1rem;
}

.blog-post-image {
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-body {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 2rem 0;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
  color: #e5e7eb;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-body h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding-bottom: 0.5rem;
}

.blog-post-body h3 {
  font-size: 1.4rem;
}

.blog-post-body p {
  margin-bottom: 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-post-body li {
  margin-bottom: 0.5rem;
}

.blog-post-body code {
  background: rgba(15, 23, 42, 0.8);
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #fbbf24;
}

.blog-post-body pre {
  background: rgba(15, 23, 42, 0.8);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-post-body pre code {
  background: none;
  padding: 0;
  color: #e5e7eb;
}

.blog-post-body blockquote {
  border-left: 4px solid #6366f1;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: #cbd5e1;
  font-style: italic;
}

.blog-post-body a {
  color: #a5b4fc;
  text-decoration: underline;
}

.blog-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-comments h2 {
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.comments-list {
  margin-bottom: 2rem;
}

.comment {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.comment-header strong {
  color: #e5e7eb;
}

.comment-date {
  color: #9ca3af;
  font-size: 0.85rem;
}

.comment-body {
  color: #cbd5e1;
  line-height: 1.6;
}

.no-comments {
  color: #9ca3af;
  font-style: italic;
  margin-bottom: 2rem;
}

.comment-form-wrapper {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.comment-form-wrapper h3 {
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.form-help {
  display: block;
  color: #9ca3af;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-help a {
  color: #a5b4fc;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e7eb;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem)); 
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-post-header h1 {
    font-size: 2rem;
  }

  .blog-categories {
    flex-direction: column;
  }

  .category-filter {
    width: 100%;
    text-align: center;
  }
}