
.csa-workshop-syllabus-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid #e2e8f0;
  max-width: 800px;
  margin: 0 auto 50px;
}

.csa-workshop-syllabus-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(16,185,129,0.18), 0 10px 25px rgba(14,165,233,0.12);
  border-color: #10b981;
}

.csa-workshop-syllabus-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #0ea5e9, #10b981);
  transition: height 0.5s ease;
}

.csa-workshop-syllabus-card:hover::after {
  height: 100%;
}

.csa-workshop-syllabus-header {
  padding: 28px 28px 16px;
  background: linear-gradient(to bottom, #f8fafc, white);
  border-bottom: 1px solid #e2e8f0;
}

.csa-workshop-syllabus-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.csa-workshop-syllabus-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.9rem;
  box-shadow: 0 8px 16px rgba(16,185,129,0.35);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.csa-workshop-syllabus-card:hover .csa-workshop-syllabus-icon-wrapper {
  transform: scale(1.12) rotate(8deg);
}

.csa-workshop-syllabus-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.csa-workshop-syllabus-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.csa-workshop-syllabus-duration,
.csa-workshop-syllabus-level {
  font-size: 0.98rem;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.csa-workshop-syllabus-duration {
  background: #e0f7fa;
  color: #0ea5e9;
}

.csa-workshop-syllabus-level-beginner {
  background: #ecfdf5;
  color: #10b981;
}

.csa-workshop-syllabus-body {
  padding: 0 28px 28px;
}

.csa-workshop-syllabus-description p {
  font-size: 1.05rem;
  color: #475569;
  margin: 20px 0;
}

.csa-workshop-syllabus-subtopics {
  margin-top: 24px;
}

.csa-workshop-syllabus-subtopic-title {
  font-size: 1.12rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 14px;
}

.csa-workshop-syllabus-subtopic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.csa-workshop-syllabus-subtopic-list li {
  font-size: 1.02rem;
  color: #475569;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 8px;
}

.csa-workshop-syllabus-subtopic-list li:hover {
  background: #f0fdfa;
  color: #0f766e;
  transform: translateX(6px);
}

.csa-workshop-syllabus-subtopic-list i {
  color: #10b981;
  font-size: 1.25rem;
  transition: all 0.35s ease;
}

.csa-workshop-syllabus-subtopic-list li:hover i {
  transform: scale(1.4) rotate(20deg);
/*   color: #0ea5e9; */
}

.csa-workshop-syllabus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.csa-workshop-syllabus-tag {
  font-size: 0.92rem;
  padding: 8px 16px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 30px;
  font-weight: 500;
  transition: transform 0.25s ease;
}

.csa-workshop-syllabus-card:hover .csa-workshop-syllabus-tag {
  transform: scale(1.06);
}




/* فقط برای سکشن csa-workshop-method */
#csa-workshop-method-section {
  --csa-wm-main-teal: #2B908E;
  --csa-wm-dark-teal: #0A5A55;
  --csa-wm-accent-red: #E63946;
  --csa-wm-accent-cyan: #48CAE4;
  --csa-wm-accent-blue: #023E8A;

  --csa-wm-bg-primary: #0A5A55;
  --csa-wm-bg-secondary: #024046;
  --csa-wm-bg-card: rgba(3, 69, 72, 0.85);
  --csa-wm-text-primary: #f8fafc;
  --csa-wm-text-secondary: #dbeafe;
  --csa-wm-text-muted: #b0c4de;

  --csa-wm-gradient-main: linear-gradient(135deg, #2B908E, #48CAE4);
  --csa-wm-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.45);
  --csa-wm-transition: all 0.3s ease;
  color: var(--csa-wm-text-primary);
  direction: rtl;
  text-align: right;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Hero section */
.csa-workshop-method-hero-section {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--csa-wm-bg-primary);
}

/* Background grid */
.csa-workshop-method-code-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  opacity: 0.12;
  animation: csa-workshop-method-gridMove 22s linear infinite;
}

@keyframes csa-workshop-method-gridMove {
  to { transform: translate(60px, 60px); }
}

/* Container */
.csa-workshop-method-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.csa-workshop-method-hero-content { z-index: 1; }

