<?php
require_once __DIR__ . '/config/config.php';
$pageTitle = 'News';
include __DIR__ . '/includes/header.php';
?>

<section class="bg-gradient-to-r from-primary-blue to-blue-800 text-white py-16">
  <div class="container mx-auto px-4 text-center">
    <h1 class="text-4xl md:text-5xl font-bold mb-4">News</h1>
    <p class="text-lg md:text-xl opacity-90 max-w-3xl mx-auto">Updates and announcements from Fantom Capital.</p>
  </div>
</section>

<section class="container mx-auto px-4 py-12">
  <div class="grid md:grid-cols-2 gap-6">
    <article class="bg-white border border-gray-100 rounded-2xl p-6 shadow">
      <h2 class="text-xl font-bold text-gray-900 mb-2">Coming soon</h2>
      <p class="text-gray-600">Our latest news and press releases will appear here.</p>
    </article>
  </div>
</section>

<?php include __DIR__ . '/includes/footer.php'; ?>
