<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&amp;display=swap');
@import url('https://fonts.cdnfonts.com/css/gotham-black');

/* Variables */
:root {
  --primary: #1D3354; /* Dark Blue - Main brand color */
  --primary-light: #EDC9FF; /* Light Purple - Accent */
  --primary-dark: #9B6A6C; /* Dusty Rose - Dark accent */
  --secondary: #758173; /* Sage Green - Secondary color */
  --background: #F1F7ED; /* Pale Green - Background */
  --text: #1D3354; /* Dark Blue - Text */
  --light-text: #758173; /* Sage Green - Light text */
  --border: #d4e0cc;
  --header-height: 60px;
  --transition-speed: 0.3s;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: FreightSansW01, FreightSansW01-roboto, FreightSansW01-local, Helvetica, Arial, sans-serif;
  line-height: 1.4;
  background-color: var(--background);
  color: var(--text);
}

a {
  text-decoration: none;
  color: var(--primary);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
.site-header {
  background-color: var(--background); /* Pale green background */
  color: var(--primary); /* Dark blue text */
  box-shadow: 0 1px 5px rgba(29, 51, 84, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-container a {
  color: var(--primary); /* Ensure links are readable */
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 40px;
}

/* SVG Logo styling */
.site-logo-svg {
  height: 40px;
  width: auto;
  display: block;
  transition: all var(--transition-speed) ease;
}

.site-logo-svg g,
.site-logo-svg path {
  fill: currentColor;
  stroke: none;
  transition: fill var(--transition-speed) ease;
}

.logo-link {
  color: var(--primary);
}

.logo-link:hover {
  color: var(--secondary);
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 20px;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 5px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color var(--transition-speed) ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-speed) ease 0.05s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger to X animation */
.bar.active:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.bar.active:nth-child(2) {
  opacity: 0;
}

.bar.active:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive header */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    gap: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list.active {
    max-height: 300px;
  }
  
  .nav-item {
    width: 100%;
    height: 50px;
  }
  
  .nav-link {
    width: 100%;
    padding: 0 20px;
    justify-content: flex-start;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link.active {
    background-color: rgba(29, 51, 84, 0.1);
  }
}

/* Headings */
h1 {
  font-family: 'Gotham Black', sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Main content */
.main-content {
  padding: 30px 20px;
}

.main-content h2 {
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.5rem;
}

/* Content area layout */
.content-area {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.main-news-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .content-area {
    grid-template-columns: 1fr;
  }
}

/* Feed status styling */
#feed-status {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* News grid layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

/* News item styling */
.feed-item {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(29, 51, 84, 0.05);
  margin: 15px 0;
  padding: 15px;
  transition: box-shadow 0.2s ease;
}

.feed-item:hover {
  box-shadow: 0 2px 4px rgba(29, 51, 84, 0.1);
}

.news-title {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--light-text);
  margin-bottom: 8px;
}

.news-description {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.read-more-btn {
  background-color: var(--secondary);
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.read-more-btn:hover {
  background-color: var(--primary);
}

/* Featured news panel */
.featured-news {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(29, 51, 84, 0.05);
  position: sticky;
  top: 75px;
}

.featured-news h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
}

.featured-content {
  margin-bottom: 15px;
}

.featured-content p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.category-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-btn {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.category-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(29, 51, 84, 0.2);
}

/* Loading animation */
.loading-indicator {
  text-align: center;
  padding: 20px;
  color: #555;
  font-style: italic;
}

/* Skeleton loading animation */
.skeleton-loader {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-wave 1.5s infinite;
}

.skeleton-title {
  height: 24px;
  margin-bottom: 10px;
  width: 80%;
}

.skeleton-meta {
  height: 16px;
  margin-bottom: 10px;
  width: 40%;
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 75%;
}

.skeleton-text.long {
  width: 90%;
}

@keyframes loading-wave {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Fade-in animation for news items */
.news-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger the animations for each news item */
.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }
.news-item:nth-child(4) { animation-delay: 0.4s; }
.news-item:nth-child(5) { animation-delay: 0.5s; }
.news-item:nth-child(6) { animation-delay: 0.6s; }
.news-item:nth-child(7) { animation-delay: 0.7s; }
.news-item:nth-child(8) { animation-delay: 0.8s; }
.news-item:nth-child(9) { animation-delay: 0.9s; }
.news-item:nth-child(10) { animation-delay: 1s; }

/* Subscription Form Styles */
.subscription-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.subscription-title {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.subscription-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(29, 51, 84, 0.05);
}

.subscription-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition-speed);
}

.subscription-form input[type="email"]:focus {
  outline: none;
  border-color: var(--secondary);
}

.subscription-form button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.subscription-form button[type="submit"]:hover {
  background-color: #9a7d58;
}

.subscription-message {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: #ffffff;
  padding: 30px 0;
  margin-top: 40px;
}

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

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 247, 237, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-container {
  width: 80%;
  max-width: 400px;
}

#loader-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(29, 51, 84, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

#loader-progress {
  height: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}

#loader-percentage {
  text-align: center;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.loading-message {
  text-align: center;
  font-size: 14px;
  color: var(--light-text);
}

/* Error message */
.error-message {
  background-color: rgba(155, 106, 108, 0.1);
  color: var(--primary-dark);
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  border: 1px solid rgba(155, 106, 108, 0.3);
}

.error-message small {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Article Overlay */
#article-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 51, 84, 0.9);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.overlay-content {
  width: 90%;
  height: 90%;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--primary);
  color: var(--primary-light);
}

.overlay-header h3 {
  margin: 0;
  font-family: 'Gotham Black', sans-serif;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#close-overlay {
  background: none;
  border: none;
  color: var(--primary-light);
  font-size: 24px;
  cursor: pointer;
  padding: 0 0 5px 10px;
}

#article-frame {
  flex: 1;
  width: 100%;
  border: none;
}

@media (max-width: 768px) {
  .overlay-content {
    width: 95%;
    height: 95%;
  }
  
  .overlay-header h3 {
    font-size: 16px;
  }
}

/* Ad Container Styles */
.ad-container {
  margin: 20px auto;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px;
  position: relative;
}

.ad-placeholder {
  position: relative;
  display: inline-block;
}

.ad-label {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 0 8px;
  font-size: 11px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.ad-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

/* Specific ad placement styles */
.ad-banner-top {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 15px 20px;
  background-color: rgba(237, 201, 255, 0.1);
  border-bottom: 1px solid var(--border);
  border-top: none;
  border-radius: 0;
}

.ad-banner-bottom {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 15px 20px;
}

.ad-in-feed {
  margin: 30px 0;
  padding: 20px;
}

.ad-sidebar {
  width: 100%;
  max-width: 336px;
  margin: 0 auto;
}

/* Responsive ad adjustments */
@media (max-width: 768px) {
  .ad-banner-top .ad-content &gt; div,
  .ad-banner-bottom .ad-content &gt; div {
    width: 320px !important;
    height: 50px !important;
  }
  
  .ad-sidebar {
    margin: 20px auto;
  }
  
  .ad-in-feed {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .ad-banner-top .ad-content &gt; div,
  .ad-banner-bottom .ad-content &gt; div {
    width: 300px !important;
    height: 50px !important;
  }
  
  .ad-sidebar .ad-content &gt; div {
    width: 250px !important;
    height: 250px !important;
  }
}

/* Hide ads in print view */
@media print {
  .ad-container {
    display: none !important;
  }
}</pre></body></html>