.blog-section {
  display: none !important;
}

.blog-article {
  background: #fff;
  color: #232323;
  border-radius: 2rem 0.5rem 2rem 0.5rem / 1.5rem 2rem 0.5rem 2rem; /* شكل عضوي عصري */
  box-shadow: 0 6px 32px rgba(44,62,80,0.10), 0 1.5px 6px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', Arial, sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-article::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #c49b3a33 0%, #fff0 100%);
  border-radius: 50%;
  z-index: 0;
}

.blog-article h3 {
  color: #c49b3a;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.blog-article p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.blog-article a {
  display: inline-block;
  background: #c49b3a;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.blog-article a:hover {
  background: #a07c2a;
  transform: translateY(-2px) scale(1.04);
}