a {
  text-decoration: none;
}
.page2 {
  display: flex;
  max-width: 1100px;
  margin: 50px auto;
  gap: 30px;
}

/* SOL */
.sidebar {
  margin-top: 52px;
  width: 250px;
  background: #f1f1f1;
  border-radius: 10px;

  height: fit-content;
  align-self: flex-start; /* 🔥 çox vacib */
}
.sidebar li {
  list-style: none;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar li:hover {
  background: #e0e0e0;
}

/* SAĞ */
.content2 {
  flex: 1;
}

/* TAB */
.tab {
  display: none;
}

.tab.active {
  display: block;
}
.block-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.block-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.line {
  width: 60px;
  height: 1px;
  background: #333;
}
/* GRID */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 sütun */
  gap: 30px;
  margin-top: 30px;
}

/* CARD */
.article-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}

/* hover */
.article-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.article-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.article-text {
  padding: 15px;
}

.article-text h3 {
  font-size: 18px;
  line-height: 1.4;
  color: #222;
}

/* hover rəng */
.article-box:hover h3 {
  color: #6b4226; /* sənin sayt rəngi */
}
