/* Wrapper */
.gazette-wrapper {
  max-width: 1200px;
  margin: 110px auto 40px;
  padding: 32px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Header */
.post-header h1 {
  font-size: 28px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.post-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
  text-align: center;
}

/* Content */
.post-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
  text-align: left;
}

.warning-text {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 14px;
  border-radius: 6px;
  font-weight: 500;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  padding: 28px;
  border-radius: 14px;
  margin: 35px 0;
  text-align: center;
}

.cta-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #ffffff;
  color: #1d4ed8;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* FAQ */
.faq-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.faq-item {
  background: #f9fafb;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.faq-item strong {
  display: block;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.faq-item p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
  text-align: left;
}


/* Download */
.download-box {
  margin-top: 40px;
  padding: 25px;
  background: #f1f5f9;
  border-radius: 12px;
  text-align: center;
}

.download-box h2 {
  font-size: 20px;
  margin-bottom: 15px;
}


.ad-section {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 28px;
  border-radius: 14px;
  margin: 40px 0;
}

.ad-label {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

.ad-section h2 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 10px;
}

.ad-section p {
  color: #334155;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ad-section ul {
  margin: 15px 0 20px;
  padding-left: 18px;
}

.ad-section li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #1e293b;
}

.ad-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}


/* Responsive */
@media (max-width: 768px) {
  .gazette-wrapper {
    padding: 20px;
  }

  .post-header h1 {
    font-size: 22px;
  }
}

