/* TriplePundit 2025 */

/*----------------------- 
      GLOBAL
------------------------*/

html {
	font-family: proxima-nova, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	scroll-behavior: smooth;
	height: 100%;
}
  
.wf-loading {
	visibility: hidden;
}
    
body {
	margin: 0;
	height: 100%;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
	color: #000;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}
  
a {
	transition: top 0.3s, color 0.8s; 
	-webkit-transition: color 0.8s;
	text-decoration: none;
	color: #000; 
	cursor: pointer;
}
	
::selection, ::-moz-selection {
	background: #000;
}

.content {
	flex: 1 0 auto;
}

/* =================================
   CSS VARIABLES
   ================================= */

:root {
    /* Pillar Colors */
    --environment-color: #7BDAFF;
    --society-color: #FFF36D;
    --economy-color: #AAFBAB;
    --default-nav-color: #000;
    --default-grey: #555;
    --hover: #00ADEE;
    
    /* Fonts */
	--font-sans: proxima-nova, sans-serif;
	--font-serif: "richmond-display", Georgia, serif;
	--font-body: ibm-plex-serif, Georgia, serif;
}

/* =================================
   TYPOGRAPHY
   ================================= */

h1 {
	font-family: var(--font-serif);
	font-size: 45px;
    font-weight: 300;
    letter-spacing: -0.2px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-top: 10px;
}
    
h1 a, h2 a, h3 a, h4 a, h5 a {
	color: #000;
}

h1 a:hover, h2 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
	color: var(--hover);
}
    
h2 {
	font-family: var(--font-serif);
}

h3 {
	font-size: 25px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 3px;
	margin-top: 2px;
	letter-spacing: .4px;
	transition: color 0.8s; 
	-webkit-transition: color 0.8s, opacity 0.8s;
	line-height: 1.1;
}
    
h4 {
	color: #000;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.7;
	font-weight: 600;
	margin-top: 0px;
	margin-bottom: 0px;
	transition: top 0.3s, color 0.8s, opacity 0.8s; 
	-webkit-transition: color 0.8s, opacity 0.8s;
}
  
h5 {
	color: #000;
	margin-bottom: 5px;
	margin-top: 0;
	padding: 0;
	line-height: 1.5;
	font-size: 15px;
	font-weight: 700;
}

h6 {
	font-size: 11px;
	line-height: 1.4;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 5px;
	transition: color 0.8s; 
	-webkit-transition: color 0.8s;
}

.caps, .article strong, p strong {
	font-weight: 700;
}

.caption, p.wp-caption-text, p.wp-note-caption-text, .caption em, figcaption {
	font-family: var(--font-sans);
	color: #666;
	font-weight: normal;
	text-align: left;
	font-size: 12px;
	line-height: 1.4;
	margin-left: auto;
	margin-right: auto;
	margin-top: 6px;
	transition: all 0.8s;
}
	
.wp-block-video figcaption {
	margin-top: 0 !important;
}
	
.caption a {
	color: #666;
}

p a, ul li a {
	transition: all 0.8s;
	text-decoration: underline;	
	color: #000;
}
  
p a:hover, ul li a:hover {
	color: #00ADEE !important;
}

small {
	font-size: 13px;
	line-height: 20px;
	color: #666;
}

/* =================================
   SITE-WIDE GRADIENT BACKGROUND
   ================================= */

.gradient-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}
	
.gradient-section-rev {
    background: linear-gradient(to bottom, #f8f9fa 100%, #ffffff 0%);
}

/* =================================
   HEADER & NAVIGATION
   ================================= */

.site-header {
    background: #ffffff;
    padding-top: 75px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.site-logo-svg {
    height: 22px;
    width: auto;
    color: #000;
    transition: color 0.3s ease;
    display: block;
}

.logo-link:hover .site-logo-svg {
    color: #333;
}

/* Navigation */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 5px;
    font-weight: 200;
}

.main-navigation a {
    font-size: 13px;
    font-weight: 700;
    color: var(--default-nav-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    transition: all 0.4s ease;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a.current {
    color: #000;
}

/* Navigation underlines */
.main-navigation a.current::after, 
.main-navigation a:hover::after {
    content: '';
    color: #000;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--default-nav-color);
    transition: background-color 0.4s ease;
}

.main-navigation a[href*="environment"].current::after, 
.main-navigation a[href*="environment"]:hover::after {
    background: var(--environment-color);
}

.main-navigation a[href*="society"].current::after, 
.main-navigation a[href*="society"]:hover::after {
    background: var(--society-color);
}

.main-navigation a[href*="economy"].current::after, 
.main-navigation a[href*="economy"]:hover::after {
    background: var(--economy-color);
}

.pipe {
    margin-top: -3px;
    margin-left: -8px;
    margin-right: -8px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 24px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.4s ease;
}

/* =================================
   SOCIAL TAB - Fixed to top-right corner
   ================================= */

.social-tab {
    position: absolute;
    top: 0;
    right: 15px;
    padding: 8px 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 11;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* =================================
   SEARCH TRIGGER & OVERLAY
   ================================= */

.search-trigger {
    cursor: pointer;
    padding-top: 8px;
    padding-left: 10px;
    transition: opacity 0.3s ease;
}

.search-trigger:hover {
    opacity: 0.7;
}

.search-trigger svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    fill: none;
    stroke-width: 2.3;
}

/* Search Overlay - Based on PDF Design */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Search Modal */
.search-modal {
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

/* Search Input Container */
.search-input-container {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
}

.search-input-container::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-right: 16px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='11' cy='11' r='8'/%3e%3cpath d='m21 21-4.35-4.35'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    padding: 24px 60px 24px 0;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-sans);
    color: #000;
}

.search-input::placeholder {
    color: #999;
}

/* Close Button */
.search-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.search-close:hover {
    opacity: 1;
}

.search-close svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

/* Search Results */
.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: block;
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.search-result-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.search-result-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: var(--font-sans);
}

.search-result-pillar {
    font-weight: 700;
}

/* Loading and Empty States */
.search-loading,
.no-results {
    padding: 40px 24px;
    text-align: center;
    color: #666;
    font-size: 16px;
}

/* View All Results Link */
.search-view-all {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.search-view-all-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.search-view-all-link:hover {
    background: #000;
    color: white;
}

/* =================================
   HERO SECTION
   ================================= */

.hero-section {
    margin-bottom: 120px;
}

.hero-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 60vh;
    min-height: 400px;
}

.hero-image {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-content {
    padding-left: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;
    box-sizing: border-box;
}

/* Hero Caption Overlay */
.hero-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0) 50%, transparent 100%);
    color: rgba(255, 255, 255, 0.9);
    padding-left: 18px;
    padding-right: 20%;
    padding-bottom: 6px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--font-sans);
    height: 50%;
    display: flex;
    align-items: flex-end;
    font-style: normal;
}

.hero-caption-overlay a {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

/* Pillar Tag - Black with color underline on hover */
.pillar-tag {
    position: relative;
    display: inline-block;
}

.pillar-tag a {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.pillar-tag a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background-color 0.4s ease;
}

.pillar-tag.pillar-environment a:hover::after {
    background: var(--environment-color);
}

.pillar-tag.pillar-society a:hover::after {
    background: var(--society-color);
}

.pillar-tag.pillar-economy a:hover::after {
    background: var(--economy-color);
}

/* Hero Title */
.hero-title {
    font-size: 45px;
    font-weight: 300;
    letter-spacing: -0.4px;
    line-height: 1.041;
    margin-bottom: 10px;
    margin-top: 10px;
}

.hero-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.4s ease;
}

.hero-article.pillar-environment .hero-title a:hover,
.hero-article.pillar-society .hero-title a:hover,
.hero-article.pillar-economy .hero-title a:hover {
	color: var(--hover);
}

.hero-excerpt p {
    font-size: 17px;
    line-height: 1.4;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Hero Meta */
.hero-meta {
    position: relative;
    padding-top: 20px;
}

.hero-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: #000;
}

.hero-meta .author {
    display: block;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hero-meta .author a {
    color: inherit;
    text-decoration: none;
}

.hero-meta .date {
    display: block;
    font-weight: 300;
    color: #000;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

/* =================================
   MODULAR ARTICLE GRID SYSTEM
   ================================= */

.container {
    max-width: 1300px;
    margin: 0 auto;
}
   
.article-grid {
    display: grid;
    gap: 20px;
}

.article-grid--3-col {
    grid-template-columns: repeat(3, 1fr);
}

.article-grid--6-col {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

/* Article Card Component - Entire card clickable */
.article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), 
    			background-color 0.5s,
                box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 10px;
    padding-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
}

.article-card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.04);
    background-color: #fff;
}

