/* PAGE HERO - INSIGHTS */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.05) 0%,
    rgba(248, 249, 250, 1) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23104066" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>')
    center/contain no-repeat;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 20px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.search-container {
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(16, 64, 102, 0.1);
}

.search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-red);
  font-size: 18px;
  cursor: pointer;
}

/* INSIGHTS CATEGORIES */
.categories-section {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-red);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background-color: rgba(16, 64, 102, 0.05);
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.category-card p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.category-count {
  display: inline-block;
  background-color: rgba(16, 64, 102, 0.1);
  color: var(--primary-blue);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* LATEST INSIGHTS */
.latest-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 0;
}

.view-all {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

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

.insight-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.insight-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.insight-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-red);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.insight-content {
  padding: 25px;
}

.insight-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.insight-content p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--medium-gray);
}

.insight-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* FEATURED REPORTS */
.reports-section {
  padding: 80px 0;
  background-color: white;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.report-card {
  background-color: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.report-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.report-header {
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.report-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-red);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.report-icon {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.9);
}

.report-content {
  padding: 30px;
}

.report-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.report-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.report-details {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--medium-gray);
}

.report-detail {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* INDUSTRY TRENDS */
.trends-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.trends-container {
  max-width: 900px;
  margin: 0 auto;
}

.trend-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.trend-item:last-child {
  margin-bottom: 0;
}

.trend-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.trend-text p {
  color: var(--medium-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.trend-stat {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-red);
  margin-top: 15px;
}

.trend-visual {
  height: 250px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.1) 0%,
    rgba(207, 1, 6, 0.1) 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* INSIGHTS ARCHIVE */
.archive-section {
  padding: 80px 0;
  background-color: white;
}

.archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.year-filter {
  display: flex;
  gap: 10px;
}

.year-btn {
  background: none;
  border: 2px solid var(--light-gray);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
}

.year-btn.active,
.year-btn:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

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

.archive-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.archive-item a {
  text-decoration: none;
  color: var(--dark-gray);
  display: block;
}

.archive-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.archive-item a:hover h4 {
  color: var(--primary-red);
}

.archive-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--medium-gray);
}

/* AUTHOR SPOTLIGHT */
.authors-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.author-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.author-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--off-white);
}

.author-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-role {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.author-bio {
  color: var(--medium-gray);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.author-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
  color: var(--medium-gray);
}

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

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reports-grid {
    grid-template-columns: 1fr;
  }

  .authors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trend-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .authors-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .archive-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .year-filter {
    flex-wrap: wrap;
  }
}
