/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.logo img {
  width: 100px;
  height: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-self: center;
}

nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 6px;
}

nav a:hover {
  background-color: #2c3e50;
  color: white;
}

nav a.active {
  color: #2c3e50;
  font-weight: 600;
}

nav a.active:hover {
  color: white;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-link.has-caret {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 6px;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
}

.nav-link.has-caret:hover {
  background-color: #2c3e50;
  color: white;
}

/* SVG Caret Icon */
.nav-link.has-caret .caret {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.nav-dropdown.open .nav-link.has-caret .caret {
  transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  margin-top: 8px;
  padding: 8px;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
}

.nav-dropdown .dropdown-menu a:hover {
  background: #f5f5f5;
  color: #2c3e50;
}

.nav-dropdown .dropdown-menu a.active {
  background: #2c3e50;
  color: white;
}

/* ===== AUTH SECTION ===== */
.auth-section {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-self: end;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s;
  border: 1px solid #ddd;
  position: relative;
}

.user-profile:hover {
  background: #f8f8f8;
  border-color: #2c3e50;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 14px;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

/* ===== SEARCH BOX ===== */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: white;
}

.search-box svg {
  color: #888;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.search-box input {
  padding: 0;
  border: none;
  outline: none;
  font-size: 13px;
  width: 200px;
  background: transparent;
}

/* ===== HAMBURGER MENU (HIDDEN ON DESKTOP) ===== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #2c3e50;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

/* Logo inside nav - hidden on desktop */
.nav-logo {
  display: none;
}

/* Hide close button on desktop */
.dropdown-close {
  display: none;
}

/* ===== USER PROFILE DROPDOWN ===== */
.user-profile .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  display: none;
  z-index: 1000;
  margin-top: 8px;
  overflow: hidden;
}

.user-profile .dropdown-menu.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #2c3e50;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #f8f8f8;
}

.dropdown-item:last-child {
  color: #e74c3c;
  font-weight: 600;
  border-top: 1px solid #f0f0f0;
}

/* ===== MAIN CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 30px;
}

/* ===== STATISTICS SECTION ===== */
.statistics {
  margin-bottom: 50px;
}

.statistics h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  margin-bottom: 15px;
}

.stat-icon svg {
  width: 70px;
  height: 70px;
  color: #2c3e50;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.stat-number.counting {
  color: #4caf50;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
  margin-bottom: 50px;
}

.articles-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.articles-wrapper {
  position: relative;
  max-height: 780px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: max-height 0.5s ease;
}

/* Fade effect overlay */
.articles-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, transparent, #f5f5f5 90%);
  pointer-events: none;
  z-index: 10;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding-bottom: 150px; /* Space for the fade effect to overlap */
}

/* Adjustment for navigation container (See All button) */
#latestArticlesNavUser {
  position: relative;
  margin-top: -80px; /* Pull the button up into the faded area for a better look */
  z-index: 20;
  text-align: center;
  padding-bottom: 30px;
}

/* ===== ARTICLE CARD ===== */
.article-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.article-card .journal-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-card .journal-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .journal-cover img {
  transform: scale(1.08);
}

.article-card .journal-views {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.article-card .journal-views svg {
  width: 14px;
  height: 14px;
}

/* ===== ARTICLE TYPE BADGE (JURNAL / OPINI) ===== */
.article-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-jurnal {
  background: #3498db;
}

.badge-opini {
  background: #9b59b6;
}

.article-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image-container .article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-image-container .article-image {
  transform: scale(1.08);
}

.article-card .journal-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}



.article-card .journal-abstract {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #888;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.article-card .journal-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-card .journal-meta svg {
  width: 14px;
  height: 14px;
}

.article-card .journal-tags .opinin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.article-card .journal-tags .opinion-tag .tag {
  /* Inherit from body.css .tag */
  display: inline-block; /* Added dummy property to avoid empty ruleset warning while keeping the comment */
}

.article-card .journal-tags .opinion-tag .tag-more {
  background: #2c3e50;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.article-card .journal-actions {
  display: none !important;
}

/* ===== MODERN SHARE BUTTON STYLES ===== */
.share-button,
.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.share-button:hover,
.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.share-button:active,
.btn-share:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.share-button svg,
.btn-share svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* Compact version for cards */
.share-button.compact,
.btn-share.compact {
  padding: 8px 16px;
  font-size: 12px;
  gap: 6px;
}

.share-button.compact svg,
.btn-share.compact svg {
  width: 16px;
  height: 16px;
}

/* Alternative style - outline */
.share-button.outline,
.btn-share.outline {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: none;
}

