/* ===== CONTAINER ===== */
.safety-page,
.about-page,
.contact-page,
.terms-page,
.privacy-page {
  max-width: 900px;
}

/* ===== PAGE TITLES ===== */
h1.page-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 15px;
}

/* ===== Intro Paragraph ===== */
.page-intro {
  text-align: center;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.contact-page p.contact-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== SECTIONS ===== */
.privacy-section,
.terms-section,
.about-section,
.safety-section {
  background: rgba(255,255,255,0.04);
  border-left: 4px solid #38bdf8;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
}

ul {
  margin: 10px 0 0 20px;
}

li {
  margin-bottom: 8px;
  list-style-type: disc;
}

section h2 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 8px;
}

section p {
  color: #e5e7eb;
  line-height: 1.6;
}

.safety-btn,
.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.safety-btn:hover,
.contact-button:hover {
  background: #0284c7;
}

/* ===== PRIVACY BADGE ===== */
.about-trust,
.privacy-footer,
.terms-footer,
.safety-footer {
  margin-top: 26px;
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
}

.about-trust {
  font-size: 0.95rem;
}

.privacy-footer a,
.terms-footer a,
.safety-footer a {
  color: #38bdf8;
  text-decoration: none;
}

.privacy-footer a:hover,
.terms-footer a:hover,
.safety-footer a:hover {
  text-decoration: underline;
}

/* ===== Blog Section ===== */
/* Grid: 2 desktop, 1 mobile */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.post-card {
  background: linear-gradient(180deg, #0f172a, #111827);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Horizontal layout */
.post-card.horizontal {
  display: flex;
}

/* Thumbnail */
.post-thumb {
  width: 40%;
  min-width: 120px;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.post-content {
  padding: 16px;
}

.post-content h2 {
  font-size: 17px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.post-content p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #ffb400;
  text-decoration: none;
}

/* Hover effect */
.post-card:hover {
  transform: translateY(-3px);
  transition: 0.25s ease;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.3),
              0 20px 40px rgba(0,0,0,0.6);

}

/* Mobile: single column + image on top */
@media (max-width: 768px) {
  .blog-posts {
    grid-template-columns: 1fr;
  }

  .post-card.horizontal {
    flex-direction: column;
  }

  .post-thumb {
    width: 100%;
    height: 160px;
  }
}
/* ===== Responsive ===== */
@media (max-width: 600px) {
  h1.page-title {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .privacy-badge {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}