/* Card Image */
.article-card__image {
    position: relative;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}



/* Card Content - Make flexible */
.article-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 18px;
    padding-right: 24px;
    transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Pillar Tag */
.article-card__pillar {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
    color: #000;
    transition: color 0.2s ease;
}

/* Card Title */
.article-card__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    color: #000;
    transition: all 0.4s ease;
    
    /* Add these lines: */
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    text-decoration-color: transparent; /* Start transparent */
}

.article-card:hover .article-card__title {
	color: #000;
    text-decoration-color: #fff;
}

.article-card:hover .article-card__title.pillar-economy {
    text-decoration-color: var(--economy-color);
} 

.article-card:hover .article-card__title.pillar-society {
    text-decoration-color: var(--society-color);
} 

.article-card:hover .article-card__title.pillar-environment {
    text-decoration-color: var(--environment-color);
} 

/* Card Excerpt - Let it grow to fill space */
.article-card__excerpt {
    font-size: 15px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 12px;
    flex: 1;
}

/* Card Meta - Push to bottom */
.article-card__meta {
    position: relative;
    padding-top: 12px;
    margin-top: auto;
}

.article-card__author {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}

.article-card__date {
    display: block;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}


/* Category featured styling with pillar-based background colors */
.article-card.category-featured.pillar-environment {
    background: rgba(123, 218, 255, 0.1); /* 10% opacity environment color */
}

.article-card.category-featured.pillar-society {
    background: rgba(255, 243, 109, 0.1); /* 10% opacity society color */
}

.article-card.category-featured.pillar-economy {
    background: rgba(170, 251, 171, 0.1); /* 10% opacity economy color */
}

.category-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    display: inline-block !important;
    align-self: flex-start;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    line-height: 1.3;
}

.category-explore {
    margin-top: 15px;
}

.explore-button {
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.article-card:hover .explore-button {
    background: #333;
    transform: translateY(-1px);
}

.explore-button .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.article-card:hover .explore-button .arrow {
    transform: translateX(3px);
}

/* =================================
   SECTION CONTAINERS
   ================================= */

/* Featured Articles (3-column grid below hero) */
.featured-articles {
    margin-bottom: 0;
    padding-bottom: 40px;
}

/* More Articles (6-column grid) */
.more-articles {
    padding: 50px 0;
}

/* =================================
   MISSION STATEMENT & NEWSLETTER SECTION
   ================================= */

.mission-newsletter-section {
    padding: 70px 0;
    background: #ffffff;
}

.mission-newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


.mission-statement p {
	font-family: var(--font-serif);
	font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.2px;
    line-height: 1.1;
    margin-bottom: 25px;
    margin-top: 20px;
}

.mission-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 4px 16px;
    transition: background-color 0.3s ease;
}

.mission-link:hover {
    background: #00ADEE;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    padding: 30px;
    border: none;
    border-radius: 5px;
}

.newsletter-title {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.newsletter-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.newsletter-item {
    text-align: left;
    padding: 0;
}

.newsletter-name {
    font-size: 20px;
    letter-spacing: -0.4px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: none;
    line-height: 1.1;
}

.newsletter-description {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 6px;
}

.newsletter-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: #000;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    transition: background-color 0.3s ease;
}

.newsletter-link:hover {
    background: #00ADEE;
}

/* Or use flexbox */
.newsletter-item:first-child .newsletter-name {
    width: 80%;
}

/* =================================
   PILLAR BOXES SECTION
   ================================= */

.pillar-boxes-section {
    padding: 80px 0;
}

.pillar-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-box {
    display: block;
    text-decoration: none;
    padding: 0;
    min-height: auto;
    transition: none;
    position: relative;
    overflow: visible;
    background: transparent;
}

.pillar-box:hover {
    transform: none;
    box-shadow: none;
}

.pillar-box-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.pillar-box-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-decoration: underline;
    text-underline-offset: 12px;
    text-decoration-thickness: 6px;
    transition: text-decoration-color 0.4s ease;
}

/* Pillar-colored underlines */
.pillar-box.pillar-economy .pillar-box-title {
    text-decoration-color: var(--economy-color);
}

.pillar-box.pillar-society .pillar-box-title {
    text-decoration-color: var(--society-color);
}

.pillar-box.pillar-environment .pillar-box-title {
    text-decoration-color: var(--environment-color);
}

h3.pillar-box-title:hover {
    text-decoration-color: #000 !important;
}

.pillar-box-description {
    font-size: 20px;
    font-family: var(--font-body);
    line-height: 1.4;
    margin-bottom: 32px;
    flex-grow: 1;
    padding-right: 15%;
}

.pillar-box-link {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 4px 20px;
    border: none;
    transition: background 0.4s ease;
    align-self: flex-start;
}

/* Pillar-colored button backgrounds */
.pillar-box.pillar-economy .pillar-box-link {
    background: var(--economy-color);
}

.pillar-box.pillar-society .pillar-box-link {
    background: var(--society-color);
}

.pillar-box.pillar-environment .pillar-box-link {
    background: var(--environment-color);
}

.pillar-box-link:hover {
    background: #000 !important;
    color: #fff;
}

/* =================================
   FOOTER STYLES
   ================================= */

.site-footer {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.1), rgba(248, 249, 250, 1));
    padding: 60px 0 10px 0;
    margin-top: 80px;
    border-top: 1px solid #e5e5e5;
}

.footer-mission {
	border-top: 1px solid #e5e5e5;
	padding-bottom: 80px;
}

.footer-content {
    position: relative;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    min-width: 0;
}

/* Logo & Social Column */
.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-site-logo {
    margin-bottom: 20px;
    width: 100%;
}

.footer-site-logo img {
    width: 100%;
    height: auto;
    max-width: 120px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.social-icon:hover {
    opacity: 1;
    background: #00ADEE;
    transform: translateY(-1px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    line-height: 1.2;
    font-family: var(--font-sans);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0;
    margin-left: 0;
    padding: 0;
}

.footer-links a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-weight: 600;
    font-family: var(--font-sans);
    margin-left: 0;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--hover);
}

/* Parent Company Logo */
.footer-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
}

.parent-company-logo {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

/* =================================
   SINGLE ARTICLE STYLES
   ================================= */

/* Article Content */
.article-content-section {
    background: #ffffff;
}


.article-content-container {
    max-width: 1020px; /* Slightly wider to accommodate share buttons */
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.article-content {
    flex: 1;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 660px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content p:first-of-type {
	margin-top: -10px;
}

.article-content h2,
.article-content h4 {
    font-family: var(--font-serif);
    color: #000;
    margin-top: 50px;
    margin-bottom: 0;
}

.article-content h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.article-content h3 {
	font-family: var(--font-sans);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.3;
}

.article-content p a {
    position: relative;
    transition: all 0.8s;
    text-decoration: none;    
    color: #333;
    text-decoration: underline;
    text-decoration-color: var(--environment-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

/* Remove the ::after since it doesn't work with wrapping */
.article-content p a::after {
    display: none;
}

.article-content.pillar-environment p a {
    text-decoration-color: var(--environment-color);
}

.article-content.pillar-society p a {
    text-decoration-color: var(--society-color);
}

.article-content.pillar-economy p a {
    text-decoration-color: var(--economy-color);
}

.article-content p a:hover {
    text-decoration-color: #000;
    color: #000 !important;
}

.article-content blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 4px solid var(--environment-color);
    color: #666;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin-top: 25px;
}

/* Article Meta Section */
.article-meta-section {
    margin-top: 30px;
    position: relative;
}

.meta-separator {
    width: 50px;
    height: 1px;
    background: #000;
    margin-bottom: 20px;
}

.article-categories {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    font-family: var(--font-sans);
}

.pillar-label a {
    color: #000;
    text-decoration: none;
    font-weight: 700 !important;
}

.article-categories a {
    color: #000;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-categories a:hover {
    color: var(--hover);
}

/* Author Bio Section */
.author-bio {
    display: flex;
    font-family: var(--font-sans);
    gap: 25px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.author-avatar {
    flex-shrink: 0;
    align-self: flex-start;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #fff;
    object-fit: cover;
    display: block;
    margin-top: 0;
}

.author-content {
    flex: 1;
    font-family: var(--font-sans);
}

h3.author-name {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 4px 0;
    color: #000;
}

.author-description {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-top: 15px;
}

.author-description p {
	margin-top: 0;
	margin-bottom: 5px;
}

.author-read-more {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-read-more:hover {
    color: var(--hover);
}

/* Related Articles Section */
.related-articles {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

/* =================================
   AUTHOR TEMPLATE STYLES
   ================================= */

.author-header-section {
    padding: 80px 0 40px 0;
}

.author-header {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 900px;
}

/* Left Column: Avatar + Social Icons */
.author-left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.author-separator {
    width: 50px;
    height: 1px;
    background: #000;
    margin: 0;
}

.author-header-avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #000;
    padding: 10px;
    object-fit: cover;
}

.author-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.author-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #000;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-icon:hover {
    background: var(--hover);
    transform: translateY(-2px);
}

.author-social-icon svg {
    width: 14px;
    height: 14px;
}

/* Right Column: Author Content */
.author-header-content {
    flex: 1;
    padding-top: 10px;
}

.author-header-name {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 0;
    color: #000;
}

.author-header-bio {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
    max-width: 600px;
}

.author-header-bio p {
	margin-top: 5px;
}

.author-articles {
    padding: 60px 0;
    background: #ffffff;
}

.author-articles-grid {
    margin-bottom: 60px;
}

/* =================================
   PILLAR ARCHIVE STYLES
   ================================= */

.pillar-archive {
    padding: 60px 0;
}

.pillar-header {
    margin-bottom: 30px;
}

.pillar-title {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

/* Pillar-specific title underlines */
.pillar-title.pillar-economy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--economy-color);
}

.pillar-title.pillar-society::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--society-color);
}

.pillar-title.pillar-environment::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--environment-color);
}

