/* Start custom CSS for html, class: .elementor-element-15d459a */.btj-sport-hero {
  direction: rtl;
  font-family: "Anjoman", Tahoma, sans-serif !important;
  container-type: inline-size;
  margin: 2rem auto 6rem;
}

.btj-sport-hero-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* header: eyebrow pill + title */
.btj-sport-hero-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* eyebrow pill */
.btj-sport-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: #ffedda;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
}

/* small green dot */
.btj-sport-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86A789;
}

/* main title */
.btj-sport-h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  color: #1e293b;
  margin-top: 0.7rem;
  margin-bottom: 0;
  font-weight: 800;
}

@media (min-width: 992px) {
  .btj-sport-h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* grid: text + image */
.btj-sport-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* text column */
.btj-sport-content {
  text-align: right;
}

.btj-sport-lead {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 1.8rem;
}

.btj-sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.btj-sport-tag {
  background: rgba(134, 167, 137, 0.1);
  color: #2d4a32;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(134, 167, 137, 0.25);
}

.btj-sport-meta {
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.btj-sport-dot-sep {
  color: #cbd5e1;
}

/* image column */
.btj-sport-media {
  position: relative;
}

.btj-sport-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
  transform: translateZ(0);
}

.btj-sport-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.btj-sport-image:hover {
  transform: scale(1.03) translateY(-4px);
}

.btj-sport-caption {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* animation */
.btj-sport-hero-header > *,
.btj-sport-content > *,
.btj-sport-media > * {
  opacity: 0;
  animation: btj-sport-fadeInUp 0.9s ease forwards;
}

.btj-sport-eyebrow { animation-delay: 0.1s; }
.btj-sport-h1      { animation-delay: 0.25s; }
.btj-sport-lead    { animation-delay: 0.4s; }
.btj-sport-tags    { animation-delay: 0.55s; }
.btj-sport-meta    { animation-delay: 0.7s; }
.btj-sport-media   { animation-delay: 0.85s; }

@keyframes btj-sport-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 960px) {
  .btj-sport-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .btj-sport-content {
    text-align: center;
  }

  .btj-sport-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .btj-sport-hero {
    margin: 1.5rem auto 4.5rem;
  }

  .btj-sport-image-wrapper {
    border-radius: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-775bfa7 */.btj-blog-benefits {
  direction: rtl;
  font-family: "Anjoman", Tahoma, sans-serif !important;
  max-width: 1240px;
  margin: 4.5rem auto;
  padding: 0 1rem;
}

.btj-blog-benefits-wrapper {
  text-align: center;
}

/* heading */
.btj-benefits-h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 800;
}

.btj-benefits-lead {
  font-size: 0.98rem;
  color: #475569;
  max-width: 780px;
  margin: 0 auto 2.8rem;
  line-height: 1.9;
}

/* grid */
.btj-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}

/* cards */
.btj-benefit-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.9rem 1.6rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(134, 167, 137, 0.18);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: btj-benefits-fadeUp 0.8s forwards;
}

.btj-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 52px rgba(134, 167, 137, 0.22);
  border-color: #86A789;
}

/* number circle */
.btj-benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #86A789, #6f8f71);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 24px rgba(134, 167, 137, 0.4);
}

/* card text */
.btj-benefit-title {
  font-size: 1.06rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.7rem;
}

.btj-benefit-desc {
  font-size: 0.96rem;
  color: #525252;
  line-height: 1.85;
}

/* staggered animation */
.btj-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.btj-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.btj-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.btj-benefit-card:nth-child(4) { animation-delay: 0.4s; }
.btj-benefit-card:nth-child(5) { animation-delay: 0.5s; }
.btj-benefit-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes btj-benefits-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* bottom note */
.btj-benefits-note {
  background: linear-gradient(135deg, #f8fdf6 0%, #ffffff 100%);
  padding: 1.6rem 2rem;
  border-radius: 22px;
  border: 1px solid rgba(134, 167, 137, 0.22);
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #2d4a32;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

/* responsive */
@media (max-width: 1024px) {
  .btj-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .btj-blog-benefits {
    margin: 4.2rem auto;
  }

  .btj-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .btj-benefits-note {
    padding: 1.4rem 1.3rem;
    font-size: 0.94rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bfa5f6b */.btj-principles-new {
  direction: rtl;
  font-family: "Anjoman", Tahoma, sans-serif !important;
  max-width: 1100px;
  margin: 4.8rem auto;
  padding: 0 1rem;
  text-align: center;
}

/* heading */
.btj-principles-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: #1e293b;
  margin: 0 0 0.9rem 0;
  font-weight: 800;
}

.btj-principles-subtitle {
  font-size: 0.98rem;
  color: #475569;
  max-width: 760px;
  margin: 0 auto 2.6rem;
  line-height: 1.9;
}

/* list wrapper */
.btj-principles-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

/* item card */
.btj-principle-item {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.9rem 1.8rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(134, 167, 137, 0.22);
  position: relative;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(26px);
  animation: btj-principles-fadeUp 0.8s forwards;
}

.btj-principle-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(134, 167, 137, 0.22);
  border-color: #86A789;
}

/* header inside card */
.btj-p-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.btj-p-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #86A789, #6f8f71);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(134, 167, 137, 0.5);
}

.btj-p-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  text-align: right;
}

