/* Social label under icon */
.social-label {
  font-size: 0.85rem;
  /* Reduced from 1.1rem */
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-bs {
  height: 100vh;
  min-height: 320px;
}

.hero-bs__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

.hero-bs__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(0, 140, 27, 0.85) 0%,
      rgba(0, 140, 27, 0.65) 40%,
      rgba(137, 91, 0, 0.55) 100%);
}

.hero-bs__title {
  color: #ffb41e;
}

.hero-bs__title,
.hero-bs__text {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease-out forwards;
}

.hero-bs__text {
  animation-delay: 0.12s;
  color: #ffffff;
  font-weight: 400;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

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

.values-section {
  overflow-x: hidden;
}

/* ====== VALUES SECTION ====== */
.values-title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  color: #111;
}

.values-sub {
  max-width: 720px;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.8;
}

/* Card */
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 140, 27, 0.22);
  border-radius: 12px;
  padding-bottom: 22px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.value-media {
  padding: 14px 14px 0 14px;
}

.value-media img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ====== FIGMA ICON STYLE ====== */
/* مكان الأيقونة بين الصورة والكارد */
.value-icon-wrap {
  width: 96px;
  height: 96px;
  margin: -48px auto 10px;
  /* يطلع نصفه فوق الصورة */
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

/* الحلقة الخارجية البيضاء */
.value-icon-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
}

/* dashed stroke حول الحلقة */
.value-icon-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  /* قريب من الحافة */
  border-radius: 50%;
  border: 2px dashed rgba(0, 140, 27, 0.35);
}

/* الدائرة الداخلية بالـ gradient */
.value-icon-fill {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(90deg, #008c1b 0%, #d7a100 100%);
  display: grid;
  place-items: center;
}

/* الأيقونة نفسها (يفضل تكون بيضاء SVG) */
.value-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  /* يخلي PNG/ SVG غامقة تصير بيضا */
}

/* Text */
.value-body {
  text-align: center;
  padding: 0 16px;
}

.value-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.value-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #6b6b6b;
  margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .value-media img {
    height: 165px;
  }

  .value-icon-wrap {
    width: 90px;
    height: 90px;
    margin-top: -45px;
  }

  .value-icon-fill {
    width: 68px;
    height: 68px;
  }
}

/*  Player Community Section  */
.community-join {
  background: #e6f1dc;
}

.community-join__title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  color: #111;
}

.community-join__sub {
  max-width: 720px;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.8;
}

.community-join__follow {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111;
  margin-top: 80px;
  letter-spacing: -0.5px;
}

/* العمود اللي فيه الكرتين */
.community-join .row.justify-content-center>div {
  position: relative;
  padding-top: 150px;
}

/* Card */
.community-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  padding: 72px 26px 22px;
  overflow: visible;
  z-index: 1;
}

.community-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.community-card__text {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 420px;
}

/* Buttons */
.community-btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 10px 14px;
  font-size: 14px;
}

.community-btn--primary {
  background: #0b7a1a;
  border: 1px solid #0b7a1a;
  color: #fff;
}

.community-btn--primary:hover {
  background: #0a6b17;
  border-color: #0a6b17;
  color: #fff;
}

.community-btn--muted {
  background: #dfe6d8;
  border: 1px solid #dfe6d8;
  color: #ffffff;
}

.community-btn--muted:hover {
  background: #d3dccb;
  border-color: #d3dccb;
  color: #555;
}

/*  Badge  */
.community-badge {
  width: 140px;
  height: 140px;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

.community-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 138px;
  /* تبدأ من تحت الدائرة */
  transform: translateX(-50%);
  width: 44px;
  /* عرض عام للساق */
  height: 40px;
  /* طول الساق */
  background: #fff;
  /* شكل ساق نبتة: تضييق فوق وتوسيع تحت */
  clip-path: polygon(36% 0%, 64% 0%, 82% 100%, 18% 100%);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.1);
  z-index: 1;
  /* تحت الدائرة وفوق الخلفية */
}

.badge-fill {
  width: 110px;
  height: 110px;
}