.pillar-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* Filter Buttons */
.pillar-filters {
    margin-bottom: 60px;
    text-align: left; 
}

.filter-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
    row-gap: 4px;
    column-gap: 8px;
}

.filter-button {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pillar-environment .filter-button:hover {
    color: #000;
    background: var(--environment-color);
}
    
.pillar-society .filter-button:hover {
    color: #000;
    background: var(--society-color);
}

.pillar-economy .filter-button:hover {
    color: #000;
    background: var(--economy-color);
}

.filter-button.is-checked {
    background: #000;
    border-color: #000;
    color: white;
}

.pillar-grid {
    margin-bottom: 80px;
}

.pillar-article-item {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* =================================
   ARCHIVE PAGES
   ================================= */

.archive-page {
    padding: 60px 0;
}

.archive-header {
    margin-bottom: 60px;
}

.archive-title {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    color: #000;
}

.archive-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000;
}

.category-environment .archive-title::after {
    background: var(--environment-color);
}

.category-society .archive-title::after {
    background: var(--society-color);
}

.category-economy .archive-title::after {
    background: var(--economy-color);
}

.archive-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    color: #333;
}

.archive-filters {
    margin-bottom: 60px;
    text-align: left;
}



.archive-grid {
    margin-bottom: 80px;
}

.archive-article-item {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.no-archive-results {
    text-align: center;
    padding: 60px 0;
}

.no-archive-results h2 {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.no-archive-results p {
    font-size: 16px;
    color: #666;
}

/* =================================
   SEARCH RESULTS PAGE
   ================================= */

.search-results-page {
    padding: 80px 0;
    background: #ffffff;
}

.search-results-header {
    margin-bottom: 60px;
    text-align: center;
}

.search-results-title {
    font-family: var(--font-sans);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: #000;
}

.search-results-info {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

.search-results-info strong {
    color: #000;
    font-weight: 700;
}

.search-results-grid {
    margin-bottom: 80px;
}

.no-search-results {
    text-align: center;
    padding: 60px 0;
}

.no-search-results h2 {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.no-search-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.no-search-results h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000;
}

.fallback-articles {
    margin-top: 40px;
}

/* =================================
   ABOUT PAGE STYLES
   ================================= */

.about-header-section {
    padding: 80px 0 120px 0;
}

.about-header {
    max-width: 800px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.4px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #000;
}

.about-intro {
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 300;
}

.about-intro p {
	margin-top: 0;
}

.about-content-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-sidebar {
    top: 40px;
}

.about-menu-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    color: #000;
}

.about-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 200px;
}

.about-menu-link {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #000;
    text-decoration: none;
    padding: 2px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.about-menu-link:hover {
    color: #000;
    border-left-color: var(--hover);
}

.about-menu-link.active {
    color: #000;
    border-left-color: #000;
}

.about-content {
    max-width: 720px;
}

.page-content {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.page-content h2 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.6px;
    line-height: 1;
    margin: 60px 0 1px 0;
    color: #000;
    scroll-margin-top: 40px;
}

.page-content h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 15px 0;
    color: #000;
}

.page-content p {
    margin-bottom: 24px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--hover);
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: var(--hover);
}

/* =================================
   SPONSORED CONTENT BRANDING
   ================================= */

.sponsored-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000;
    color: white;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    display: inline-block;
    align-self: flex-start;
	}

.sponsored-badge.archive-badge {
	background: rgba(255, 255, 255, 0.8);
	color: #000;
	}

.article-card__image {
    position: relative; /* Make sure this exists for absolute positioning */
}


.sponsored-badge-large {
    display: inline-block;
    background: #000;
    color: white;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.sponsored-hero-badge {
    background: rgba(0, 0, 0, 1);
    color: white;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    display: table;
}

.sponsored-series-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #666;
    margin-top: 15px;
    margin-bottom: -12px;
    display: inline-block;
}

.sponsored-series-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: #666;
    display: inline-block;
    line-height: 1.3;
}

.sponsored-series-meta a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.sponsored-series-meta a:hover {
    color: var(--hover);
}

.sponsored-tp-article .hero-title {
    position: relative;
}

.sponsored-tp-article .hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
}

.sponsored-disclaimer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #000;
    margin-top: 20px;
    padding-left: 30px;
}

.sponsored-disclaimer-title {
    font-family: var(--font-sans);
    font-size: 16px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}

.sponsored-disclaimer-text {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.sponsored-series-archive {
    padding: 60px 0;
}

.sponsored-series-header {
    margin-bottom: 60px;
}

.sponsored-series-title {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
    max-width: 800px;
    width: 90%;
    padding-bottom: 24px;
    text-align: left;
}

.sponsored-series-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #333, #666);
}

.sponsored-series-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin-top: 10px;
}

.sponsored-series-grid {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 10px;
    align-items: stretch;
}

.sponsored-series-info {
    background: linear-gradient(0deg, #f9f9f9, #f5f5f5);
    padding: 40px;
    border-radius: 6px;
}

.sponsored-info-content h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 6px 0;
    color: #000;
}

