        /* HEADER SECTION - SGIG Photo + Name + Credentials */
        header #sgig {
            background: linear-gradient(135deg, #003087 0%, #001f5e 100%);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 48, 135, 0.3);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .sgig-photo {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid rgba(255,255,255,0.9);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }
        
        .sgig-info h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            letter-spacing: -1px;
        }
        
        .sgig-info .credentials {
            font-size: 1.35rem;
            font-weight: 500;
            opacity: 0.95;
            margin-bottom: 0.5rem;
        }
        
        .sgig-info p {
            font-size: 1.1rem;
            opacity: 0.85;
        }

        /* QUICK LINKS SECTION - Newsletter, Official Message, Donate */
        .quick-links {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
        }
        
        .quick-links h2 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #003087;
            position: relative;
        }
        
        .quick-links h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #d4a017;
            margin: 8px auto 0;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 1.5rem;
        }
        
        .link-card {
            border: 2px solid transparent;
  border-radius: 8px;
            padding: 1.75rem;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .link-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0, 48, 135, 0.15);
            border-color: #d4a017;
        }
        
        .link-card h3 {
            color: #003087;
            font-size: 1.35rem;
            margin-bottom: 1rem;
        }
        
        .link-card a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #003087;
            color: white;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .link-card a:hover {
            background: #d4a017;
            color: #003087;
            transform: scale(1.05);
        }
	.link-card .meta {
	  color: #666;
	  font-size: 0.9em;
	}
	.link-card .excerpt {
	  line-height: 1.5;
	}
.read-more {
  color: #your-brand-color; /* e.g., deep blue/green from your palette */
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

        
        .pdf-icon {
            font-size: 1.5rem;
        }

        /* ARTICLES / NEWS SECTION */
        .news-section {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1rem;
        }
        
        .news-section h2 {
            font-size: 2rem;
            color: #003087;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .category {
            margin-bottom: 3.5rem;
        }
        
        .category h3 {
            font-size: 1.5rem;
            color: #003087;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 3px solid #d4a017;
            display: inline-block;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 1.8rem;
        }
        
        .article-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0, 48, 135, 0.12);
        }
        
        .article-card .content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .article-card h4 {
            font-size: 1.25rem;
            margin-bottom: 0.6rem;
            color: #222;
        }
        
        .article-card .meta {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .article-card p {
            flex: 1;
            color: #444;
            margin-bottom: 1.5rem;
        }
        
        .article-card a {
            display: inline-block;
            align-self: flex-start;
            color: #003087;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid #d4a017;
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }
        
        .article-card a:hover {
            color: #d4a017;
            border-color: #003087;
        }

        /* Footer note for currency */
        .last-updated {
            text-align: center;
            font-size: 0.95rem;
            color: #666;
            margin: 2rem 0 3rem;
            font-style: italic;
        }
/* STICKY SUBNAVIGATION */
        .subnav {
            background: #7bafd4;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        
        .subnav ul {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            padding: 0.9rem 1rem;
            gap: 0.8rem;
        }
        
        .subnav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 16px;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 0.68rem;
        }
        
        .subnav a:hover,
        .subnav a.active {
            background: #d4a017;
            color: #003087;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .sgig-photo {
                width: 180px;
                height: 180px;
            }
            .sgig-info h1 {
                font-size: 2.2rem;
            }
        }
.article-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: your-body-font;
}

.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;           /* 2/3 article area, 1/3 sidebar */
  gap: 2.5rem;
  align-items: start;
}

.article-columns {
  column-count: 2;                          /* Makes text flow into 2 columns */
  column-gap: 2.5rem;
  line-height: 1.7;
}

.article-columns p,
.article-columns h2,
.article-columns h3 {
  break-inside: avoid;   /* Prevents headings from breaking across columns */
  margin-bottom: 1.2em;
}

/* Optional: images stay full width in columns */
.article-columns img {
  width: 100%;
  max-width: 100%;
  height: auto;
  break-inside: avoid;
  margin: 1.5rem 0;
}

/* Sidebar */
.sidebar {
  background: #f8f9fa;           /* Light background or your brand color */
  padding: 1.5rem;
  border-radius: 8px;
  position: sticky;
  top: 2rem;
  align-self: start;
}

.valley-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.sidebar h3 {
  color: #your-brand-color;     /* e.g. deep blue or green */
  margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .main-content {
    grid-template-columns: 1fr;   /* Stack on tablets & mobile */
  }
  .article-columns {
    column-count: 1;
  }
}