.badge-icon {
  width: 54px;
  height: 54px;
}

.badge-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
}

.badge-ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(11, 122, 26, 0.45);
}

.badge-fill {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0b7a1a;
  display: grid;
  place-items: center;
}

.badge-fill--light {
  background: #fff;
  border: 2px solid rgba(11, 122, 26, 0.22);
}

.badge-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.badge-icon--green {
  filter: none;
}

/* ===== Social gradient circles ===== */
.social-grad {
  width: 48px;
  /* Reduced from 60px */
  height: 48px;
  /* Reduced from 60px */
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  /* Reduced from 2rem */

  background: linear-gradient(90deg, #008c1b 0%, #d7a100 100%);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.social-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
  .community-card {
    padding: 54px 18px 18px;
  }

  .community-badge {
    width: 86px;
    height: 86px;
    top: -43px;
  }

  .badge-fill {
    width: 62px;
    height: 62px;
  }
}

/* New Community Design Styles */
.community-cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 140px;
  /* Increased from 100px */
  flex-wrap: wrap;
}

.community-card-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  position: relative;
}

.community-card-new {
  background: #f8faf7;
  border-radius: 20px;
  padding: 60px 30px 25px;
  /* Reduced padding to make card more compact */
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 80px;
  /* Increased margin-top to lower the card */
  position: relative;
  /* Ensure it's a stacking context */
  z-index: 10;
}

.community-badge-new {
  position: absolute;
  top: -85px;
  /* Raised upward further */
  left: 50%;
  transform: translateX(-50%);
  /* Remove z-index to let children stack relative to outer elements */
}

.badge-ring-dashed {
  width: 140px;
  /* Slightly larger */
  height: 140px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.badge-ring-dashed::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px dashed #008c1b;
  border-radius: 50%;
}

.badge-icon-circle {
  width: 105px;
  /* Slightly larger */
  height: 105px;
  border-radius: 50%;
  background: #008c1b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 50px;
  position: relative;
  z-index: 21;
}

.badge-icon-circle.muted {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #008c1b;
}

.badge-stem {
  width: 44px;
  /* Wider stem as per design */
  height: 45px;
  /* Taller stem to bridge the gap */
  background: #f8faf7;
  /* Match card background */
  margin: 0 auto;
  clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
  margin-top: -2px;
  /* Slight overlap with the ring above */
  position: relative;
  z-index: 5;
}

.community-card-new h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.community-card-new p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.community-action-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.community-action-btn.btn-discord {
  background: #008c1b;
  color: #fff;
}

.community-action-btn.btn-forum {
  background: #d9e2d5;
  color: #fff;
}

.community-action-btn.btn-discord:hover {
  background: #007716;
  color: #fff;
}

.community-action-btn.btn-forum:hover {
  background: #008c1b;
  color: #fff;
}

.community-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .community-cards-row {
    gap: 120px;
    /* Increased to prevent badge overlap when stacked */
  }
}

.community-join {
  position: relative;
  overflow: hidden;
}

/* ===== Lantern Decorations ===== */
.story-lantern {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* Right small */
.lantern-right {
  right: -10px;
  top: 6%;
  width: 45px;
}

/* Left small */
.lantern-left {
  left: -20px;
  bottom: 33%;
  width: 80px;
}

/* Right big (top) */
.lantern-top {
  right: 0;
  top: 25%;
  width: 50px;
}

/* Left big (bottom) */
.lantern-bottom {
  left: -10px;
  bottom: 0;
  width: 110px;
}

.community-join .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .story-lantern {
    width: 70px;
  }

  .lantern-top,
  .lantern-bottom {
    width: 130px;
  }
}

@media (max-width: 576px) {
  .story-lantern {
    display: none;
    /* نخفيهم على الموبايل */
  }
}

/* ------------------------------------ */
/* =========================
   PLAYER STORIES SECTION
========================= */
.player-stories {
  background: #ffffff;
  padding: 60px 0;
}

/* Right text */
.stories-label {
  color: #0d8a2f;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
  margin: 0;
}