.btj-p-text {
  font-size: 0.96rem;
  color: #525252;
  line-height: 1.9;
  margin: 0;
  text-align: right;
}

/* final highlight box */
.btj-principles-final {
  margin-top: 2.8rem;
  padding: 1.5rem 1.7rem;
  background: linear-gradient(135deg, #f8fdf6 0%, #ffffff 100%);
  border-radius: 20px;
  border: 1px solid rgba(134, 167, 137, 0.25);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.btj-principles-final p {
  font-size: 1rem;
  color: #2d4a32;
  margin: 0;
  font-weight: 700;
}

/* animation */
.btj-principle-item:nth-child(1) { animation-delay: 0.1s; }
.btj-principle-item:nth-child(2) { animation-delay: 0.2s; }
.btj-principle-item:nth-child(3) { animation-delay: 0.3s; }
.btj-principle-item:nth-child(4) { animation-delay: 0.4s; }
.btj-principle-item:nth-child(5) { animation-delay: 0.5s; }
.btj-principle-item:nth-child(6) { animation-delay: 0.6s; }
.btj-principle-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes btj-principles-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 640px) {
  .btj-principles-new {
    margin: 4.2rem auto;
  }

  .btj-principle-item {
    padding: 1.8rem 1.4rem;
  }

  .btj-p-header {
    flex-direction: column;
    text-align: center;
    gap: 0.7rem;
  }

  .btj-p-title,
  .btj-p-text {
    text-align: center;
  }

  .btj-principles-final {
    padding: 1.4rem 1.2rem;
  }

  .btj-principles-final p {
    font-size: 0.94rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-53f0449 */.btj-sport-final {
  direction: rtl;
  font-family: "Anjoman", Tahoma, sans-serif !important;
  margin: 5rem auto;
  padding: 0 1rem;
}

.btj-sport-final-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.btj-sport-final-section {
  background: #ffffff;
  border-radius: 32px;
  padding: 3rem 2.7rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.06);
}

/* TEXT LEFT — CARD RIGHT */
.btj-sport-final-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* -------------------------------- TEXT -------------------------------- */

.btj-sport-final-content {
  text-align: right;
}

.btj-sport-final-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.3rem;
}

.btj-sport-final-text {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.btj-sport-final-text-strong {
  font-weight: 700;
  color: #1e293b;
}

.btj-sport-final-strip {
  background: #fff4e7;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255,140,60,0.3);
  text-align: center;
  color: #b45309;
  font-size: 0.95rem;
}

/* -------------------------------- CARD -------------------------------- */

.btj-sport-final-card {
  background: #f6faf6;
  border-radius: 26px;
  padding: 2rem 1.8rem;
  border: 1.5px solid rgba(134,167,137,0.3);
  box-shadow: 0 18px 40px rgba(134,167,137,0.18);
}

.btj-sport-final-card-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.btj-sport-final-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.btj-sport-final-btn {
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.btj-sport-final-btn-primary {
  background: #86A789;
  color: #fff;
  box-shadow: 0 10px 28px rgba(134,167,137,0.45);
}

.btj-sport-final-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(134,167,137,0.6);
}

.btj-sport-final-btn-secondary {
  background: #ffffff;
  border: 1.6px solid #86A789;
  color: #374151;
}

.btj-sport-final-btn-secondary:hover {
  background: #eef7ef;
}

.btj-sport-final-card-note {
  font-size: 0.9rem;
  text-align: center;
  color: #6b7280;
}

/* -------------------------------- RESPONSIVE -------------------------------- */

@media (max-width: 900px) {
  .btj-sport-final-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .btj-sport-final-content {
    order: -1; /* متن بیاید بالا */
    text-align: center;
  }

  .btj-sport-final-title {
    text-align: center;
  }
}/* End custom CSS */