/* =========================================================
   CSS FIXED (patched)
   - رفع تایپو گالری: .th-gallery-gridfigure -> .th-gallery-grid figure
   - حذف تناقض‌های course-image و یکپارچه‌سازی با aspect-ratio
   - اصلاح Grid Fix بدون قفل کردن ۳ ستونه با !important
   - محدود کردن افزایش فونت موبایل (نه روی کل سایت)
   - امن‌تر کردن full-width (فقط روی th-wrapper، نه container قالب)
   ========================================================= */


/* =========================================
   1. تنظیمات کلی و متغیرها (Variables)
   ========================================= */
:root {
  --th-gold: #B99579;
  --th-dark: #0D0E16;
  --th-light: #f8f9fa;
  --th-white: #fff;
  --th-shadow: 0 5px 20px rgba(0,0,0,.1);
  --th-shadow-hover: 0 15px 40px rgba(185,149,121,.3);
  --th-hero-bg: url('https://www.hastiphibrows.ir/wp-content/uploads/2023/10/home-hero-image.webp');
  --th-course-img: url('https://www.hastiphibrows.ir/wp-content/uploads/2023/10/about-cta-small-banner-1.webp');

  --primary: #c2185b;
  --primary-dark: #8c1342;
  --secondary: #ffebee;
  --bg-light: #fafafa;
  --text: #333333;
  --muted: #777777;
  --border: #e0e0e0;
  --radius-large: 18px;
  --radius: 10px;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-strong: 0 14px 40px rgba(0,0,0,0.12);

  --transition: all .4s cubic-bezier(.25,.46,.45,.94);
}

/* =========================================
   Reset پایه و تنظیمات عمومی
   ========================================= */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Vazirmatn', Tahoma, "IRANSans", sans-serif;
  font-size: 16px;
  color: var(--text);
  background-color: #ffffff;
  line-height: 1.8;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

/* تمام‌عرض کردن فقط Wrapper خودتان (ایمن‌تر از دستکاری container قالب) */
.th-wrapper{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  overflow: visible;
}

/* اصلاح منوی خاص (طبق کد اول شما) */
nav[data-menu="type-1"] > ul > li:first-child > a { padding-inline-start: 0; }
nav[data-menu="type-1"] > ul > li:last-child > a  { padding-inline-end: 0; }


/* =========================================
   2. استایل‌های تم طلایی (.th- Classes)
   ========================================= */
.th-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--th-white);
  background: linear-gradient(135deg, var(--th-gold), var(--th-dark));
  overflow: hidden;
}
.th-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--th-hero-bg) center/cover no-repeat;
  opacity: .25;
  z-index: 1;
  transition: transform .5s;
}
.th-hero:hover::before { transform: scale(1.07); }

.th-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}
.th-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.th-hero p {
  margin-bottom: 2rem;
  font-size: 1.12rem;
}

.th-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.th-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}
.th-btn.main {
  background: var(--th-gold);
  color: #fff;
  box-shadow: var(--th-shadow);
}
.th-btn.main:hover {
  transform: translateY(-3px);
  box-shadow: var(--th-shadow-hover);
}
.th-btn.outline {
  border: 2px solid var(--th-gold);
  color: var(--th-gold);
  background: transparent;
}
.th-btn.outline:hover {
  background: var(--th-gold);
  color: #fff;
}

.th-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
  padding: 4rem 0;
  background: var(--th-light);
  text-align: center;
}
.th-stats h3 {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--th-gold);
}

.th-about {
  text-align: center;
  padding: 6rem 1rem;
  max-width: 800px;
  margin: auto;
}
.th-about h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}
.th-about p { font-size: 1.02rem; }
.th-about strong { color: var(--th-gold); }

.th-courses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 1rem;
}
.th-courses-text h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}
.th-course-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.th-course-list li {
  padding: .8rem 0;
  border-bottom: 1px solid var(--th-light);
  transition: var(--transition);
  font-size: 1.02rem;
}
.th-course-list li:hover {
  color: var(--th-gold);
  padding-right: .5rem;
}
.th-courses-img {
  height: 400px;
  border-radius: 20px;
  background: var(--th-course-img) center/cover no-repeat;
  box-shadow: var(--th-shadow);
}

@media (max-width: 768px) {
  .th-courses {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .th-courses-img {
    height: 250px;
    margin-top: 2rem;
  }
}

.th-gallery {
  text-align: center;
  padding: 6rem 1rem;
  background: #fff;
}
.th-gallery h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}
.th-gallery p { font-size: 1.02rem; }

.th-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

/* FIX: تایپو */
.th-gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--th-shadow);
  transition: var(--transition);
  margin: 0;
}

.th-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .4s;
}
.th-gallery-grid figcaption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: .8rem;
  color: #fff;
  background: linear-gradient(transparent,rgba(0,0,0,.7));
  transform: translateY(100%);
  transition: var(--transition);
  font-size: .95rem;
}
.th-gallery-grid figure:hover img { transform: scale(1.08); }
.th-gallery-grid figure:hover figcaption { transform: translateY(0); }