.stories-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  margin: 0;
}

.stories-desc {
  color: #777;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

/* Dots */
.stories-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d9d9d9;
  cursor: pointer;
  transition: 0.25s ease;
  padding: 0;
}

.stories-dots .dot.active {
  background: #0d8a2f;
  transform: scale(1.15);
}

/* Slider layout */
.stories-slider {
  overflow: hidden;
  width: 100%;
}

.stories-track {
  display: flex;
  width: 200%;
  /* 2 slides */
  transition: transform 0.5s ease;
  /* Important: prevent weird gaps */
  will-change: transform;
}

.story-slide {
  width: 50%;
  /* 2 slides */
  padding: 10px;
  box-sizing: border-box;
}

/* Card */
.story-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-height: 220px;
  overflow: hidden;
}

/* Stars */
.story-card .stars {
  color: #0d8a2f;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Text */
.story-text {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* User area */
.story-user {
  margin-top: 16px;
}

.story-name {
  font-weight: 800;
  color: #111;
  font-size: 14px;
}

.story-role {
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}

/* TESTIMONIALS */
/* PLAYER STORIES */
.player-stories {
  background: #fff;
  overflow-x: hidden;
}

/* Right text */
.stories-label {
  color: #1b8f2a;
  /* أخضر */
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.stories-title {
  color: #111;
  font-weight: 800;
  line-height: 1.4;
  font-size: clamp(22px, 2.2vw, 32px);
}

.stories-desc {
  color: #8a8a8a;
  line-height: 1.9;
  font-size: 15px;
  max-width: 380px;
}

/* Dots */
.stories-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #d9d9d9;
  padding: 0;
}

.stories-dots .dot.active {
  background: #1b8f2a;
}

/* Card */
.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px 18px 18px;
  /* Adjusted for compact look */
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 240px;
  max-width: 95%;
  /* Added for compact look */
  font-size: 0.97rem;
  /* Added for compact look */
}

/* Stars */
.testimonial-stars i {
  color: #1b8f2a;
  font-size: 14px;
  margin-left: 3px;
  /* RTL */
}

/* Text */
.testimonial-text {
  color: #8a8a8a;
  line-height: 1.9;
  font-size: 14px;
  margin: 0;
}

/* Bottom meta */
.testimonial-name {
  color: #111;
  font-weight: 800;
  font-size: 14px;
}

.testimonial-role {
  color: #9a9a9a;
  font-size: 12px;
  margin-top: 2px;
}

.testimonial-bottom {
  transform: translate(-25px, -27px);
}

/* Avatar with dotted ring */
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px dashed #1b8f2a;
  padding: 3px;
  flex: 0 0 auto;
  margin-top: -180px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

/* Grass image at bottom */
.testimonial-grass {
  position: absolute;
  left: -30px;
  right: 0;
  bottom: 0;
  width: 120%;
  height: 350px;
  pointer-events: none;
}

/* CTA SECTION */
.cta-section {
  margin-top: 100px;
  margin-bottom: -75px;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

.cta-box {
  background: #008c1b;
  border-radius: 18px;
  padding: 50px 45px;
  position: relative;
  overflow: visible;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 210px;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.cta-section.section-visible .cta-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../imgs/pattern.webp");
  opacity: 0.07;
  pointer-events: none;
}

.cta-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 220px;
  background: url("../imgs/cta-pattern.webp") no-repeat right bottom;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.cta-content,
.cta-image,
.cta-icon {
  position: relative;
  z-index: 2;
}

.cta-pattern {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 480px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  max-width: 480px;
  z-index: 2;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.cta-section.section-visible .cta-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.cta-title {
  font-weight: 800;
  font-size: 26px;
  padding-right: 15px;
}

.btn-cta {
  position: relative;
  overflow: hidden;
  background: #e7b900;
  color: #fff;
  border-radius: 12px;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
  transition: left 0.2s ease;
}

.btn-cta:hover {
  background: #d4a800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.btn-cta:hover::before {
  left: 120%;
}

.btn-cta-green {
  background-color: #d1f4b6;
  color: #008c1b;
}

/* image */
.cta-image {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.cta-section.section-visible .cta-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.cta-image img {
  width: 290px;
  max-width: none;
  position: absolute;
  top: -170px;
  left: -40px;
  z-index: 10;
}

[dir="ltr"] .cta-image img {
  left: auto !important;
  right: -40px !important;
}

[dir="ltr"] .cta-icon {
  left: auto !important;
  right: 300px !important;
}

.cta-icon {
  position: absolute;
  left: 270px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid #e6f5ec;
  opacity: 0;
  transition: opacity 1s ease;
}

.cta-section.section-visible .cta-icon {
  opacity: 1;
  transition-delay: 1.1s;
}

.cta-icon img {
  width: 28px;
}

.cta-icon :hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* =========================
   BREAKPOINTS
   ========================= */

/* Tablets & Medium Screens (Specific Range) */
@media (min-width: 768px) and (max-width: 991px) {
  .cta-box {
    padding: 30px 40px;
    margin-top: 150px;
    min-height: 250px;
    width: 100%;
    /* Ensures it fills container width */
  }

  .cta-content {
    max-width: 55%;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
  }

  /* Default (Arabic/RTL) positions: Girl on left, Icon on left */
  .cta-image img {
    width: 280px;
    top: -160px;
    left: -40px;
    right: auto !important;
  }

  .cta-icon {
    width: 48px;
    height: 48px;
    left: 255px !important;
    right: auto !important;
    top: 50%;
    transform: translateY(-50%);
  }

  /* LTR (English) positions: Girl on right, Icon on right */
  [dir="ltr"] .cta-image img {
    left: auto !important;
    right: -40px !important;
  }

  [dir="ltr"] .cta-icon {
    left: auto !important;
    right: 255px !important;
  }

  .cta-icon img {
    width: 20px;
  }
}

/* Mobile Screens (Specific Range 368px-767px) */
@media (min-width: 368px) and (max-width: 767px) {
  .cta-box {
    padding: 20px 25px;
    margin-top: 100px;
    min-height: 200px;
    text-align: left;
  }

  .cta-content {
    max-width: 65%;
  }

  .cta-title {
    font-size: 16px;
    margin-bottom: 8px !important;
  }

  .cta-content p {
    font-size: 12px;
    margin-bottom: 12px !important;
    line-height: 1.4;
  }

  /* Buttons scale down */
  .btn-cta {
    padding: 6px 12px !important;
    font-size: 11px !important;
  }

  /* Default (Arabic/RTL) positions: Girl on left, Text on right-ish */
  .cta-image img {
    width: 185px;
    /* Increased from 160px */
    top: -100px;
    left: -45px;
    /* Moved further towards the left edge */
    right: auto !important;
    transform: none;
  }

  /* LTR (English) positions: Girl on right, Text on left */
  [dir="ltr"] .cta-image img {
    left: auto !important;
    right: -45px !important;
    /* Moved further towards the right edge */
  }

  .cta-icon {
    display: none;
  }
}

/* Player Stories Mobile Refinements (< 576px) */
@media (max-width: 576px) {

  .stories-label,
  .stories-title,
  .stories-desc,
  .stories-dots {
    padding-left: 20px;
  }

  .testimonial-card {
    margin-left: 18px;
  }
}

/* Tiny Mobile (< 368px) */
@media (max-width: 368px) {
  .cta-title {
    font-size: 16px !important;
  }

  .cta-content p {
    font-size: 12px !important;
  }

  .btn-cta {
    font-size: 10px !important;
    padding: 6px 10px !important;
  }
}

/* Ultra Mobile (< 400px) */
@media (max-width: 400px) {
  .cta-box {
    padding: 25px 15px;
    margin-top: 50px;
    text-align: center !important;
  }

  .cta-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-content .d-flex {
    justify-content: center !important;
  }

  .cta-title {
    font-size: 18px;
  }

  .cta-image {
    display: none;
  }

  .cta-icon {
    display: none;
  }
}