:root {
  --bg: #ffffff;
  --bg-elev: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --brand: #5b4bff;
  --accent: #0ea5e9;
  --border: #e2e8f0;
  --pill: #f1f5f9;
  --shadow: 0 10px 24px rgba(2,6,23,0.08);
}



*{
    box-sizing: border-box; 
}
html, body { 
height: 100%; 
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { 
    max-width: 100%; 
    display: block; 
}

.container {
   width: min(1100px, 92%);
   margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
}

.brand-logo {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.brand-mark { 
  font-size: 18px; 
  color: #5eead4; 
}

.brand-text { 
  font-size: 14px; 
  color: #64748b; 
}

.primary-nav { 
    display: flex;
    align-items: center; 
    gap: 14px; 
}

.nav-menu { 
    list-style: none; 
    display: flex; 
    gap: 18px; 
    margin: 0; 
    padding: 0; 
}

.nav-menu a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-menu a:hover {
  color: var(--brand);
  background: rgba(91, 75, 255, 0.1);
}

.theme-toggle {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle { 
  display: none; 
  background: transparent; 
  border: 0; 
  cursor: pointer; 
  padding: 6px; 
}

.nav-toggle-bar { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: #334155;  
  margin: 5px 0; 
  border-radius: 2px; 
  transition: all 0.3s ease;
}

/* Hero */
.hero { 
    padding: 56px 0 26px; 
}
.hero-inner { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 36px; 
    align-items: center; 
}
.hero-copy h1 { 
    margin: 0 0 12px; 
    font-size: clamp(28px, 3.5vw, 44px); 
    line-height: 1.15; 
}
.hero-copy p { 
    margin: 0 0 18px; 
    color: var(--muted); 
}

.hero-art { position: relative; height: 280px; }
.blob { position: absolute; filter: blur(24px); opacity: 0.9; }
.blob.b1 { width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #7c5cff, transparent 60%); top: 10%; left: 5%; }
.blob.b2 { width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle at 70% 70%, #5eead4, transparent 60%); bottom: 20%; right: 10%; }
.blob.b3 { width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle at 40% 60%, #0ea5e9, transparent 60%); top: 50%; left: 60%; }

/* Featured Article */
.featured-article {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.featured-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(91, 75, 255, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
  pointer-events: none;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(91, 75, 255, 0.3);
  position: relative;
  z-index: 1;
}

.featured-post {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12), 0 15px 40px rgba(0, 0, 0, 0.08);
}

.featured-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent), #10b981);
}

.featured-header {
  padding: 30px 40px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.featured-pill {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border: none;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(91, 75, 255, 0.2);
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(248, 250, 252, 0.8);
  padding: 4px 12px;
  border-radius: 15px;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.read-time::before {
  content: '⏱';
  font-size: 14px;
}

.author {
  color: #64748b;
  font-style: italic;
}

.featured-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: #1e293b;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.featured-subtitle {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  max-width: 800px;
  text-align: left;
}

.featured-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.featured-media img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  margin: 0 auto;
  display: block;
}

.featured-post:hover .featured-media img {
  transform: scale(1.02);
}

.image-caption {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.featured-content {
  padding: 30px;
  line-height: 1.6;
  color: #334155;
  font-size: 15px;
}

.article-intro {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(248, 250, 252, 0.6);
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  text-align: justify;
}

.featured-content h2 {
  color: #1e293b;
  font-size: 24px;
  font-weight: 700;
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(226, 232, 240, 0.8);
  text-align: left;
}

.featured-content p {
  margin: 0 0 16px;
  color: #475569;
  line-height: 1.6;
  text-align: justify;
}

.article-cta {
  background: linear-gradient(135deg, rgba(91, 75, 255, 0.05), rgba(14, 165, 233, 0.05));
  padding: 24px;
  border-radius: 16px;
  margin: 28px 0 0;
  text-align: center;
  border: 1px solid rgba(91, 75, 255, 0.1);
}

.article-cta p {
  margin: 0 0 16px;
  font-size: 16px;
  color: #475569;
  font-weight: 500;
  text-align: justify;
}

.featured-cta {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(91, 75, 255, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(91, 75, 255, 0.2);
}

.featured-cta:hover {
  color: var(--accent);
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(91, 75, 255, 0.15), rgba(14, 165, 233, 0.15));
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(91, 75, 255, 0.2);
}

.featured-cta::after {
  content: '→';
  transition: transform 0.3s ease;
  font-size: 20px;
}

.featured-cta:hover::after {
  transform: translateX(6px);
}

/* Sections */
.section { padding: 28px 0 52px; }
.section-tight { padding-top: 8px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.section-head h2 { margin: 0; font-size: 22px; }
.view-all { color: var(--brand); text-decoration: none; font-weight: 600; }

/* Post grid */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.post-media img { width: 100%; height: 180px; object-fit: cover; }
.post-content { padding: 14px; display: grid; gap: 8px; }
.post-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.pill { background: var(--pill); border: 1px solid var(--border); padding: 2px 8px; border-radius: 999px; font-weight: 600; color: var(--text); font-size: 11px; }
.post-title { margin: 0; font-size: 18px; }
.post-title a { color: var(--text); text-decoration: none; }
.post-title a:hover { text-decoration: underline; }
.post-excerpt { margin: 0; color: var(--muted); }
.post-readmore { color: var(--brand); text-decoration: none; font-weight: 600; }

/* Post list */
.post-list { display: grid; gap: 14px; }
.post-row { display: grid; grid-template-columns: 160px 1fr; gap: 14px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; align-items: center; }
.post-row .thumb img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.row-content { padding: 10px 14px; }
.row-content h3 { margin: 0 0 6px; font-size: 18px; }
.row-content p { margin: 0 0 8px; color: var(--muted); }
.row-meta { display: flex; gap: 8px; color: var(--muted); font-size: 12px; }

/* Footer */
.site-footer { 
  border-top: 1px solid var(--border); 
  padding: 40px 0 20px; 
  background: var(--bg-elev);
  margin-top: 60px;
}

.footer-inner { 
  display: flex; 
  flex-direction: column; 
  gap: 32px; 
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.brand-description {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--brand);
}

.social-icon {
  font-size: 18px;
}

.contact-info {
  margin-top: 16px;
}

.contact-info p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--brand);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-text h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.cookie-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 600px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.accept-btn {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
}

.accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 92, 255, 0.3);
}

.reject-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.reject-btn:hover {
  background: var(--pill);
  color: var(--text);
}

.cookie-link {
  color: var(--brand);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* Comments */
.comment-count { color: var(--muted); font-size: 14px; font-weight: 500; }

.comment-form-container {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.comment-form-container h3 { margin: 0 0 16px; font-size: 18px; }

.comment-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 6px; }

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border: 0;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  justify-self: start;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 92, 255, 0.3);
}

.comments-list { display: grid; gap: 16px; }

.comment {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.comment-content { display: grid; gap: 8px; }

.comment-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-author {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.comment-date {
  color: var(--muted);
  font-size: 12px;
}

.comment-text {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.comment-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.action-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--pill);
  color: var(--text);
  border-color: var(--brand);
}

.like-btn.liked {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* Ads Section */
.ads-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

.ads-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.1), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Ad image size constraints */
#hero-ad img,
#ads img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* Specific constraints for hero ad */
#hero-ad img {
  max-width: 1100px;
  max-height: 250px;
}

/* Specific constraints for bottom ads section */
#ads img {
  max-width: 1200px;
  max-height: 200px;
}

/* Responsive ad constraints */
@media (max-width: 1200px) {
  #hero-ad img {
    max-width: 100%;
    max-height: 220px;
  }
  
  #ads img {
    max-width: 100%;
    max-height: 180px;
  }
}