.sponsored-info-content p {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.article-card.sponsored {
    position: relative;
    background: linear-gradient(0deg, #f9f9f9, #f5f5f5);
}

.article-card.sponsored:hover {
    background: #fff;
    border-color: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.article-card.sponsored .article-card__title {
    color: #000;
}

.article-card.sponsored:hover .article-card__title {
    text-decoration: underline;
    text-decoration-color: #000;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* =================================
   SIMPLIFIED PAGINATION SYSTEM
   ================================= */

/* Base pagination wrapper styles */
.pagination,
.author-pagination,
.search-pagination,
.archive-pagination {
    text-align: center;
    margin-top: 60px;
}

/* Pagination lists */
.page-numbers-list,
.pagination ul,
.author-pagination ul,
.search-pagination ul,
.archive-pagination ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap;
}

/* Pagination list items */
.page-numbers-list li,
.pagination li,
.author-pagination li,
.search-pagination li,
.archive-pagination li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: block !important;
}

.page-numbers-list li::before,
.pagination li::before,
.author-pagination li::before,
.search-pagination li::before,
.archive-pagination li::before {
    display: none !important;
}

/* All pagination links - simplified! */
.page-numbers {
    font-family: var(--font-sans);
    padding: 12px 16px !important;
    margin: 0 !important;
    color: #333 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-sizing: border-box;
}

/* Current page */
.page-numbers.current {
    background: #000 !important;
    color: white !important;
}

/* Previous/Next buttons */
.page-numbers.prev,
.page-numbers.next {
    background: #000 !important;
    color: white !important;
}

/* Hover states - simple! */
.page-numbers:hover {
    color: white !important;
}

.page-numbers li a:hover {
	background: var(--hover) !important;
	}

/* Legacy pagination styles for older content */
.prev-next {
	width: 100%;
	display: table;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 8px;
}
	
.arrows {
	width: 100%;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	margin-top: 50px;
}
	
.previous-post {
	text-align: right;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1.5px;
	font-weight: 600;
	float: left;
}
	
.previous-post:before {
    content: "";
    width: 15px;
    height: 14px;
    float: left;	
    background-image: url(images/arrow-l.png);	
	background-position: left center !important;
	background-repeat: no-repeat !important;
	background-size: 7px 14px !important;
	opacity: 0.2;
	transition: all 0.8s; 
	-webkit-transition: all 0.8s;
}

.next-post {
	text-align: left;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1.5px;
	font-weight: 600;
	float: right;
}
	
.next-post:before {
    content: "";
    width: 15px;
    height: 14px;
    float: right;
	background-image: url(images/arrow-r.png);
	background-position: right center !important;
	background-repeat: no-repeat !important;
	background-size: 7px 14px !important;
	opacity: 0.2;
	transition: all 0.8s; 
	-webkit-transition: all 0.8s;
}

.previous-post:hover:before, .next-post:hover:before {
	opacity: 1;
}

.navigation {
	padding-top: 35px;
}
	
.nav-next {
	float: right;
	width: 33.3%;
	text-align: right;
}
	
.nav-prev {
	float: left;
	text-align: left;
	width: 33.3%;
}
	
.nav-prev a:hover, .nav-notes a:hover, .nav-next a:hover {
	color: #80070C;
}

/* =================================
   BUTTONS & FORMS
   ================================= */

button {
	font-family: var(--font-sans);
	border: 0;
	font-size: 11px;
	color: #fff;
	background-color: #00ADEE;
	-webkit-transition: color 0.6s, background 0.6s;
	transition: color 0.6s, background 0.6s;
	cursor: pointer;
	outline: none;
	vertical-align: middle;
	text-align: center;
	position: relative;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 9px;
	padding-bottom: 9px;	
	line-height: 1;
	font-weight: 700;
	margin-top: 5px;
	letter-spacing: 1.5px;
	text-transform: uppercase;	
}

button:hover {
	color: #fff;
	background: #000;
	transition:.5s ease;
}

.button {
	color: #00ADEE;
	border: 1px solid rgba(0, 175, 238, 0.74);
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 7px;
	padding-bottom: 6px;
	margin-right: 5px;
	font-weight: 700;
	font-size: 11px;
	background: none;
	-webkit-transition: color 0.6s, background 0.6s;
	transition: color 0.6s, background 0.6s;
	cursor: pointer;
	outline: none;
	vertical-align: middle;
	text-align: center;
	position: relative;
	line-height: 1;
	letter-spacing: 1.5px;
	text-transform: uppercase;	
}

.button:active {
	color: #999;
	background: #00ADEE;
	transition: top 0.3s, color 0.8s, background-color 0.8s, opacity 0.8s; 
	-webkit-transition: color 0.8s, background-color 0.8s, opacity 0.8s;
}
	
.button:hover {
	color: #fff;
	background: #00ADEE !important;
	transition:.5s ease;
}
		
.button.is-checked {
	color: #fff;
	background: #00ADEE;
	transition: top 0.3s, color 0.8s, background-color 0.8s, opacity 0.8s; 
	-webkit-transition: color 0.8s, background-color 0.8s, opacity 0.8s;
}

.is-checked {
	color: #000;
}

/* =================================
   WORDPRESS CONTENT BLOCKS
   ================================= */

.wp-block-quote {
    font-size: 19px;
    font-style: italic;
    width: 500px;
    margin: 0.25em 0;
    padding: 0.35em 40px;
    line-height: 1.45;
    position: relative;
    color: #143b68;
    padding-bottom: 20px;
}

.wp-block-quote:before {
    display: block;
    font-style: normal;
    padding-left: 10px;
    content: "\201C";
    font-size: 90px;
    position: absolute;
    left: -20px;
    top: -30px;
    color: #000;
}

.wp-block-quote p {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.wp-block-quote cite {
    color: #000;
    font-size: 14px;
    display: block;
    margin-top: 0;
}

.wp-block-quote.is-style-default p {
	margin-bottom: 0 !important;	
}
	
.wp-block-quote.is-style-default cite {
	text-align: right !important;
	font-size: 11px !important;
	padding-top: 4px !important;
	font-family: sans-serif;
}

.wp-block-embed {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 660px;
    height: auto;
    margin-top: 50px !important;
    margin-bottom: 0 !important;
}

/* Override inline width/height attributes */
.wp-block-embed iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9; /* Maintains proper video proportions */
    min-height: 300px; /* Fallback for browsers without aspect-ratio support */
}

/* If figure comes directly before h2 */
.article-content figure + h2 {
    margin-top: 20px;
}

.wp-block-image .alignright, .wp-block-video.alignright {
	width: 100% !important;
	max-width: 620px !important;
	height: auto !important;
	margin-top: 0;
}
	
.wp-block-image .alignright img {
	padding-top: 15px;
	margin-top: 0;
}

.wp-block-video {
	clear: both;
	padding-top: 30px;
}
	
.wp-block-image {
	max-width: 1000px !important;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px !important;
	margin-top: 20px;
}
	
.wp-block-image img {
	padding-top: 8px;
	height: auto;
}

.wp-block-audio {
	max-width: 620px;
	width: 100%;
	float: right;
	margin: 0 !important;
}

.wp-block-verse {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.wp-block-media-text {
	display: table !important;
	padding: 0 !important;
	width: 100% !important;
}
	 
.wp-block-media-text__media {
	float: left;
	width: 35%;
}
	
.wp-block-media-text__content {
	float: right;
	width: 55%;
}

/* =================================
   MEDIA PLAYER STYLING
   ================================= */

.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body {
	background: #00ADEE !important;
	width: 100% !important;
	max-width: 620px !important;
	margin-left: auto;
	margin-right: auto;
}
	
.mejs-horizontal-volume-current {
	background-color: #fff !important;
}

.mejs-currenttime, .mejs-duration {
	color: #fff;
	letter-spacing: 0;
	text-transform: none;
}

.mejs-controls .mejs-button button {
	background-image: url('images/controls-dark.svg') !important; 
}

.mejs-controls .mejs-time-rail .mejs-time-total {
	background: rgba(255,255,255,0.6) !important;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
	background: #fff !important;
}

.mejs-controls .mejs-time-rail .mejs-time-loaded {
	background: #fff !important;
}

/* =================================
   UTILITY CLASSES
   ================================= */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

.right {
	float: right;
}
	
.center {
	margin-left: auto;
	margin-right: auto;
}

.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.clearfix:after,
.container:after,
.row:after,
.nav:after,
.navbar:after {
	clear: both;
}

.container:before,
.container:after,
.row:before,
.row:after,
.nav:before,
.nav:after {
	display: table;
	content: " ";
}

.row {
	display: flex;
}

/* =================================
   LISTS
   ================================= */

ol li {
	margin-left: 10px;
	padding-left: 6px;
	padding-bottom: 6px;
}
	
ol.syllabi li strong {
	text-transform: none;
	letter-spacing: 0;
}
  
ol li ul {
	margin-left: 10px;
	padding-left: 10px;
}
  
ol li ul li {
	list-style-image: url('images/bullet.png');
	margin-left: 0;
	padding-left: 5px;
	padding-bottom: 6px;
	font-weight: normal;
}
	  
ul li {
	margin-left: 5px;
	padding-left: 12px;
	padding-bottom: 16px;
	font-family: "ibm-plex-serif", georgia, serif;
}
	
li::marker {
	color: #00ADEE;
}

li {
	text-align: left;
}

/* =================================
   FORMS & INPUTS
   ================================= */

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	-webkit-appearance: none;
}

input {
  line-height: normal;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: inherit;
	color: #333;
	border: 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: bold;
}

select[multiple],
select[size] {
  height: auto;
}

output {
	display: block;
	padding-top: 7px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #000;
}

/* Legacy search form */
.search-form {
	width: 100%;
	max-width: 1000px;
    display: flex;
    margin-top: 50px;
	color: #000 !important;
}
    
.search-name {
	color: #00ADEE;
}
  
.search-field {   
	background: rgba(255,255,255,0.6);
	border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	font-size: 50px;
	color: #000 !important;
	border: #00ADEE solid 1px;
	height:auto;
	letter-spacing:normal;
	list-style:none;
	outline:none;
	position:static;
	text-decoration:none;
	text-indent:0;
	text-shadow:none;
	text-transform:none;
	width: 85%;
	visibility:visible;
	overflow:visible;
	margin:0;
	padding: 10px;
	padding-left: 25px;
}
	
.search-submit:hover {
	background-color: #000 !important;
}

.search-submit {
	background-image: url('images/search.png') !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: 40px 40px !important;
	background-color: #00ADEE !important;
	border: none !important;
	cursor: pointer;
	font-size: 50px !important;
	padding: 10px !important;
	width: 15%;
	transition: all 0.8s; 
	-webkit-transition: all 0.8s;
}
	
.search-term {
	font-weight: bold;
	text-transform: capitalize;
}

/* =================================
   LEGACY STYLES & RESETS
   ================================= */

html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

article,
figure,
footer,
header,
main,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
  
audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

img {
	border: 0;
	vertical-align: middle;
}

img.zon {
	width: 1px !important;
	height: 1px !important;
}

img.link {
	width: 1px !important;
	height: 1px !important;
	display: inline !important;
}

img.alignleft {
	margin-right: 20px !important;
	margin-bottom: 5px !important;
	margin-top:9px;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

pre {
	overflow: auto;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

td, th {
	padding: 0;
}

p.wp-caption-text {
	font-family: var(--font-sans) !important;
	font-size: 13px !important;
	color: rgba(0,0,0,0.6) !important;
	line-height: 1.3 !important;
	margin-top: 5px !important;
	padding-top: 3px !important;
}

cite {
	padding-left: 40px;
	padding-top: 10px !important;
	font-size: 10px !important;
	text-align: left !important;
	font-weight: 400 !important;
	font-family: sans-serif;
}
	
cite a {
	color: #80070C;
	font-weight: 500;
}

.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
}
	
.fade.in {
	opacity: 1;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* Legacy/unused classes that need to remain for compatibility */
.shiftnav .fa, .shiftnav-toggle .fa {
	color: #000;
}
 
.shiftnav-wrap {
	z-index: auto !important;
}

.prev a:hover, .next a:hover, .navfoot a:hover {
	color: #80070C !important;
} 

.category {
	color: #00ADEE;
	border: 1px solid rgba(0, 175, 238, 0.85);
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 7px;
	padding-bottom: 6px;
	margin-right: 5px;
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 11px;
	background: none;
	-webkit-transition: all 0.9s;
	transition: all 0.9s;
	cursor: pointer;
	outline: none;
	vertical-align: middle;
	text-align: center;
	position: relative;
	line-height: 1;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: table;	
}
	
.category a {
	color: #00ADEE;
}
	
.category.next {
	color: #fff !important;
	border: 1px solid #fff;
}

/* Legacy quotations and code styling */
code {
	padding: 0;
	padding-left: 20px;
	border-left: 4px solid #000;
	text-align: left;
	color: #000;
	float: right;
	width: 275px;
	margin-left: 50px;
	margin-right: -120px;
	margin-top: 25px;
	margin-bottom: 25px;
	quotes: '\201c' '\201d';
	position: relative;
	top: 5px;
	font-size: 32px;
	line-height: 1.2;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	word-wrap: normal;
}

.quote {
	text-indent: -12px;
	margin-top: 15px;
}

.block {
	display: block;
}

.alignnone img {	
	margin-top: 10px
}

.indent p {
	text-indent: -8px;
}
	
.embed-container {
	margin-top: 10px;
}

/* Legacy button variations */
button.sm {
	font-family: proxima-nova, sans-serif;
	border: 0;
	font-size: 11px;
	color: #fff;
	background-color: #00ADEE;
	-webkit-transition: color 0.6s, background 0.6s;
	transition: color 0.6s, background 0.6s;
	cursor: pointer;
	outline: none;
	vertical-align: middle;
	text-align: center;
	position: relative;
	padding-left: 8px;
	padding-right: 8px;
	padding-top: 7px;
	padding-bottom: 7px;	
	line-height: 1;
	font-weight: 700;
	margin-top: 5px;
}
	
button.footer-main {
	display: table;
	margin-top: 10px;
}
	
button.footer-alt {
	display: table;
	background: #000;
	margin-top: 10px;
}
	
button.footer-alt:hover, button.footer-main:hover {
	display: block;
	background: #fff;
	color: #000;
}

button.invert:hover {
	background: #fff;
	color: #00ADEE;
}

.nav-small {
	padding-top: 10px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.button-group {
	float: left;
	line-height: 1px;
	margin-top: 0px;
}

path { transition: fill .4s ease; }

/* Legacy grid system */
.grid-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 20px;
}
	
.grid-container-two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-gap: 50px;
}
	
.grid-container-three .grid-item {
	max-width: 270px;
}
	
.grid-item {
	position: relative;
	width: 100%;
	min-height: 320px;
	transition: all 0.8s; 
	-webkit-transition: all 0.8s;
	margin-bottom: 30px;
}
	
.grid-item-two img {
	width: 100%;
	max-width: 420px;
	height:  auto !important;
	object-fit: contain;
}

/* Video specific styles */
.video, .wp-video {
	position: relative;
	display: block;
	width: 90% !important;
	max-width: 1000px !important;
	margin-left: auto;
	margin-right: auto;
}
	
.wp-video {
	margin-top: 50px;
}
	
.video { 	
	margin-bottom: 50px;
	margin-top: 50px;
}
	
.video .caption {
	margin-top: 7px;
}
	
.wp-video-shortcode video, video.wp-video-shortcode {
	height: auto !important;
}

/* Horizontal rules */
hr {
	height: 1px;
	border-width:0;
	color: rgba(0,0,0,0.1);
	background-color: rgba(0,0,0,0.1);
	margin-top: 20px;
	margin-bottom: 20px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
	  
hr.wp-block-separator {
	height: 1px;
	border-width:0;
	background-color: #000;
	margin-top: 25px;
	margin-bottom: 25px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;	
	width: 200px;
	margin-left: auto;
	margin-right: 185px;
	max-width: 620px;
	float: right;
}
	
hr.wp-block-separator.is-style-wide {
	height: 1px;
	border-width:0;
	color: red;
	background-color: rgba(0,0,0,0.1);
	margin-top: 20px;
	margin-bottom: 0px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;	
	width: 100%;
	max-width: 620px;
	float: right;
}

/* =================================
   LEGACY CLEANUP
   ================================= */

.header {
    display: none;
}

.site-logo {
    display: none;
}

.content {
    margin-top: 0;
}



/* =================================
   BLUR BACKGROUND EFFECTS FOR OVERLAYS
   ================================= */

/* Search Overlay - Add blur background */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px); /* Add this line */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* Enhanced modal shadows to work with blur */
.search-modal {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.newsletter-modal {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}


/* =================================
   SIMPLE FOOTER (Launch Version)
   ================================= */

.site-footer-simple {
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%);
    padding: 60px 0;
   	border-top: 1px solid #e5e5e5;
	}

.footer-simple-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

/* Left: Logo + Part of 3BL */
.footer-simple-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-simple-logo img {
    height: 60px;
    width: auto;
}

.footer-simple-company {
    display: flex;
    align-items: center;
    gap: 5px;
}

.company-logo-simple {
    height: 25px;
    width: auto;
}

/* Center: Navigation Columns */
.footer-simple-nav {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: start;
}

.footer-simple-nav-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-simple-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: -4px;
}

.footer-simple-link:hover {
    color: var(--hover);
}

/* Right: Social Icons */
.footer-simple-social {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.social-icon-simple {
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
	}

.social-icon-simple:hover {
    background: var(--hover);
    transform: translateY(-2px);
	}

.social-icon-simple svg {
    width: 22px;
    height: 22px;
	}




/* =================================
   NEWSLETTER OVERLAY MODAL
   ================================= */

/* Newsletter Overlay - Add blur background */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px); /* Add this line */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    z-index: 1021;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Newsletter Modal */
.newsletter-modal {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 90vh;
    overflow-y: auto;
}

.newsletter-overlay.active .newsletter-modal {
    transform: translateY(0);
}

/* Newsletter Header */
.newsletter-header {
    position: relative;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.newsletter-modal-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0;
    color: #000;
}

.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.newsletter-close:hover {
    opacity: 1;
}

.newsletter-close svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

/* Newsletter Form */
.newsletter-form {
    padding: 30px;
}

/* Newsletter Options */
.newsletter-options {
    margin-bottom: 30px;
}

.newsletter-option {
    margin-bottom: 20px;
}

.newsletter-option:last-child {
    margin-bottom: 0;
}

/* Custom Checkbox Styling */
.newsletter-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.newsletter-checkbox-label:hover {
    border-color: #000;
    background: #f8f9fa;
}

.newsletter-checkbox-label input[type="checkbox"] {
    display: none;
}

.newsletter-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.newsletter-checkbox-label input[type="checkbox"]:checked + .newsletter-checkbox-custom {
    background: #000;
    border-color: #000;
}

.newsletter-checkbox-label input[type="checkbox"]:checked + .newsletter-checkbox-custom::after {
    content: 'â';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Newsletter Option Content */
.newsletter-option-content {
    flex: 1;
}

.newsletter-option-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
}

.newsletter-option-description {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #666;
}

/* Newsletter Signup */
.newsletter-signup {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.newsletter-input-container {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 14px;
    background: white;
}

.newsletter-email-input::placeholder {
    color: #999;
	}

.newsletter-submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 15px 25px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
	}

.newsletter-submit-btn:hover {
    background: #333;
	}




/* =================================
   SOCIAL SHARE BUTTONS
   ================================= */

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.social-share__label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.social-share__buttons {
    display: flex;
    gap: 6px;
}

.social-share__button {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #000;
    color: white;
    border: none;
	}

.social-share__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: var(--hover);
	}

.social-share__button svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
	}

