 .related {
        font-family: 'Heebo', sans-serif;
        padding: 100px 150px;
        background-color: #f3f3f3;
      }

 @media (max-width: 1300px) {
  .related {
    padding: 40px 20px;
  }
}

      .related h2 {
        font-size: clamp(28px, 3vw, 36px);
        color: rgb(0, 27, 44);
        margin-bottom: 0;
      }

      .related h3 {
        font-size: clamp(16px, 3vw, 18px);
        color: rgb(113, 113, 113);
      }

      .related-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
      }

      .related-card {
        background: var(--surface);
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 18px;
        text-decoration: none;
        border: 1px solid rgba(23, 58, 116, 0.05);
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      }

      .related-card:hover {
        transform: translateY(-2px);
      }

      .related-tag {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 0.86rem;
        font-weight: 800;
        color: #07111c;
      }

      .related-title {
        margin: 0 0 8px;
        font-size: 1.15rem;
        line-height: 1.4;
        color: #173a74;
      }

      .related-desc {
        margin: 0;
        color: #818181;
        line-height: 1.7;
        font-size: 0.98rem;
      }

            @media (max-width: 980px) {
        .related-grid {
          grid-template-columns: 1fr;
        }
    }

    .article-footer {
        grid-area: footer;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 6px;
      }

      .article-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #173a74;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.02rem;
      }

      .article-link:hover {
        text-decoration: underline;
      }

      .article-link svg {
        width: 18px;
        height: 18px;
      }

.back-to-knowledge {
  display: block;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  background-image: linear-gradient(to right, #0d1f32, #07111c);
  font-size: clamp(20px, 3vw, 26px);
  border-radius: 14px;
  padding: 15px 16px;
  font-weight: 800;
  transition: 0.2s ease;
  width: 50%;
  margin: auto;
}

@media (max-width: 768px) {
  .back-to-knowledge {
    width: 80%;
  }
}

.back-to-knowledge:hover {
  background-image: linear-gradient(to right, #07111c, #0d1f32);
}

.back-to-knowledge svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .back-to-knowledge svg {
      width: 12px;
      height: 12px;
  }
}