* {
  font-family: Arial, sans-serif !important;
}
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 p {
  color: #6c6c6c;
}

.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 */
}
@media (max-width: 992px) {
  .page2 {
    flex-direction: column;
    margin: 25px 15px;
    gap: 20px;
  }

  /* SOL MENYU */
  .sidebar {
    margin-top: 0;

    width: 400px;
    overflow: scroll;
  }

  .sidebar ul {
    display: flex;
    width: max-content;
    min-width: 100%;
    padding: 0;
    margin: 0;
  }

  .sidebar li {
    list-style: none;
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid #ddd;
    flex-shrink: 0;
    padding: 15px 20px;
  }

  /* CONTENT */
  .content2 {
    width: 100%;
  }

  /* KARTLAR */
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-box img {
    height: 220px;
  }

  .article-text {
    padding: 12px;
  }

  .article-text h3 {
    font-size: 17px;
  }

  .article-text p {
    font-size: 15px;
  }

  /* RESENZİYA */
  .metbuat-item {
    padding: 14px 16px;
  }

  .metbuat-item a {
    font-size: 16px;
    line-height: 1.5;
  }
}
