.blog-homepage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.featured-article img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-content {
  padding: 20px;
}

.category-tag {
  display: inline-block;
  background: var(--category-bar-color);
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.featured-article .excerpt {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.author-name {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.read-more {
  display: inline-block;
  color: #2ecc71;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.read-more:hover {
  color: #27ae60;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.article-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.article-card .category-tag {
  position: absolute;
  top: 220px;
  left: 20px;
  z-index: 10;
}

.article-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.3;
  margin: 15px 20px 12px 20px;
  color: #1a1a1a;
}

.article-card .subtitle {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
  margin: 0 20px 16px 20px;
}

.article-card .author-info {
  margin: 0 20px 20px 20px;
}

.article-card .read-more {
  display: none;
}

.article-card {
  cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-article h2 {
    font-size: 32px;
  }
}

.author-avatar-small {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.8rem;
  color: #666;
}

/* Blog Nav */
.blog-nav {
  background: #f5f5f5;
  padding: 12px 0;
}

.blog-nav-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-nav-content a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.blog-nav-content a:hover {
  color: #000;
}

@media (max-width: 1400px) {
  .blog-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .blog-nav::-webkit-scrollbar {
    display: none;
  }  
  .blog-nav-content {
   width: max-content;
    max-width: none;
    gap: 25px;
    padding: 0 15px;
    justify-content: flex-start;
  }  
  
  
  .blog-nav-content a {
    white-space: nowrap;
    flex-shrink: 0;
  }
}




/* Microsite Blog Subnav (Both Mode) */
.microsite-blog-subnav {
  background: #f5f5f5;
  padding: 12px 0;
}

.microsite-blog-subnav-content {
  display: flex;
  align-items: center;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
}

.microsite-blog-subnav-content .subnav-mission {
  margin-right: auto;
}

.microsite-blog-subnav-content .subnav-links {
  display: flex;
  gap: 40px;
}

.microsite-blog-subnav-content a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.microsite-blog-subnav-content a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .microsite-blog-subnav {
    overflow: hidden;
  }
  
  .microsite-blog-subnav-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .microsite-blog-subnav-content::-webkit-scrollbar {
    display: none;
  }
  
  .microsite-blog-subnav-content .subnav-mission {
    margin-right: 30px;
    flex-shrink: 0;
  }
  
  .microsite-blog-subnav-content .subnav-links {
    gap: 25px;
    flex-shrink: 0;
  }
  
  .microsite-blog-subnav-content a {
    white-space: nowrap;
  }
}

/* Archive List */
.archive-list ul {
  columns: 3;
  column-gap: 40px;
  list-style: disc;
  padding-left: 20px;
}

.archive-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.archive-list a {
  color: #333;
  text-decoration: none;
}

.archive-list a:hover {
  text-decoration: underline;
}

/* Mission Page Styles */
.blog-homepage .intro,
.blog-homepage .text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

.blog-homepage .intro {
  font-size: 20px;
  font-style: italic;
  color: #555;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.blog-homepage .text p {
  margin-bottom: 28px;
}

.blog-homepage .text h2,
.blog-homepage .text h3 {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* ============================================
   FEATURED SPLIT SECTION - Two Tone Layout
   ============================================ */
.featured-split-section {
  background-color: var(--blog-featured-bar);
  margin: 50px 0;
  padding: 30px;
  border-radius: 8px;
}

.featured-split-inner {
  display: flex;
  gap: 0;
}

/* Left Panel */
.featured-split-left {
  flex: 3;
  background: #fff;
  padding: 25px 30px;
  border-radius: 6px 0 0 6px;
}

.featured-split-search {
  margin-bottom: 25px;
}

.featured-split-label {
  display: block;
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

#homepage-searchform {
  display: flex;
  align-items: stretch;
}

#homepage-searchform-input {
  width: 100%;
  max-width: 500px;
  height: 44px;
  padding: 0 15px;
  background: var(--blog-featured-bar);
  color: #fff;
  border: none;
  font-size: 15px;
}

#homepage-searchform-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.featured-split-content {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.featured-split-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.featured-split-grid {
  display: flex;
  gap: 20px;
}

.featured-split-item {
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.featured-split-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.featured-split-placeholder {
  width: 100%;
  height: 80px;
  background: #e0e0e0;
  border-radius: 4px;
}

.featured-split-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
}

.featured-split-item:hover .featured-split-item-title {
  color: var(--blog-featured-bar);
}

/* Right Panel */
.featured-split-right {
  flex: 2;
  background: var(--blog-featured-bar);
  filter: brightness(1.2);
  padding: 25px 30px;
  border-radius: 0 6px 6px 0;
}

.featured-ideas-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px 0;
}

.featured-ideas-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: decimal;
}

.featured-ideas-list li {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
}

.featured-ideas-list a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-ideas-list a:hover {
  text-decoration: underline;
}

/* Featured Split Responsive */
@media (max-width: 868px) {
  .featured-split-inner {
    flex-direction: column;
  }
  
  .featured-split-left {
    border-radius: 6px 6px 0 0;
  }
  
  .featured-split-right {
    border-radius: 0 0 6px 6px;
  }
  
  .featured-split-grid {
    flex-wrap: wrap;
  }
  
  .featured-split-item {
    flex: 0 0 calc(50% - 10px);
  }
  
  .featured-search-input {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .featured-split-section {
    padding: 15px;
  }
  
  .featured-split-left,
  .featured-split-right {
    padding: 20px;
  }
  
  .featured-split-item {
    flex: 0 0 100%;
  }
}

/* Latest Articles 4x3 Grid */
.latest-articles-section {
  margin-top: 60px;
}

.latest-articles-section h2 {
  margin-bottom: 30px;
}

.latest-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.latest-article-card {
  text-decoration: none;
  color: inherit;
}

.latest-article-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
}

.latest-article-card .placeholder-image {
  width: 100%;
  aspect-ratio: 3/2;
  background: #e0e0e0;
  border-radius: 8px;
}

.latest-article-card h3 {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.latest-article-card:hover img {
  opacity: 0.85;
}

@media (max-width: 968px) {
  .latest-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .latest-articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Article - 3 Column Layout */
.featured-section {
  margin-bottom: 60px;
}

.featured-article-new {
  display: grid;
  grid-template-columns: 1fr 1fr 250px;
  gap: 30px;
  align-items: start;
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-content-new {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.featured-content-new h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.featured-content-new .excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-themes {
  display: flex;
  flex-direction: column;
}

.featured-themes-header {
  background-color: var(--blog-featured-bar);
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
}

.featured-themes-content {
  background: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-bubble {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s;
  width: fit-content;
}

.theme-bubble:hover {
  border-color: var(--blog-featured-bar);
  color: var(--blog-featured-bar);
}

@media (max-width: 968px) {
  .featured-article-new {
    grid-template-columns: 1fr;
  }
  
  .featured-image img {
    min-height: 250px;
  }
}
.featured-number-card {
    background: #f0f0f0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.featured-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--blog-featured-bar);
}
.author-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}