/* ================================================================
   JOFRANNET — Blackstone UI Redesign Stylesheet
   ================================================================ */

/* === DESIGN SYSTEM TOKENS ===================================== */
:root {
  --primary:           #c8960c;         /* Brand gold */
  --primary-light:     rgba(200, 150, 12, 0.08);
  --primary-dark:      #a87a09;
  --accent:            #e0a80e;

  /* Colors - Light Mode */
  --bg-topbar:         #ffffff;
  --bg-sidebar-1:      #0f172a;         /* Dark primary sidebar */
  --bg-sidebar-2:      #f8fafc;         /* Light slate list sidebar */
  --bg-content:        #ffffff;
  --text-main:         #0f172a;
  --text-muted:        #64748b;
  --border:            #e2e8f0;
  --card-bg:           #ffffff;
  --code-bg:           #f1f5f9;
  --code-color:        #e11d48;
  --overlay-bg:        rgba(15, 23, 42, 0.4);

  /* Shadows & Radius */
  --shadow-sm:         0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow:            0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg:         0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --radius-lg:         12px;
  --radius-md:         8px;
  --radius-sm:         6px;
  --ease:              .25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:          64px;
  --sidebar-w1:        68px;
  --sidebar-w2:        270px;
}

/* === DARK THEME TOKENS ======================================== */
.dark-theme {
  /* Colors - Dark Mode */
  --bg-topbar:         #1e293b;
  --bg-sidebar-2:      #0f172a;         /* Deep dark background */
  --bg-content:        #0b0f19;
  --text-main:         #f8fafc;
  --text-muted:        #94a3b8;
  --border:            #1e293b;
  --card-bg:           #1e293b;
  --code-bg:           #1e293b;
  --code-color:        #f43f5e;
  --overlay-bg:        rgba(0, 0, 0, 0.7);
  --primary-light:     rgba(200, 150, 12, 0.15);
  --shadow:            0 4px 12px -2px rgba(0, 0, 0, 0.3), 0 2px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg:         0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* === BASE RESET =============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-content);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover {
  color: var(--primary-dark);
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* === TYPOGRAPHY ============================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

/* === APP LAYOUT =============================================== */
.top-bar {
  height: var(--header-h);
  background-color: var(--bg-topbar);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  z-index: 100;
  position: relative;
  flex-shrink: 0;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--ease);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-main);
}
.brand-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.brand-suffix {
  font-weight: 400;
  opacity: 0.7;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.top-bar-link:hover {
  color: var(--text-main);
}

.sqlite-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(200, 150, 12, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(200, 150, 12, 0.2);
}

/* Theme Switcher Button */
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 50%;
  transition: var(--transition);
}
.theme-toggle-btn:hover {
  color: var(--text-main);
  background-color: var(--primary-light);
}

/* App Main Body Grid */
.app-body {
  display: flex;
  flex: 1;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  position: relative;
}

/* Primary Sidebar (Narrow, Dark) */
.primary-sidebar {
  width: var(--sidebar-w1);
  background-color: var(--bg-sidebar-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  z-index: 90;
}

.primary-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.primary-nav-item {
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: #94a3b8;
  position: relative;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 3px;
  transition: var(--ease);
}
.primary-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}
.primary-nav-item:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
.primary-nav-item.active {
  color: #ffffff;
  background-color: var(--primary);
}

/* Secondary Sidebar (Wider, List) */
.secondary-sidebar {
  width: var(--sidebar-w2);
  background-color: var(--bg-sidebar-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
  z-index: 85;
}

/* Tertiary Sidebar (Wider, List) for Blog */
.tertiary-sidebar {
  width: var(--sidebar-w2);
  background-color: var(--bg-sidebar-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
  z-index: 84;
  transition: var(--transition);
}

.secondary-sidebar.sidebar-categories {
  width: 200px;
}

.mobile-category-selector {
  display: none;
}
.mobile-category-selector select {
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--bg-topbar);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 0.5rem;
}

.sidebar-search-container {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background-color: var(--bg-sidebar-2);
  z-index: 10;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  pointer-events: none;
}

.sidebar-search {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--bg-topbar);
  color: var(--text-main);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease);
}
.sidebar-search:focus {
  border-color: var(--primary);
}

