/* Insights & News Page Styles */

/* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }
  
  /* Hero Section */
  .insights-hero {
    padding: 6rem 5% 3rem;
    background: var(--bg-color);
    text-align: left;
    position: relative;
  }
  
  .category-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .insights-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-mint);
    font-weight: 700;
  }
  
  .insights-hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
  }
  
  .insights-hero .tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
  }
  
  /* Featured Article Section */
  .featured-article-section {
    padding: 2rem 0 4rem;
    background-color: var(--bg-color);
  }
  
  .featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
  }
  
  .featured-article:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .featured-article-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .featured-article-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .featured-article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .featured-article-title a:hover {
    color: var(--accent-teal);
  }
  
  .featured-article-excerpt {
    font-size: 1.1rem;
    color: var(--subtle-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .featured-article-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
  }
  
  .featured-article-author {
    display: flex;
    align-items: center;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
  }
  
  .author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
  }
  
  .article-date {
    font-size: 0.8rem;
    color: var(--subtle-text);
  }
  
  .featured-article-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
  }
  
  .featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .featured-article:hover .featured-article-image img {
    transform: scale(1.05);
  }
  
  /* Articles Filter & Search Section */
  .articles-section {
    padding: 3rem 0 5rem;
    background-color: var(--section-alt-bg);
  }
  
  /* Filter Tabs */
  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .filter-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    background-color: var(--card-bg);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-button:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
  }
  
  .filter-button.active {
    background-color: var(--accent-teal);
    color: var(--nav-bg);
    border-color: var(--accent-teal);
  }
  
  /* Search Container */
  .search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
  }
  
  .search-container input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--card-border);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .search-container input:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 2px rgba(2, 200, 223, 0.2);
  }
  
  .search-container button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-teal);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .search-container button:hover {
    color: var(--accent-mint);
  }
  
  /* Articles Grid */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .article-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .article-image {
    height: 200px;
    overflow: hidden;
  }
  
  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .article-card:hover .article-image img {
    transform: scale(1.05);
  }
  
  .article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .article-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-text);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
  }
  
  .article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .article-title a:hover {
    color: var(--accent-teal);
  }
  
  .article-excerpt {
    font-size: 0.95rem;
    color: var(--subtle-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .article-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
  }
  
  .author-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
  }
  
  /* Load More Button */
  .load-more-container {
    text-align: center;
  }
  
  .primary-button {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-mint) 100%);
    border: none;
    border-radius: 6px;
    color: var(--nav-bg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
  }
  
  .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(2, 200, 223, 0.3);
  }
  
  /* No Results Message */
  .no-results {
    text-align: center;
    padding: 3rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 2rem;
    color: var(--text-color);
  }
  
  .no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-teal);
  }
  
  .no-results p {
    font-size: 1rem;
    color: var(--subtle-text);
  }
  
  /* Search Highlight */
  .search-highlight {
    background-color: rgba(2, 200, 223, 0.2);
    border-radius: 2px;
    padding: 0 2px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .featured-article {
      grid-template-columns: 1fr;
    }
    
    .featured-article-image {
      height: 300px;
      order: -1;
    }
    
    .articles-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .insights-hero h1 {
      font-size: 2.5rem;
    }
    
    .featured-article-title {
      font-size: 1.5rem;
    }
    
    .filter-tabs {
      overflow-x: auto;
      padding-bottom: 0.5rem;
      justify-content: flex-start;
    }
    
    .filter-button {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
      white-space: nowrap;
    }
    
    .articles-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .insights-hero h1 {
      font-size: 2rem;
    }
    
    .insights-hero .subtitle {
      font-size: 1rem;
    }
    
    .featured-article-content {
      padding: 1.5rem;
    }
    
    .featured-article-title {
      font-size: 1.25rem;
    }
    
    .featured-article-excerpt {
      font-size: 1rem;
    }
  }