.th-services {
  text-align: center;
  padding: 6rem 1rem;
  background: var(--th-light);
}
.th-services h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: var(--th-dark);
}
.th-services p { font-size: 1.02rem; }

.th-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.th-service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--th-shadow);
  transition: var(--transition);
  text-align: right;
}
.th-service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.th-service-card h3 {
  color: var(--th-gold);
  font-size: 1.15rem;
  margin: 1rem;
}
.th-service-card p {
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}
.th-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--th-shadow-hover);
}

.th-testimonials {
  background: #fff;
  padding: 6rem 1rem;
  text-align: center;
}
.th-testimonials h2 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
}
.th-testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 1.5rem;
}
.th-testimonial {
  background: var(--th-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--th-shadow);
  font-style: italic;
  transition: var(--transition);
  font-size: 1.02rem;
}
.th-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--th-shadow-hover);
}
.th-testimonial span {
  display: block;
  margin-top: .5rem;
  font-weight: 600;
  color: var(--th-gold);
  font-style: normal;
}


/* =========================================
   3. استایل‌های تم صورتی (Standard Theme)
   ========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.top-bar {
  font-size: 14px;
  background: var(--secondary);
  color: var(--text);
}
.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 6px 16px;
  gap: 8px;
}
.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a {
  color: var(--text);
  font-weight: 600;
}

nav { padding: 10px 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-weight: 800;
  font-size: 19px;
  color: var(--primary-dark);
}
.logo span {
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}
.nav-links a {
  padding: 4px 0;
  position: relative;
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(0,0,0,0.1);
}
.btn-outline:hover { background: var(--secondary); }

.hero {
  background: radial-gradient(circle at top left, #ffeef4, #ffffff);
  padding: 32px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(194,24,91,0.08);
  color: var(--primary-dark);
}
.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4caf50;
}
.hero h1 {
  font-size: 28px;
  margin: 12px 0 8px;
  color: var(--primary-dark);
}
.hero h2 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}
.hero p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta strong { color: var(--text); }

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,0.03);
}
.hero-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--primary-dark);
}
.hero-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}
.hero-card ul {
  margin: 0;
  padding-right: 18px;
  font-size: 13px;
  color: var(--text);
}

/* تصویر سکشن هِرو */
.hero-image-wrapper {
  grid-column: 1 / -1;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section { padding: 32px 0; }
.section:nth-of-type(even) { background: var(--bg-light); }
.section-header {
  margin-bottom: 20px;
  text-align: right;
}
.section-title {
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--primary-dark);
}
.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.grid-courses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.course-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.course-tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.course-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--text);
}
.course-card p {
  font-size: 13px;
  margin: 0 0 10px;
  color: var(--muted);
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.course-actions a { font-size: 13px; }
.course-actions .btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}

