.blog-wrapper {
  min-height: 100vh;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.sticky-header {
  /* position: sticky;
   top: 0;
   z-index: 50;*/
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

  .sticky-header .header-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #334155;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

  .back-btn .arrow {
    display: inline-block;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }

  .back-btn:hover {
    color: #154B89;
  }

    .back-btn:hover .arrow {
      transform: translateX(-0.25rem);
    }

.save-btn {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

  .save-btn .star {
    font-size: 1rem;
  }

  .save-btn .save-text {
    display: none;
  }

@media (min-width: 768px) {
  .save-btn .save-text {
    display: inline;
  }
}

.save-btn:hover {
  background-color: #e0f0ff;
}

.save-btn.saved {
  background-color: #e0f0ff;
  color: #154B89;
  border-color: #bfe2ff;
}

.blog-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.meta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

  .meta-info .category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #eef2ff 100%);
    color: #154B89;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid #bfe2ff;
    letter-spacing: 0.5px;
  }

  .meta-info .publish-date,
  .meta-info .views-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
  }

  .meta-info .views-count {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

    .meta-info .views-count .eye-icon {
      font-size: 0.875rem;
    }

.blog-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .blog-title {
    font-size: 3rem;
  }
}

.stats-bar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

  .stats-bar .stat-item {
    display: flex;
    flex-direction: column;
  }

    .stats-bar .stat-item .stat-value {
      font-size: 1.875rem;
      font-weight: 700;
      color: #154B89;
    }

    .stats-bar .stat-item .stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      color: #64748b;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

.image-container {
  width: 100%;
  height: 24rem;
  margin: 3rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

  .image-container.featured {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 0;
  }

@media (min-width: 768px) {
  .image-container.featured {
    margin-left: 0;
    margin-right: 0;
    border-radius: 1rem;
  }
}

.image-container .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover .cover {
  transform: scale(1.05);
}

.blog-content {
  margin-bottom: 3rem;
}

  .blog-content .content-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    color: #334155;
    line-height: 1.8;
    font-size: 1rem;
  }

@media (min-width: 768px) {
  .blog-content .content-card {
    padding: 2.5rem;
  }
}

.sources-section {
  margin-bottom: 3rem;
}

.sources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .sources-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.source-box {
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #bfe2ff;
  transition: all 0.3s ease;
}

  .source-box.internal-sources {
    background: linear-gradient(135deg, #f0f7ff 0%, rgba(224, 240, 255, 0.5) 100%);
  }

  .source-box.external-sources {
    background: linear-gradient(135deg, #eef2ff 0%, rgba(224, 231, 255, 0.5) 100%);
    border-color: #e0e7ff;
  }

  .source-box:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
  }

.source-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

  .source-header .source-bar {
    width: 4px;
    height: 1.5rem;
    background-color: #154B89;
    border-radius: 9999px;
  }

    .source-header .source-bar.external {
      background-color: #4f46e5;
    }

  .source-header .source-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
  }

.source-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .source-list li {
    margin-bottom: 0.75rem;
  }

    .source-list li:last-child {
      margin-bottom: 0;
    }

.source-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

  .source-link:hover {
    background-color: rgba(255, 255, 255, 0.6);
    color: #154B89;
  }

    .source-link:hover .link-arrow {
      transform: translateX(0.25rem);
    }

  .source-link .link-arrow {
    font-weight: 700;
    color: #154B89;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .source-link .link-text {
    flex: 1;
  }

  .source-link.external .link-arrow {
    color: #4f46e5;
  }

  .source-link.external:hover {
    color: #4f46e5;
  }

.related-section {
  margin-bottom: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.related-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

  .related-card:hover .related-image img {
    transform: scale(1.1);
  }

  .related-card:hover .related-card-title {
    color: #154B89;
  }

.related-image {
  width: 100%;
  height: 8rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #e2e8f0;
}

  .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

.related-card-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.related-read-time {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.action-buttons {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.btn-primary {
  width: 258px;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: 0.375rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  color: #ffffff;
  border: 1px solid #e2e8f0;
  background-color: #154B89;
  cursor: pointer;
  transition: all 0.03s ease-in-out;
}

  .btn-primary:hover {
    background-color: #e2e8f0;
    border: 1px solid #e2e8f0;
    color: #154B89;
    transition: all 0.03s ease-in-out;
  }

  .btn-primary:active {
    transform: scale(0.98);
  }
.blog-page {
  min-height: 100vh;
  background-color: #f8f9fa;
}

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 20px;
}

.page-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

  .blog-card.featured {
    display: flex;
    flex-direction: row;
    padding: 15px;
    height: 195px;
    padding-top: 25px;
  }

  .blog-card.latest {
    gap: 20px;
    padding: 20px;
    display: flex;
    flex-direction: row;
  }

.blog-content {
  width: 100%;
}

.blog-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #212529;
  font-size: 18px;
  line-height: 24px;
  margin-top: 8px;
}

.blog-card.latest .blog-title {
  overflow: hidden;
}

.blog-title.featured {
  max-height: 77px;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.home-title {
  height: max-content;
  min-height: max-content;
}

.other-title {
  height: 70px;
  min-height: 70px;
}

.blog-description {
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 24px;
}

.blog-card.latest .blog-description {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
  overflow: hidden;
}

.home-description {
  height: max-content;
  min-height: max-content;
}

.other-description {
  height: 60px;
  min-height: 60px;
}

.blog-description.featured {
  height: 77px;
  margin-top: 5px !important;
  margin-bottom: 0px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6c757d;
  justify-content: flex-end;
}

.card-wrapper {
  position: relative;
  z-index: 1;
}

.category-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  background: #e9ecef;
  color: #495057;
}

  .category-badge.latest {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 999999;
  }

.blog-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px;
}

  .blog-image.featured {
    width: 80%;
    height: 145px;
    overflow: hidden;
    margin-bottom: 0;
  }

    .blog-image.featured img {
      width: 145px;
      height: 145px;
      object-fit: fill;
    }

  .blog-image.latest {
    width: 50%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
  }

    .blog-image.latest img {
      width: 100%;
      height: 200px;
    }

.blog-link {
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-card.latest,
  .blog-card.featured {
    flex-direction: column;
  }
}
.featured-section {
  margin-bottom: 80px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #212529;
}

.featured-content-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  height: 250px;
  margin-bottom: 30px;
}

  .blog-image img {
    width: 100%;
    height: 250px;
    display: block;
  }

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.load-more {
  width: 100%;
  text-align: center;
}

  .load-more button {
    width: 258px;
    height: 48px;
    border-radius: 6px;
    font-family: "LoewNextBold";
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #F3F4F6;
    background-color: #154B89;
    margin-left: auto;
    margin-right: auto;
  }

    .load-more button path {
      fill: white;
    }

    .load-more button:hover {
      background-color: #E5E7EB;
      border: 1px solid #E5E7EB;
      color: #154B89;
      transition: all 0.03s ease-in-out;
    }

      .load-more button:hover path {
        fill: #154B89;
      }

