 /* بخش اختصاصی tt-custom-block */
.tt-custom-block {
  text-align: center; /* وسط چین کردن کل محتوا */
  padding: 30px 15px; /* فاصله از اطراف */
}

.tt-custom-block .tt-custom-wrap {
  max-width: 800px; /* محدود کردن پهنا برای خوانایی */
  margin: 0 auto; /* وسط چین کردن بلوک */
}

.tt-custom-block .tt-custom-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.tt-custom-block .tt-custom-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #333;
}

.tt-custom-block .tt-custom-image img {
  width: 100%; /* ریسپانسیو کردن تصویر */
  height: auto;
  border-radius: 15px; /* گوشه‌های خمیده */
  display: block;
  margin: 0 auto; /* وسط چین کردن تصویر */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* سایه ملایم */
  transition: transform 0.3s ease;
}

/* افکت هاور (اختیاری) */
.tt-custom-block .tt-custom-image img:hover {
  transform: scale(1.05);
}

/* ریسپانسیو برای موبایل */
@media (max-width: 600px) {
  .tt-custom-block .tt-custom-content h2 {
    font-size: 1.5em;
  }

  .tt-custom-block .tt-custom-content p {
    font-size: 1em;
  }
}
 