/* FIX: تصویر/ویدیو داخل کارت (یک تعریف نهایی، بدون تناقض) */
.course-image{
  width: calc(100% + 28px);
  margin: -14px -14px 10px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.course-image img,
.course-image video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  outline: none;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.badge-list span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  border: 1px solid var(--border);
}
.benefit-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--text);
}
.benefit-card p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-box {
  background: #ffffff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 18px 18px 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: center;
}
.contact-box h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--primary-dark);
}
.contact-box p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}
.contact-info { font-size: 14px; }
.contact-info p { margin: 3px 0; }
.contact-info strong { color: var(--text); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  overflow: hidden;
  background: #ffffff;
}
.faq-q {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-q span { font-weight: 600; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 14px;
  font-size: 13px;
  color: var(--muted);
}
.faq-item.active .faq-a {
  padding-top: 0;
  padding-bottom: 10px;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-toggle {
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.2s ease;
}

footer {
  background: #111111;
  color: #f1f1f1;
  padding: 20px 0 14px;
  margin-top: 24px;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-inner a { color: #f1f1f1; }
.footer-contact p { margin: 2px 0; }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-social a { font-weight: 600; }
.footer-copy {
  text-align: center;
  margin-top: 8px;
  color: #aaaaaa;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; }

.scroll-top {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-btn {
  display: none;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =========================================
   4. ریسپانسیو
   ========================================= */

/* تیترهای طلایی روی موبایل (بهتر: هدف‌گیری دقیق‌تر، ولی نسخه شما را نگه داشتیم) */
@media (max-width: 768px) {
  .th-about h2,
  .th-courses h2,
  .th-gallery h2,
  .th-services h2,
  .th-testimonials h2,
  .th-service-card h3,
  .th-stats h3,
  .th-wrapper h2,
  .th-wrapper h3 {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
    line-height: 1.4 !important;
    word-wrap: break-word;
  }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-courses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-box { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    padding: 10px 16px 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    flex-direction: column;
  }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 640px) {
  .grid-courses { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 20px; }

  /* FIX: محدود به سکشن‌ها، نه کل سایت */
  .section p,
  .section li,
  .section a,
  .hero p,
  .hero a {
    font-size: clamp(1rem, 3.4vw, 1.12rem);
  }
}

/* =========================================
   5. GRID FIX – BLOCKSY (بدون !important های مخرب)
   ========================================= */

/* اگر Blocksy display/grid را override می‌کند، این بخش کمک می‌کند
   (بدون قفل کردن ستون‌ها در همه سایزها) */
.container .grid-courses{
  display: grid;
  gap: 24px;
  width: 100%;
}

@media (min-width: 961px){
  .container .grid-courses{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 960px){
  .container .grid-courses{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .container .grid-courses{
    grid-template-columns: 1fr;
  }
}

.grid-courses > * { min-width: 0; }
/* =========================================================
   ARTICLE PRO 2025 – قالب جهانی مقالات سایت طلوع هستی
   کاملاً ایزوله | فوق مدرن | ریسپانسیو | بدون تداخل
   فقط کافیست دور محتوا بنویسی: <div class="article-pro"> ... </div>
   ========================================================= */

.article-pro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Vazirmatn', system-ui, sans-serif;
    line-height: 1.88;
    color: #2d2d2d;
    direction: rtl;
}

.article-pro * { box-sizing: border-box; }

/* تیتر اصلی مقاله */
.article-pro h1,
.article-pro .article-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    text-align: center;
    color: #9e6b6f;
    margin: 60px 0 40px;
    position: relative;
}
.article-pro h1::after,
.article-pro .article-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4a8a8, #9e6b6f);
    display: block;
    margin: 20px auto 0;
    border-radius: 4px;
}

/* تیترهای داخلی */
.article-pro h2 {
    font-size: 26px;
    font-weight: 700;
    color: #9e6b6f;
    text-align: center;
    margin: 70px 0 30px;
    position: relative;
}
.article-pro h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e2b7bb, #b98589);
    display: block;
    margin: 16px auto 0;
    border-radius: 3px;
}

/* پاراگراف‌ها */
.article-pro p {
    font-size: 18px;
    margin: 24px 0;
    color: #333;
}
.article-pro strong {
    color: #9e6b6f;
    font-weight: 600;
}

/* تصاویر تمام‌عرض لوکس */
.article-pro .img-full {
    width: 100%;
    border-radius: 28px;
    margin: 65px 0;
    box-shadow: 0 30px 70px rgba(0,0,0,0.14);
    transition: all .6s ease;
    overflow: hidden;
}
.article-pro .img-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}
.article-pro .img-full:hover img {
    transform: scale(1.04);
}

/* ویدیو تمام‌عرض خیره‌کننده */
.article-pro .video-full {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 32px;
    margin: 80px 0;
    box-shadow: 0 35px 80px rgba(0,0,0,0.20);
}
.article-pro .video-full video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* لیست‌های شیک */
.article-pro ol,
.article-pro ul {
    background: linear-gradient(135deg, #fdf8f9, #fefafb);
    padding: 45px 50px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 50px rgba(212,168,168,0.14);
    font-size: 18px;
    backdrop-filter: blur(10px);
}
.article-pro li {
    margin: 22px 0;
    padding-right: 12px;
    position: relative;
}
.article-pro li::marker {
    color: #c79a9f;
    font-weight: bold;
}

/* خط جداکننده ظریف */
.article-pro hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #deb8bb, transparent);
    margin: 100px 0;
}

/* باکس تماس / نهایی – خیلی لوکس */
.article-pro .final-box {
    background: linear-gradient(135deg, #9e6b6f 0%, #c79a9f 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 34px;
    text-align: center;
    margin: 100px 0 40px;
    box-shadow: 0 30px 80px rgba(158,107,111,0.35);
}
.article-pro .final-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
}
.article-pro .final-box p {
    font-size: 19px;
    margin: 18px 0;
    color: #fff;
}
.article-pro .final-box a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    font-size: 20px;
    transition: all .3s;
}
.article-pro .final-box a:hover {
    color: #ffebef;
}

/* ریسپانسیو کامل و زیبا */
@media (max-width: 868px) {
    .article-pro { padding: 0 18px; }
    .article-pro h1, .article-pro .article-title { margin: 50px 0 30px; font-size: 28px; }
    .article-pro h2 { font-size: 24px; margin: 60px 0 25px; }
    .article-pro p { font-size: 17px; }
    .article-pro ol, .article-pro ul { padding: 35px 30px; border-radius: 24px; }
    .article-pro .img-full { border-radius: 22px; margin: 50px 0; }
    .article-pro .video-full { border-radius: 24px; margin: 60px 0; }
    .article-pro .final-box { padding: 50px 30px; border-radius: 28px; }
    .article-pro .final-box h3 { font-size: 23px; }
}

@media (max-width: 480px) {
    .article-pro p,
    .article-pro li { font-size: 16.5px; }
    .article-pro ol, .article-pro ul { padding: 30px 25px; }
    .article-pro .final-box p { font-size: 17.5px; }
}
.course-actions { margin-top: auto; }