body {
  background: #0f0f12;
  color: #eaeaea;
}

/* მთავარი ბლოგ ბლოკი */
.blog-section {
  max-width: 720px;      /* იყო 850px */
  margin: 90px auto;     /* იყო 140px */
  padding: 40px;         /* იყო 70px */
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}


/* სათაური */
.blog-section h1 {
  font-size: 32px;   /* იყო 44px */
  line-height: 1.2;
  margin-bottom: 15px;
}

/* ავტორი */
.blog-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

/* ოქროსფერი ქვესათაურები */
.blog-section h2 {
  font-size: 26px;
  margin-top: 55px;
  margin-bottom: 18px;
  color: #dabc6a; /* კლასიკური ოქროსფერი */
  position: relative;
  font-weight: 600;
}

/* ოქროსფერი ხაზი ქვემოთ */
.blog-section h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #dabb55, transparent);
  position: absolute;
  bottom: -8px;
  left: 0;
  opacity: 0.8;
}


/* ტექსტი */
.blog-section p {
  font-size: 18px;
  line-height: 1.5;
  color: #ccc;
}

/* CTA ბლოკი */
.blog-cta {
  margin-top: 70px;
  padding: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.blog-button {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #4abcf5, #2d5faa);
  box-shadow: 
    0 6px 18px rgba(0,102,255,0.25);  /* უფრო სუსტი ჩრდილი */
  transition: all 0.3s ease;
}

.blog-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 10px 25px rgba(0,102,255,0.35); /* ნაკლები glow */
}


.blog-button span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-button:hover span {
  transform: translateX(6px);
}
/* FORCE remove purple link color */

.blog-section a,
.blog-section a:link,
.blog-section a:visited,
.blog-section a:active {
  color: #e4d5a4 !important;
  text-decoration: none !important;
}

.blog-section a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}
