/* ===== Reset ===== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0f0f12;
  color: #eaeaea;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== Section ===== */

.blog-section {
  max-width: 720px;
  margin: 120px auto 80px;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
}

/* ===== Title ===== */

.blog-section h1 {
  margin: 0 0 10px;
  color: #fff;
}

.news-subtitle {
  color: #9c9c9c;
  margin-bottom: 40px;
}

/* ===== News Item (FIXED) ===== */

.news-item {
  display: flex;
  align-items: center;

  padding: 30px;
  margin-bottom: 20px;

  background: #1a1a1f;
  border-radius: 20px;

  text-decoration: none;
  transition: 0.3s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  background: #202026;
}

/* ===== Date ===== */

.news-date {
  min-width: 110px;
  font-size: 14px;
  color: #9c9c9c;
}

/* ===== Content ===== */

.news-content {
  flex: 1;   /* ეს არის მთავარი */
  padding: 0 20px;
}

.news-content h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #ffffff;
}

.news-content p {
  margin: 0;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* ===== Arrow ===== */

.news-arrow {
  font-size: 22px;
  color: #dabc6a;
}
/* ===== Mobile Fix ===== */

@media (max-width: 768px) {

  .blog-section {
    margin: 100px 20px 60px;
    padding: 25px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-date {
    margin-bottom: 10px;
  }

  .news-content {
    padding: 0;
  }

  .news-arrow {
    align-self: flex-end;
    margin-top: 15px;
  }

}