/* Greeting */
.csa-workshop-method-hero-greeting {
  font-size: 1.1rem;
  color: var(--csa-wm-accent-cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.csa-workshop-method-greeting-cursor {
  animation: csa-workshop-method-blink 1s infinite;
  color: var(--csa-wm-accent-cyan);
}

@keyframes csa-workshop-method-blink {
  0%,50% { opacity:1; }
  51%,100% { opacity:0; }
}

/* Name */
.csa-workshop-method-hero-name {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.csa-workshop-method-name-value {
  background: var(--csa-wm-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.csa-workshop-method-hero-description {
  font-size: 1.05rem;
  color: var(--csa-wm-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  max-width: 560px;
}

/* Image */
.csa-workshop-method-hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.csa-workshop-method-hero-image-container {
  position: relative;
  width: 340px;
  height: 340px;
}

.csa-workshop-method-profile-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #48CAE4 0%, #0A5A55 45%, #023E8A 100%);
  box-shadow: 0 0 30px rgba(4,84,88,0.6),0 0 80px rgba(2,62,125,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.csa-workshop-method-profile-placeholder {
  font-size: 5rem;
  color: #fff;
  opacity: 0.75;
}

/* Badges */
.csa-workshop-method-floating-badge {
  position: absolute;
  background: rgba(3,49,58,0.95);
  border: 1px solid rgba(72,202,228,0.4);
  border-radius: 16px;
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--csa-wm-shadow-md);
  backdrop-filter: blur(14px);
  min-width: 190px;
  animation: csa-workshop-method-floatBadge 6s ease-in-out infinite;
  color: var(--csa-wm-text-primary);
}

.csa-workshop-method-floating-badge i {
  font-size: 2rem;
  color: var(--csa-wm-accent-cyan);
}

.csa-workshop-method-badge-content { display:flex; flex-direction:column; }
.csa-workshop-method-badge-title { font-weight:700; font-size:0.98rem; }
.csa-workshop-method-badge-libs { font-size:0.8rem; opacity:0.85; }

@keyframes csa-workshop-method-floatBadge {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
}

.csa-workshop-method-badge-1 { top: 8%; left: -18%; animation-delay: 0s; }
.csa-workshop-method-badge-2 { bottom: 12%; left: -22%; animation-delay: 1.4s; }
.csa-workshop-method-badge-3 { top: 40%; right: -20%; animation-delay: 2.8s; }

@media (max-width:1024px){
  .csa-workshop-method-hero-container{grid-template-columns:1fr;text-align:center;gap:2.5rem;}
  .csa-workshop-method-hero-image-wrapper{order:-1;margin-bottom:1rem;}
  .csa-workshop-method-hero-description{margin-inline:auto;}
  .csa-workshop-method-badge-1,
  .csa-workshop-method-badge-2,
  .csa-workshop-method-badge-3{display:none;}
}

@media (max-width:640px){
  .csa-workshop-method-hero-section{padding:3rem 0 2rem;}
  .csa-workshop-method-hero-container{padding:0 1.5rem;}
  .csa-workshop-method-hero-name{font-size:2.2rem;}
  .csa-workshop-method-hero-image-container{width:260px;height:260px;}
}


.ws-stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

/* الگوی پس‌زمینه نیمه‌شفاف */
.ws-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.ws-stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.ws-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* هدر بخش */
.ws-stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.ws-stats-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ws-stats-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
}

.ws-stats-subtitle {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
}

/* گرید کارت‌های آمار */
.ws-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ws-stat-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.04),
        0 5px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ws-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ws-stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

.ws-stat-card:hover::before {
    opacity: 1;
}

/* آیکن‌های رنگی متفاوت برای هر کارت */
.ws-stat-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.ws-stat-icon-1 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.ws-stat-icon-2 {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.ws-stat-icon-3 {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.ws-stat-card:hover .ws-stat-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
}

/* محتوای آمار */
.ws-stat-content {
    position: relative;
}

.ws-stat-number-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ws-stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    font-family: 'Vazirmatn', sans-serif;
    display: inline-block;
    min-width: 60px;
}

.ws-stat-text {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    display: inline-block;
    min-width: 60px;
}

.ws-stat-suffix {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    align-self: flex-start;
    margin-top: 5px;
}

.ws-stat-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.ws-stat-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* واکنش‌گرا */
@media (max-width: 992px) {
    .ws-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .ws-stats-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ws-stats-section {
        padding: 90px 0;
    }
    
    .ws-stats-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 25px;
    }
    
    .ws-stats-title {
        font-size: 2.2rem;
    }
    
    .ws-stat-number {
        font-size: 3.2rem;
    }
    
    .ws-stat-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ws-stats-title {
        font-size: 1.9rem;
    }
    
    .ws-stats-subtitle {
        font-size: 1.1rem;
    }
    
    .ws-stat-card {
        padding: 35px 25px;
    }
}



/* ========== WORKSHOP SESSIONS - FLEXIBLE ========== */
.ws-sessions-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafaff 0%, #f5f3ff 100%);
  position: relative;
}

.ws-sessions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header with counter */
.ws-sessions-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.ws-sessions-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 10px;
}

.ws-sessions-subtitle {
  font-size: 1.2rem;
  color: #6d28d9;
  font-weight: 500;
  margin-bottom: 25px;
}

.ws-sessions-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.15);
  border: 2px solid #ede9fe;
}