.share-button.outline:hover,
.btn-share.outline:hover {
  background: #667eea;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Icon only version */
.share-button.icon-only,
.btn-share.icon-only {
  padding: 10px;
  border-radius: 50%;
  min-width: 44px;
  min-height: 44px;
}

.share-button.icon-only span,
.btn-share.icon-only span {
  display: none;
}

/* Success state */
.share-button.success,
.btn-share.success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.share-button.success:hover,
.btn-share.success:hover {
  background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
}

/* Quickshare renamed to Share - maintain backward compatibility */
.btn-quickshare,
button[class*="quickshare"],
a[class*="quickshare"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-quickshare:hover,
button[class*="quickshare"]:hover,
a[class*="quickshare"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* ===== SHARE BUTTON ENHANCEMENT - CONSISTENT STYLE ===== */
/* Override untuk semua button share - konsisten dengan button lain */
.article-card .share-button,
.article-card .btn-share,
.article-card .btn-quickshare,
.article-card .btn-share-article,
.share-button.white-style,
.btn-share.white-style,
.btn-share-article {
  background: transparent !important;
  color: #3b82f6 !important;
  box-shadow: none !important;
  border: 1.5px solid #3b82f6 !important;
  margin-top: 0 !important;
  width: 100% !important;
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-family: "Inter", sans-serif !important;
  line-height: 1 !important;
  min-height: 44px !important;
}

.article-card .share-button:hover,
.article-card .btn-share:hover,
.article-card .btn-quickshare:hover,
.article-card .btn-share-article:hover,
.share-button.white-style:hover,
.btn-share.white-style:hover,
.btn-share-article:hover {
  background: #3b82f6 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25) !important;
  transform: translateY(-2px) !important;
  border-color: #3b82f6 !important;
}

.article-card .share-button:active,
.article-card .btn-share:active,
.article-card .btn-quickshare:active,
.article-card .btn-share-article:active,
.share-button.white-style:active,
.btn-share.white-style:active,
.btn-share-article:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

/* Pastikan icon share sesuai dengan warna button */
.article-card .share-button svg,
.article-card .btn-share svg,
.article-card .btn-quickshare svg,
.article-card .btn-share-article svg,
.share-button.white-style svg,
.btn-share.white-style svg,
.btn-share-article svg {
  stroke: #3b82f6 !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  display: block !important;
}

/* Icon berubah warna saat hover */
.article-card .share-button:hover svg,
.article-card .btn-share:hover svg,
.article-card .btn-quickshare:hover svg,
.article-card .btn-share-article:hover svg,
.share-button.white-style:hover svg,
.btn-share.white-style:hover svg,
.btn-share-article:hover svg {
  stroke: white !important;
}

/* Pastikan container share button konsisten */
.article-share-wrapper {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

/* ===== ARTICLE CONTENT STRUCTURE ===== */
.article-card .article-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.article-card .article-content .article-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .article-content .article-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #888;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.article-card .article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-card .article-meta svg {
  width: 14px;
  height: 14px;
}

/* Views badge on cover */
.article-views-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  z-index: 2;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.article-tag {
  background: #f0f0f0;
  color: #666;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.article-tag-more {
  background: #2c3e50;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* ===== SHARE BUTTON ENHANCEMENT - WHITE STYLE ===== */
/* Override untuk button share di article card - warna putih dengan shadow tipis */
.article-card .share-button,
.article-card .btn-share,
.article-card .btn-quickshare,
.share-button.white-style,
.btn-share.white-style {
  background: white;
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  margin-top: 16px;
  width: 100%;
  position: relative;
}

.article-card .share-button:hover,
.article-card .btn-share:hover,
.article-card .btn-quickshare:hover,
.share-button.white-style:hover,
.btn-share.white-style:hover {
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: #d1d5db;
}

.article-card .share-button:active,
.article-card .btn-share:active,
.article-card .btn-quickshare:active,
.share-button.white-style:active,
.btn-share.white-style:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Pastikan icon share tetap terlihat dengan warna gelap */
.article-card .share-button svg,
.article-card .btn-share svg,
.article-card .btn-quickshare svg,
.share-button.white-style svg,
.btn-share.white-style svg {
  stroke: #2c3e50;
}

/* ===== FALLBACK STYLES ===== */
.article-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-image {
  transform: scale(1.08);
}

.article-content {
  padding: 20px;
}

.article-meta {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  margin-bottom: 50px;
}

.categories-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.category-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}



.category-card:hover {
  background: #2c3e50;
  color: white;
  transform: translateX(5px);
}

.category-card:hover .category-count {
  color: white;
}

.category-name {
  font-weight: 600;
  font-size: 14px;
}

.category-count {
  color: #999;
  font-weight: 600;
  font-size: 13px;
  transition: color 0.3s;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.newsletter-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-section p {
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
  padding: 14px 35px;
  background: white;
  color: #2c3e50;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  grid-column: 1 / -1;
}

.empty-state svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #666;
}

.empty-state p {
  font-size: 14px;
  color: #999;
}

/* ===== USER DASHBOARD SPECIFIC ===== */
.user-dashboard .article-card .btn-edit,
.user-dashboard .article-card .btn-delete {
  display: none !important;
}

.user-dashboard .article-card,
.user-dashboard .journal-card {
  cursor: pointer !important;
}