@media (max-width: 960px) {
  #hero-ad img {
    max-width: 100%;
    max-height: 200px;
  }
  
  #ads img {
    max-width: 100%;
    max-height: 160px;
  }
}

@media (max-width: 720px) {
  #hero-ad img {
    max-width: 100%;
    max-height: 180px;
  }
  
  #ads img {
    max-width: 100%;
    max-height: 140px;
  }
}

@media (max-width: 480px) {
  #hero-ad img {
    max-width: 100%;
    max-height: 150px;
  }
  
  #ads img {
    max-width: 100%;
    max-height: 120px;
  }
}

.ad-content {
  position: relative;
  z-index: 1;
}

.ad-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.ad-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
}

.ad-content p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.ad-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.feature {
  background: var(--pill);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.download-btn {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border: 0;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 92, 255, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 92, 255, 0.4);
}

.download-btn:active {
  transform: translateY(0);
}

.download-icon {
  font-size: 18px;
}

.ad-disclaimer {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Hero Ad Section */
.hero-ad-container {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.1), rgba(14, 165, 233, 0.1));
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-ad-container::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-ad-content {
  position: relative;
  z-index: 1;
}

.hero-ad-badge {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  margin-bottom: 12px;
}

.hero-ad-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
}

.hero-ad-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-ad-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-download-btn {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: var(--bg);
  border: 0;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(94, 234, 212, 0.4);
}

.hero-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(94, 234, 212, 0.5);
}

.hero-ad-price {
  background: var(--pill);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 960px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { height: 220px; order: -1; }
  
  .featured-article {
    padding: 40px 0;
  }
  
  .featured-post {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .featured-content {
    padding: 28px;
  }
  
  .featured-cta {
    justify-self: center;
  }
  
  .ads-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ad-features {
    justify-content: center;
  }
  
  .hero-ad-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-ad-cta {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .nav-toggle { 
    display: inline-block; 
  }
  
  .nav-menu { 
    position: absolute; 
    right: 4%; 
    top: 80px; 
    background: #ffffff; 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 16px; 
    display: none; 
    flex-direction: column; 
    gap: 12px; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
    min-width: 200px;
    z-index: 1000;
  }
  
  .nav-menu.open { 
    display: flex; 
  }
  
  .nav-menu li {
    list-style: none;
  }
  
  .nav-menu a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
  }
  
  .nav-menu a:hover {
    background: rgba(91, 75, 255, 0.1);
    color: var(--brand);
  }
  
  body.nav-open { 
    overflow: hidden; 
  }
  
  .post-grid { grid-template-columns: 1fr; }
  .post-row { grid-template-columns: 1fr; }
  .row-content { padding: 12px; }
  
  .form-row { grid-template-columns: 1fr; }
  .comment { grid-template-columns: 32px 1fr; }
  .comment-avatar { width: 32px; height: 32px; font-size: 12px; }
  
  .ads-container {
    padding: 24px;
  }
  
  .ad-content h3 {
    font-size: 20px;
  }
  
  .ad-features {
    flex-direction: column;
    align-items: center;
  }
  
  .ebook-cover {
    width: 140px;
    height: 180px;
    transform: none;
  }
  
  .ebook-cover:hover {
    transform: none;
  }
  
  .hero-ad-container {
    padding: 20px;
  }
  
  .hero-ad-content h3 {
    font-size: 18px;
  }
  
  .hero-ad-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .toolkit-icon {
    font-size: 36px;
  }
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  /* Mobile cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