.ws-count-number {
  font-size: 2rem;
  font-weight: 900;
  color: #7c3aed;
  line-height: 1;
}

.ws-count-label {
  font-size: 1.1rem;
  color: #4f46e5;
  font-weight: 600;
}

/* Grid layout - auto adjust based on content */
.ws-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

/* Session Card - CORE COMPONENT */
.ws-session-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ws-session-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #e2e8f0;
}

/* Single workshop special style */
.ws-single-workshop {
  border: 2px solid #fbbf24;
  background: linear-gradient(135deg, #fffdf6, #fff9db);
}

.ws-single-workshop .ws-number-circle {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* Session Header */
.ws-session-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #f8fafc;
  background: #fef7ff;
}

.ws-session-number {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ws-number-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.ws-session-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ws-session-duration {
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ws-session-duration i {
  color: #7c3aed;
}

.ws-session-level {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.ws-level-beginner {
  background: #dcfce7;
  color: #166534;
}

.ws-level-intermediate {
  background: #fef3c7;
  color: #92400e;
}

.ws-level-advanced {
  background: #fee2e2;
  color: #991b1b;
}

.ws-level-all {
  background: #e0f2fe;
  color: #0369a1;
}

.ws-session-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
}

/* Session Body - FLEXIBLE CONTENT */
.ws-session-body {
  padding: 20px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ws-session-description {
  margin-bottom: 25px;
  flex-grow: 1;
}

.ws-session-description p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Sub-topics (optional) */
.ws-subtopics {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border-right: 4px solid #7c3aed;
  margin-top: 20px;
}

.ws-subtopic-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-subtopic-title::before {
  content: '📋';
}

.ws-subtopic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-subtopic-list li {
  padding: 8px 0;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.ws-subtopic-list li i {
  color: #10b981;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Tags (optional) */
.ws-session-tags {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ws-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ws-tag:hover {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #bae6fd;
}

/* Summary section */
.ws-sessions-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}

.ws-summary-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ws-summary-item i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ws-summary-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.ws-summary-item p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .ws-sessions-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .ws-sessions-section {
    padding: 70px 0;
  }

  .ws-sessions-title {
    font-size: 2.3rem;
  }

  .ws-sessions-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .ws-sessions-summary {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 480px) {

  .ws-session-header,
  .ws-session-body {
    padding: 20px;
  }

  .ws-session-title {
    font-size: 1.3rem;
  }

  .ws-sessions-title {
    font-size: 2rem;
  }

  .ws-number-circle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}




.csa-topic-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 20px;
	overflow: hidden;
	text-align: center;
}

.csa-topic-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	z-index: 1;
}

.csa-topic-hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 30%, rgba(14,165,233,0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(16,185,129,0.07) 0%, transparent 60%);
	z-index: 2;
}

.csa-topic-hero-content {
	position: relative;
	z-index: 5;
	max-width: 980px;
}

.csa-topic-hero-title {
	font-size: clamp(2.8rem, 8vw, 5.2rem);
	font-weight: 600;
	line-height: 1.05;
	margin: 2rem;
	background: #2c908e;
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientFlow 12s linear infinite, fadeInScale 1.5s ease-out forwards;
}

.csa-topic-hero-subtitle {
	font-size: clamp(1.2rem, 3.2vw, 1.45rem);
	font-weight: 400;
	color: #475569;
	line-height: 1.9;
	max-width: 780px;
	margin: 0 auto;
	opacity: 0;
	animation: fadeInUp 1.4s ease-out forwards 0.6s;
}

/* انیمیشن‌ها */
@keyframes gradientFlow {
	0% { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }
}

@keyframes fadeInScale {
	from { opacity: 0; transform: scale(0.94); }
	to   { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 640px) {
	.csa-topic-hero {
		padding: 80px 16px;
		min-height: 60vh;
	}
	.csa-topic-hero-title {
		font-size: 3.4rem;
	}
	.csa-topic-hero-subtitle {
		font-size: 1.18rem;
	}
}