/* Article 4: 5 Email Marketing Tips — CSS prefix: emt- */
/* Mobile-first design */

.emt-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: #1a1a2e;
  line-height: 1.75;
  font-size: 17px;
}

.emt-article h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  color: #0f172a;
  margin: 0 0 20px 0;
  font-weight: 800;
}

.emt-article h2 {
  font-size: 1.4rem;
  color: #0f172a;
  margin: 40px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
  font-weight: 700;
}

.emt-article h3 {
  font-size: 1.15rem;
  color: #1e293b;
  margin: 28px 0 12px 0;
  font-weight: 700;
}

.emt-article p {
  margin: 0 0 16px 0;
}

.emt-article a {
  color: #2563eb;
  text-decoration: underline;
}

.emt-article a:hover {
  color: #1d4ed8;
}

.emt-article ul, .emt-article ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.emt-article li {
  margin-bottom: 8px;
}

/* Disclosure */
.emt-disclosure {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #64748b;
  margin: 16px 0 24px 0;
}

/* Verdict */
.emt-verdict {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.emt-verdict h2 {
  color: #fff;
  border: none;
  margin: 0 0 12px 0;
  font-size: 1.25rem;
}

.emt-verdict p {
  color: #cbd5e1;
  margin: 0 0 10px 0;
}

.emt-verdict strong {
  color: #38bdf8;
}

/* Tip Card */
.emt-tip-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
}

.emt-tip-card:hover {
  border-color: #2563eb;
}

.emt-tip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.emt-tip-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

/* Stat Highlight */
.emt-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0f9ff;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0;
}

.emt-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
}

.emt-stat-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

/* Example Boxes */
.emt-example-bad {
  background: #fef2f2;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 8px;
  border-left: 3px solid #ef4444;
  font-size: 0.95rem;
}

.emt-example-good {
  background: #f0fdf4;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 8px;
  border-left: 3px solid #22c55e;
  font-size: 0.95rem;
}

/* Callout */
.emt-callout {
  border-radius: 10px;
  padding: 20px;
  margin: 24px 0;
}

.emt-callout.emt-pro-tip {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
}

.emt-callout.emt-warn {
  background: #fefce8;
  border-left: 4px solid #eab308;
}

.emt-callout strong {
  display: block;
  margin-bottom: 6px;
}

/* FAQ */
.emt-faq {
  margin: 32px 0;
}

.emt-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}

.emt-faq-q {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.emt-faq-a {
  color: #475569;
  line-height: 1.7;
}

/* CTA */
.emt-cta-final {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}

.emt-cta-final h2 {
  color: #fff;
  border: none;
  margin: 0 0 12px 0;
}

.emt-cta-final p {
  color: #cbd5e1;
  margin: 0 0 20px 0;
}

/* Desktop */
@media (min-width: 768px) {
  .emt-article {
    padding: 0 24px;
  }

  .emt-article h1 {
    font-size: 2.25rem;
  }

  .emt-article h2 {
    font-size: 1.6rem;
  }

  .emt-stat {
    gap: 24px;
    padding: 20px 28px;
  }

  .emt-stat-number {
    font-size: 2.5rem;
  }
}