@media (max-width: 1200px) {
  .featured-content {
    grid-template-columns: 1fr 350px;
  }
}

@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.header {
  background-color: white;
  border-bottom: 1px solid #e9ecef;
  padding-top: 15px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  align-items: baseline;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }
}
.latest-section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #212529;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.load-more {
  width: 100%;
  text-align: center;
}

  .load-more button {
    width: 258px;
    height: 48px;
    border-radius: 6px;
    font-family: "LoewNextBold";
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #F3F4F6;
    background-color: #154B89;
    margin-left: auto;
    margin-right: auto;
  }

    .load-more button path {
      fill: white;
    }

    .load-more button:hover {
      background-color: #E5E7EB;
      border: 1px solid #E5E7EB;
      color: #154B89;
      transition: all 0.03s ease-in-out;
    }

      .load-more button:hover path {
        fill: #154B89;
      }

@media (max-width: 768px) {
  .latest-grid {
    grid-template-columns: 1fr;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #6c757d;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  height: 60px;
}

  .nav-link:hover {
    color: #212529;
  }

  .nav-link.active {
    color: #000;
    border-bottom: 3px solid #000;
    font-weight: 600;
  }

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.search-container {
  position: relative;
}

.search-box {
  padding: 10px 45px 10px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 14px;
  width: 280px;
  background-color: #fff;
  outline: none;
  color: black;
}

  .search-box::placeholder {
    color: #adb5bd;
  }

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 16px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .search-box {
    width: 100%;
    max-width: 300px;
  }
}