.sidebar-menu-wrapper {
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 0 0.5rem 0.35rem;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--ease);
}
.sidebar-menu-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}
.sidebar-menu-item.active {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-menu-count {
  font-size: 0.7rem;
  background-color: var(--border);
  color: var(--text-muted);
  padding: 0.1rem 0.4rem;
  border-radius: 20px;
}
.sidebar-menu-item.active .sidebar-menu-count {
  background-color: rgba(200, 150, 12, 0.15);
  color: var(--primary);
}

/* Main Content Area */
.main-content {
  flex: 1;
  overflow-y: auto;
  background-color: var(--bg-content);
  display: flex;
  flex-direction: column;
  position: relative;
}

.content-inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-footer {
  margin-top: auto;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-footer-links {
  display: flex;
  gap: 1rem;
}
.content-footer-links a {
  color: var(--text-muted);
}
.content-footer-links a:hover {
  color: var(--primary);
}

/* === CORE UTILITY CLASSES ===================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--primary-light);
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--ease);
}
.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
}
.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* === CARD STYLING (Glassmorphism highlight) ================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  position: relative;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--code-bg);
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-image img {
  transform: scale(1.03);
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.card-title a {
  color: var(--text-main);
}
.card-title a:hover {
  color: var(--primary);
}

.card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-link::after {
  content: '→';
  transition: transform var(--ease);
}
.card:hover .card-link::after {
  transform: translateX(3px);
}

/* === PAGE HERO HEADER ======================================== */
.page-hero {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.25rem;
}

/* === PORTFOLIO TECH TAGS ==================================== */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.tech-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--code-bg);
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* === GALLERY PHOTO GRID ====================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: var(--code-bg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
}

/* === LIGHTBOX VIEWER ========================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--overlay-bg);
  backdrop-filter: blur(12px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* === SINGLE POST / PROJECT CONTENT ========================== */
.post-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.post-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.post-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.post-body {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.post-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.post-featured img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.post-body p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.75;
}
.post-body h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 1rem;
}
.post-body h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
}
.post-body ul, .post-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.post-body li {
  margin-bottom: 0.4rem;
}
.post-body blockquote {
  border-left: 4px solid var(--primary);
  background-color: var(--primary-light);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
}

.post-nav {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* === BIO / ABOUT SECTION IN HOME PAGE ====================== */
.hero-card-widget {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}
.hero-card-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  object-fit: cover;
  flex-shrink: 0;
}
.hero-card-info h1 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.hero-card-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero-card-ctas {
  display: flex;
  gap: 0.75rem;
}

/* Home Section Layout */
.home-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.home-section:last-of-type {
  border-bottom: none;
}
.home-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.home-section-title h2 {
  margin-bottom: 0;
}

.mobile-back-btn {
  display: none !important;
}

/* === MOBILE & TABLET RESPONSIVENESS ========================== */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .app-body {
    position: relative;
  }

  /* Sidebars slide out as drawer on mobile */
  .primary-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-1 * var(--sidebar-w1));
    transition: transform var(--ease);
    box-shadow: none;
  }

  .secondary-sidebar, .tertiary-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-1 * (var(--sidebar-w1) + var(--sidebar-w2)));
    transition: transform var(--ease);
    box-shadow: none;
  }

  /* El botón de volver solo se ve en móvil */
  .mobile-back-btn {
    display: flex !important;
  }

  .mobile-category-selector {
    display: block;
    padding: 1rem 1rem 0;
  }

  /* Overlay cover when sidebar open */
  .sidebar-backdrop {
    display: none;
    position: absolute;
    inset: 0;
    background-color: var(--overlay-bg);
    backdrop-filter: blur(4px);
    z-index: 80;
  }

  /* Open state drawer shifts */
  .app-body.sidebar-open .primary-sidebar {
    transform: translateX(var(--sidebar-w1));
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
  }

  .app-body.sidebar-open .secondary-sidebar {
    transform: translateX(calc((var(--sidebar-w1) * 2) + var(--sidebar-w2)));
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
  }

  .app-body.sidebar-open .tertiary-sidebar {
    transform: translateX(0);
  }

  .app-body.sidebar-open.mobile-show-tertiary .secondary-sidebar {
    transform: translateX(calc(var(--sidebar-w1) * 2));
    opacity: 0;
  }

  .app-body.sidebar-open.mobile-show-tertiary .tertiary-sidebar {
    transform: translateX(calc((var(--sidebar-w1) * 2) + var(--sidebar-w2)));
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
  }

  .app-body.sidebar-open .sidebar-backdrop {
    display: block;
  }

  .hero-card-widget {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .hero-card-ctas {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .top-bar-link.admin-btn {
    display: none; /* Hide admin text shortcut in small viewports */
  }

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

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

/* === FRONTEND EDIT SHORTCUT BUTTONS === */
.card-edit-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background-color: var(--bg-topbar);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--ease);
}
.card-edit-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