.social-share--top {
    margin: 0;
    padding: 0;
    float: none;
    width: auto; /* Change from 60px to auto */
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    flex-direction: row; /* Keep horizontal layout */
    align-items: center;
	}

.social-share--top .social-share__buttons {
    flex-direction: row; /* Keep buttons horizontal */
    gap: 8px;
	}

.social-share--bottom {
    position: absolute;
    top: 60px;
    right: 0;
    margin: 0;
    padding: 0;
    float: none;
	}



/* =================================
   ABOUT PAGE TEAM SECTIONS
   ================================= */

.about-team-full-width {
    background: #ffffff;
}

.about-team-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-team-container h2 {
    color: #000;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-intro {
    margin-bottom: 50px;
    max-width: 560px;
}

.team-intro p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.56;
    margin-top: 0;
    color: #333;
    margin-bottom: 1rem;
}

/* =================================
   GRID LAYOUTS
   ================================= */

.editorial-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* =================================
   SHARED TEAM MEMBER STYLES
   ================================= */

.editorial-member,
.contributor-member {
    background: linear-gradient(to bottom, #fafafa 0%, #f8f9fa 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.editorial-member {
    padding: 36px;
}

.contributor-member {
    padding: 24px;
}

/* Shared hover effects */
.editorial-member:hover,
.contributor-member:hover {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Remove link styling */
.editorial-member:visited,
.editorial-member:active,
.editorial-member:focus,
.contributor-member:visited,
.contributor-member:active,
.contributor-member:focus {
    color: inherit;
    text-decoration: none;
}

/* =================================
   EDITORIAL TEAM SPECIFIC STYLES
   ================================= */

.editorial-member-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.editorial-member .member-avatar {
    flex-shrink: 0;
    margin-bottom: 0;
}

.editorial-member .member-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    border-radius: 50%;
    border: 2px #fff solid;
}

.editorial-member .member-header-info {
    flex: 1;
}

.editorial-member .member-name {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

.editorial-member .member-rule {
    width: 30px;
    height: 1px;
    background-color: #000;
    margin-bottom: 15px;
}

/* Social Media Icons for Editors */
.editorial-member .member-social {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.editorial-member .member-social .social-link {
    width: 24px;
    height: 24px;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10; /* Ensure social links work above parent link */
}

.editorial-member .member-social .social-link:hover {
    background-color: #00ADEE !important;
    transform: scale(1.1);
}

.editorial-member .member-social .social-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.editorial-member .member-bio {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.5;
    color: #000;
    text-align: left;
    margin-bottom: 5px;
    padding-right: 3%;
    flex: 1;
}

/* =================================
   CONTRIBUTORS SPECIFIC STYLES
   ================================= */

.contributor-member .member-avatar {
    margin-bottom: 16px;
}

.contributor-member .member-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    border-radius: 50%;
    margin: 0;
    border: 2px #fff solid;
}

.contributor-member .member-info {
    display: flex;
    flex-direction: column;
    flex: 1; /* This pushes the stories link to bottom */
}

.contributor-member .member-name {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* =================================
   SHARED BIO STYLES
   ================================= */

.member-bio {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #000;
    text-align: left;
    margin-bottom: 5px;
    flex: 1;
}

.member-bio p {
    margin-bottom: 5px;
    margin-top: 5px;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

/* Override for editorial team bio */
.editorial-member .member-bio {
    font-size: 1.1rem;
}

/* =================================
   STORIES LINK STYLES
   ================================= */

.member-stories-link {
    text-align: left;
}

.contributor-member .member-stories-link {
    margin-top: auto; /* Push to bottom for contributors */
}

/* Shared link styling for spans (new clickable boxes) */
.member-stories-link span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: start;
    gap: 6px;
}

.editorial-member:hover .member-stories-link span,
.contributor-member:hover .member-stories-link span {
    color: #00ADEE;
}

.member-stories-link span::after {
    content: '→';
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.editorial-member:hover .member-stories-link span::after,
.contributor-member:hover .member-stories-link span::after {
    transform: translateX(3px);
}

/* Legacy support for old anchor links (if any remain) */
.member-stories-link a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: start;
    gap: 6px;
}

.member-stories-link a:hover {
    color: #00ADEE;
}

.member-stories-link a::after {
    content: '→';
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.member-stories-link a:hover::after {
    transform: translateX(3px);
}

/* =================================
   TEXT COLOR INHERITANCE
   ================================= */

.editorial-member h3,
.editorial-member p,
.editorial-member span,
.contributor-member h3,
.contributor-member p,
.contributor-member span {
    color: inherit;
}

.editorial-member:hover h3,
.editorial-member:hover p,
.contributor-member:hover h3,
.contributor-member:hover p {
    color: #000; /* Keep text black on hover */
}



/* Hero section category styling with pillar-based background colors */
.hero-section.category-featured .hero-article.pillar-environment {
    background: rgba(123, 218, 255, 0.2); /* 50% opacity environment color */
}

.hero-section.category-featured .hero-article.pillar-society {
    background: rgba(255, 243, 109, 0.3); /* 50% opacity society color */
}

.hero-section.category-featured .hero-article.pillar-economy {
    background: rgba(170, 251, 171, 0.2); /* 50% opacity economy color */
}

/* Category label styling for hero section */
.hero-category-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 13px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    line-height: 1.3;
}

.hero-category-label a {
    color: inherit;
    text-decoration: none;
}

.hero-category-label:hover {
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

/* Make sure hero content uses flex for proper label alignment */
.hero-content-inner {
    display: flex;
    flex-direction: column;
}




.newsletter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Newsletter Modal */
.newsletter-modal {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 90vh;
    overflow-y: auto;
}

.newsletter-overlay.active .newsletter-modal {
    transform: translateY(0);
}

/* Newsletter Header */
.newsletter-header {
    position: relative;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.newsletter-modal-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0;
    color: #000;
}

/* Close Button */
.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.newsletter-close:hover {
    opacity: 1;
}

.newsletter-close svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

/* Newsletter Form */
.newsletter-form {
    padding: 30px;
}

/* Newsletter Options */
.newsletter-options {
    margin-bottom: 30px;
}

.newsletter-option {
    margin-bottom: 20px;
}

.newsletter-option:last-child {
    margin-bottom: 0;
}

/* Newsletter Option Content */
.newsletter-option-content {
    flex: 1;
}

.newsletter-option-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
}

.newsletter-option-description {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #666;
}

/* Newsletter Signup */
.newsletter-signup {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.newsletter-input-container {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 14px;
    background: white;
}

.newsletter-email-input::placeholder {
    color: #999;
}

.newsletter-submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 15px 25px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: #333;
}


/* =================================
   MOBILE NAVIGATION
   ================================= */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.4s ease;
    display: block;
}
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px); /* Blur the background */
    -webkit-backdrop-filter: blur(8px);
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: end;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

.mobile-nav-logo {
    height: 20px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mobile-nav-close:hover {
    opacity: 1;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

/* Mobile Menu Navigation */
.mobile-nav-menu {
    flex: 1; /* Takes up available space, pushing social icons to bottom */
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 18px 25px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.current {
    background: rgba(0, 0, 0, 0.03);
    padding-left: 35px;
}

/* Mobile Nav Pillar Colors */
.mobile-nav-menu a[href*="environment"]:hover,
.mobile-nav-menu a[href*="environment"].current {
    border-left: 4px solid var(--environment-color);
}

.mobile-nav-menu a[href*="society"]:hover,
.mobile-nav-menu a[href*="society"].current {
    border-left: 4px solid var(--society-color);
}

.mobile-nav-menu a[href*="economy"]:hover,
.mobile-nav-menu a[href*="economy"].current {
    border-left: 4px solid var(--economy-color);
}

.mobile-nav-menu a:not([href*="environment"]):not([href*="society"]):not([href*="economy"]):hover,
.mobile-nav-menu a:not([href*="environment"]):not([href*="society"]):not([href*="economy"]).current {
    border-left: 4px solid var(--hover);
}

/* Search Link - Matches other nav items */
.mobile-nav-search {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-search a {
    color: #000;
    font-weight: 700;
    border-left: 4px solid transparent;
}

.mobile-nav-search a:hover {
    color: #000;
    border-left-color: var(--hover);
    background: rgba(0, 0, 0, 0.03);
    padding-left: 35px;
}

/* Mobile Nav Social Icons - At bottom of panel */
.mobile-nav-social {
    padding: 20px 25px 25px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.mobile-nav-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #000;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-social-icon:hover {
    background: #00ADEE;
    transform: translateY(-1px);
}

.mobile-nav-social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.mobile-nav-social-icon[href*="reddit"] svg {
    width: 16px;
    height: 16px;
}
















/* =================================
   RESPONSIVE DESIGN - CLEANED & CONSOLIDATED
   ================================= */
   
   
@media (max-width: 1350px) and (min-width: 769px) {
	
	.container {
		padding: 0 5%;
	}
	
	.site-header {
		padding-left: 5%;
		padding-right: 5%;
		padding-top: 50px;
		padding-bottom: 50px;
	}
	}
	
@media (max-width: 1040px) and (min-width: 769px) {
	
	.header-container {
		display: block;
	}
	
	.hero-article {
		height: 40vh;
		}

	.hero-section {
		margin-bottom: 80px;
	}
	
	.hero-content {
		max-width: 420px;
		}

	
	.mission-statement p {
		font-size: 33px;
		}
		
	.newsletter-widget {
		padding: 16px;
	}
	
	.newsletter-list {
		display: table-row;
	}
	
	.newsletter-link {
		margin-bottom: 25px;
		}
	
	.newsletter-description {
	margin-bottom: 6px;
	}
	
	.pillar-box-description {
		font-size: 16px;
	}
	}

/* =================================
   LARGE TABLETS & SMALL DESKTOPS (1024px and down)
   ================================= */
@media (max-width: 1024px) {
    .main-navigation {
        gap: 25px;
    }
    
    .article-grid--3-col {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .article-grid--6-col {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .article-card__title {
        font-size: 22px;
    }
    		
	.article-card__image {
		aspect-ratio: 16/10;
		}
    
    .article-card__excerpt {
	    font-size: 14px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* =================================
   TABLETS (992px and down)
   ================================= */
@media (max-width: 992px) {
    .editorial-team-grid,
    .contributors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* =================================
   TABLET BREAKPOINT (481px to 768px) - Desktop-style hero + 3-col articles
   ================================= */
@media (max-width: 768px) and (min-width: 601px) {
    
.header-container {
	display: flex;
    }
    
    .hero-section {
	    margin-bottom: 30px;
    }
    .hero-article {
        background: #fff !important;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: grid !important;
        grid-template-columns: 1fr 1fr; /* Side-by-side like desktop */
        gap: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 40vh;
    }
    
    .hero-article:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image img {
        height: 100%;
        min-height: 300px;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        order: 2;
        padding: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 32px;
        font-weight: 400;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 8px;
    }
    
    .hero-title a {
        text-decoration: none;
        color: inherit;
    }
    
    .hero-excerpt {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #666;
        flex-grow: 1;
    }
    
    .pillar-tag {
        order: 0;
        margin-bottom: 5px;
    }
    
    .hero-meta {
        font-size: 10px;
        color: #888;
        border-top: none;
        padding-top: 8px;
        margin-top: auto;
    }
    
    .hero-meta::before {
        display: none;
    }
    
    /* FEATURED ARTICLES - Keep 3-column layout */
    .featured-articles .article-grid--3-col, .article-grid--6-col {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
    
            .article-card__image {
aspect-ratio: 4/3;
}    
    .article-card__image img {
height: 160px;
}

.filter-button {
	font-size: 11px;
	padding: 6px 14px;
}
    
    /* NAVIGATION - Hide desktop nav, show mobile */
    .main-navigation {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .search-trigger {
        display: none !important;
    }
    
    .social-tab {
        display: none !important;
    }
    
    .footer-simple-brand {
        align-items: start;
        gap: 50px;
    }
    
    .footer-simple-brand {
	    flex-direction: row;
	    }
    
    .mobile-menu-toggle {
	    margin-top: -8px;
	    gap: 7px;
    }
    
        .external-feed-grid-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
        }

/* =================================
   MOBILE & SMALL TABLETS (768px and down)
   ================================= */
@media (max-width: 768px) {
    
    /* HEADER & NAVIGATION */

    
    .site-header {
	    padding-left: 4%;
	    padding-right: 4%;
	    padding-bottom: 50px;
	    padding-top: 50px;
    }
    
    .site-logo-svg {
        height: 18px;
    }
    
    .company-logo-simple {
    height: 19px;
    width: auto;
    margin-top: -8px;
    margin-left: 10px;
}
    
    .main-navigation {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .search-trigger {
        display: none !important;
    }
    
    .social-tab {
        display: none !important;
    }
    
    /* HOMEPAGE SECTIONS */
    .mission-newsletter-section {
        padding: 60px 0;
    }
    
    .mission-newsletter-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-statement {
        font-size: 16px;
    }
    
    .mission-statement h2 {
        font-size: 24px;
    }
    
    .newsletter-widget {
        padding: 0;
        background: none;
    }
    
    .newsletter-title {
        font-size: 15px;
        margin-bottom: 0;
    }
    
    .newsletter-list {
        gap: 24px;
    }
    
    .newsletter-item {
        text-align: left;
        padding: 20px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .newsletter-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .pillar-boxes-section {
        padding: 60px 0;
    }
    
    .pillar-box {
        padding: 0;
        min-height: 0;
    }
    
    .pillar-box-title {
        font-size: 20px;
    }
    
    .pillar-box-description {
        font-size: 14px;
    }
    
    /* GLOBAL LAYOUT */
    .container {
        padding: 0 4%;
    }
    
    /* FOOTER */
    .site-footer {
        padding: 40px 0 30px 0;
        margin-top: 60px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        justify-content: center;
        padding-top: 20px;
    }
    
    .site-footer-simple {
        padding: 25px 0;
    }

    .footer-simple-content {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    
    .footer-simple-brand {
        align-items: center;
        gap: 5px;
    }
    
    .footer-simple-nav {
        gap: 20px;
        justify-content: center;
    }
    
    .footer-simple-nav-column {
        gap: 5px;
    }
    
    .footer-simple-link {
        font-size: 12px;
        letter-spacing: 1.6px;
    }
    
        .article-content-container {
	    max-width: 600px;
	    display: block;
    }
.social-share {
	justify-content: start;
	margin-bottom: 40px;
	position: static;
}

    
    /* SOCIAL ELEMENTS */
    .social-tab .social-icon {
        width: 22px;
        height: 22px;
    }

    .social-tab .social-icon svg {
        width: 11px;
        height: 11px;
    }

    .social-tab .social-icon[href*="reddit"] svg {
        width: 13px;
        height: 13px;
    }
    
    .social-share--top,
    .social-share--bottom {
        float: none;
        justify-content: center;
    }
    
    .social-share {
        justify-content: start;
        text-align: center;
    }
    
    .social-share__label {
        font-size: 12px;
    }
    
    .social-share__button {
        width: 32px;
        height: 32px;
    }
    
    .social-share__button svg {
        width: 16px;
        height: 16px;
    }
    
    /* SEARCH */
    .search-trigger {
        margin-left: 15px;
        padding: 6px;
    }

    .search-trigger svg {
        width: 18px;
        height: 18px;
    }

    .search-overlay {
        padding-top: 60px;
    }

    .search-modal {
        width: 95%;
        margin: 0 auto;
    }

    .search-input {
        padding: 20px 50px 20px 0;
        font-size: 16px;
    }

    .search-input-container::before {
        margin-left: 16px;
        margin-right: 12px;
    }
    
    /* NEWSLETTER OVERLAY */
    .newsletter-overlay {
        padding: 15px;
    }
    
    .newsletter-modal {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .newsletter-header {
        padding: 25px 20px 15px 20px;
    }
    
    .newsletter-modal-title {
        font-size: 14px;
    }
    
    .newsletter-form {
        padding: 25px 20px;
    }
    
    .newsletter-checkbox-label {
        padding: 12px;
        gap: 12px;
    }
    
    .newsletter-option-title {
        font-size: 15px;
    }
    
    .newsletter-option-description {
        font-size: 13px;
    }
    
    .newsletter-input-container {
        flex-direction: column;
    }
    
    .newsletter-email-input {
        padding: 12px 15px;
    }
    
    .newsletter-submit-btn {
        padding: 12px 15px;
        text-align: center;
    }
    
    /* ARTICLE PAGES */
    .article-content-section {
        padding: 40px 0;
    }
    
    .article-content {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .related-articles {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* AUTHOR PAGES */
    .author-header-section {
        padding: 60px 0 80px 0;
    }
    
    .author-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .author-left-column {
        align-items: center;
    }
    
    .author-header-avatar img {
        width: 150px;
        height: 150px;
    }
    
    .author-header-name {
        font-size: 24px;
    }
    
    .author-header-bio {
        font-size: 16px;
    }
    
    .author-articles {
        padding: 40px 0;
    }
    
    .author-bio {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .author-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .author-name {
        font-size: 20px;
    }
    
    .author-description {
        font-size: 15px;
    }
    
    /* PILLAR PAGES */
    .pillar-title {
        font-size: 36px;
    }
    
    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .filter-button-group {
        align-items: start;
    }
    
    /* ARCHIVE PAGES */
    .archive-page {
        padding: 40px 0;
    }
    
    .archive-title {
        font-size: 24px;
    }
    
    /* SEARCH RESULTS */
    .search-results-page {
        padding: 60px 0;
    }
    
    .search-results-title {
        font-size: 24px;
    }
    
    .search-results-grid {
        margin-bottom: 60px;
    }
    
    /* ABOUT PAGE */
    .about-header-section {
        padding: 60px 0 80px 0;
    }
    
    .about-content {
	    max-width: 600px;
	    margin-left: auto;
	    margin-right: auto;
    }
    
    .about-intro {
        font-size: 24px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-sidebar {
        display: none;
    }
        
    .page-content {
        font-size: 16px;
    }
    
    .page-content h2 {
        font-size: 28px;
        margin: 40px 0 15px 0;
    }
    
    /* ABOUT PAGE TEAM SECTIONS */
    .about-team-section {
        margin: 40px 0;
    }
    
    .about-team-section h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .editorial-team-grid,
    .contributors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-intro {
        margin-bottom: 30px;
    }
    
    .editorial-member {
        flex-direction: column;
        text-align: center;
    }
    
        
    .editorial-member-header {
	    display: block;
	    margin-bottom: 0;
    }
    
    .editorial-member .member-name {
	    margin-top: 10px;
	    margin-bottom: 10px;
		font-size: 20px;
	    width: 90%;
    }
    
    .editorial-member .member-social {
        justify-content: center;
    }
    
    .editorial-member .member-avatar img {
        width: 80px;
        height: 80px;
    }
    
        .editorial-member .member-bio {
	        font-size: 15px;
	        line-height: 1.4;
	        padding-right: 0;
	        }
    
    /* SPONSORED CONTENT */
    .sponsored-hero-badge {
        top: 15px;
        right: 15px;
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .sponsored-series-title {
        font-size: 28px;
    }
    
    .sponsored-disclaimer {
        padding: 25px 20px;
    }
    
    .sponsored-series-info {
        padding: 30px 20px;
    }
    
    .sponsored-series-label {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* PAGINATION */
    .pagination,
    .author-pagination,
    .search-pagination,
    .archive-pagination {
        margin-top: 40px;
    }

.article-card__title {
        font-size: 20px;
        }
        
        .article-card__content {
	        padding-right: 18px;
	        padding-top: 5px;
        }
        
        .article-card__excerpt {
	        font-size: 14px;
	        margin-bottom: 0;
        }
        
        .mission-statement p {
	        font-size: 35px;
	        padding-right: 10%;
        }
        
        .editorial-team-grid, .contributors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        
        .editorial-member .member-rule, .editorial-member .member-social {
	        display: none; 
        }
    }
}

/* =================================
   MOBILE ONLY
   ================================= */
@media (max-width: 600px) {
    
    /* HERO SECTION - Switch to vertical layout */
    .hero-article {
        background: #fff !important;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        min-height: unset;
        height: auto;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        order: 2;
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 7px;
        margin-top: 5px;
    }
    
    .hero-excerpt p {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .hero-meta {
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
}
    
    .hero-meta .date, .hero-meta .author  {
        padding-top: 0;
        font-size: 10px;
    }
    
    .hero-meta::before {
        display: none;
    }
    
    /* FEATURED ARTICLES - Single column */
    .featured-articles .article-grid--3-col,
    .article-grid--3-col,
    .article-grid--6-col {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .article-card__image img {
        height: 200px;
    }
    
    .article-card__title {
        font-size: 20px;
    }
    
    .article-card__excerpt {
        font-size: 15px;
    }
    
    /* GLOBAL MARGINS */
    .container, 
    .hero-article {
        padding: 0 4%; /* 95% content width */
    }
    
    /* HEADER ADJUSTMENTS */
    .site-logo-svg {
        height: 18px;
    }
    
    .mobile-menu-toggle {
        margin-top: -5px;
        gap: 5.5px;
    }
    
    .site-header {
        padding-top: 40px;
    }
    
    /* HERO SECTION ADJUSTMENTS */
    .hero-section {
        margin-bottom: 40px;
    }
    
    .pillar-tag a {
        font-size: 10px;
        font-weight: 400;
    }
    
    /* MISSION STATEMENT */
    .mission-statement p {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 1.15;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .mission-link {
        text-transform: uppercase;
        font-size: 10px;
        letter-spacing: 1.5px;
        font-weight: 700;
    }
    
    /* NEWSLETTER WIDGET */
    .newsletter-widget {
        padding: 0;
        background: none;
    }
    
    .newsletter-title {
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .newsletter-list {
	        grid-template-columns: 3fr;
        gap: 0;
        background: none;
    }
    
    .pillar-boxes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pillar-box-content {
        margin-bottom: 0;
    }
    
    .pillar-box {
        padding: 0;
        min-height: 0;
    }
    
    .pillar-box-description {
        font-family: var(--font-body);
        line-height: 1.4;
        margin-bottom: 15px;
        flex-grow: 1;
        padding-right: 0;
    }
    
    .pillar-box-link {
        font-size: 10px;
        letter-spacing: 1.5px;
        font-weight: 500;
        padding: 4px 10px;
        text-transform: uppercase;
    }
    
    .about-team-container h2, .page-content h2 {
	    font-size: 20px;
    }
    
    .external-feed-grid-columns {
        gap: 0;
    }
    
    .filter-button {
	    font-size: 11px;
	    text-align: left;
	    padding: 6px 14px;
    }
    
    .article-card__image {
	    aspect-ratio: auto;
	    margin-bottom: 10px;
	    }

    
    /* FOOTER ADJUSTMENTS */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-simple-brand {
	    align-items: flex-start !important;
	    flex-direction: row !important;
	    gap: 15px;
    }
    
    .company-logo-simple {
	    height: 20px;
	    margin-top: -8px;
	    margin-left: 5px;
    }
    
    .footer-heading {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    .editorial-team-grid, .contributors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .editorial-member {
	    padding: 24px;
    }
    
    /* ABOUT PAGE ADJUSTMENTS */
    .editorial-member .member-avatar img, .contributor-member .member-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .editorial-member .member-social .social-link {
        width: 20px;
        height: 20px;
    }
    
    .editorial-member .member-social .social-link svg {
        width: 10px;
        height: 10px;
    }
    
    .editorial-member-header {
	    display: block;
	    margin-bottom: 0;
    }
    
    .editorial-member .member-name {
	    margin-top: 10px;
	    margin-bottom: 10px;
    }
}
/* =================================
   ANNOUNCEMENT BAR CSS
   ================================= */
/* Add this to your stylesheet */

.announcement-bar-wrapper {
    border-bottom: 4px solid var(--hover);
    padding: 12px 0;
    transition: all 0.3s ease;
    margin-bottom: 70px;
    display: inline-block;
    margin-top: -20px;
}

.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-bar:hover {
    text-decoration: none;
}

.announcement-bar-wrapper:hover {
    border-bottom-color: #000;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.announcement-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}

.announcement-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    opacity: 0.9;
}

.announcement-arrow {
    font-weight: 600;
    margin-left: 12px;
    transition: transform 0.3s ease;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .announcement-bar-wrapper {
        padding: 10px 0;
    }
    
    .announcement-title,
    .announcement-text {
        font-size: 14px;
    }
    
    .announcement-content {
        gap: 6px;
    }
    
    .announcement-arrow {
        font-size: 16px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .announcement-arrow {
        align-self: flex-end;
        margin-left: 0;
    }
}

/* Fix category/sponsored card layouts */
.article-card.category-featured {
    background: rgba(var(--pillar-color-rgb), 0.1);
    border: 1px solid rgba(var(--pillar-color-rgb), 0.2);
}

/* Ensure proper grid behavior */
.article-grid--3-col .article-card.category-featured,
.article-grid--6-col .article-card.category-featured {
    display: flex;
    flex-direction: column;
    height: 100%; /* Make all cards same height */
}

.article-card.category-featured .article-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card.category-featured .article-card__meta {
    margin-top: auto; /* Push meta to bottom */
}

/* Scope to article body if you don’t want this everywhere */
.article-content figure,
.article-content .wp-block-image {
  margin: 0;             /* or margin: 1rem 0; if you want vertical space */
  margin-inline: 0;      /* explicitly kill UA inline margins */
  padding: 0;
}

/* image rules can stay simple; object-fit not needed here */
.article-content .wp-block-image img,
.article-content figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  width: auto;
  max-height: 500px;
}