/* ============================================
   CAMPAÑAS PUBLICITARIAS — Page-specific Styles
   ============================================ */

    /* ─── Hero ──────────────────────────────────── */
    .ads-hero {
      background: var(--black);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .ads-hero::before {
      content: '';
      position: absolute;
      top: -160px;
      right: -120px;
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, rgba(242, 106, 27, 0.12) 0%, transparent 68%);
      pointer-events: none;
    }

    .ads-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(242, 106, 27, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .ads-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .ads-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.77rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 26px;
    }

    .ads-live-dot {
      width: 8px;
      height: 8px;
      background: #25D366;
      border-radius: 50%;
      animation: livePulse 2s infinite;
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .ads-hero h1 {
      color: var(--white);
      font-size: clamp(2.3rem, 4.8vw, 3.7rem);
      line-height: 1.08;
      margin-bottom: 22px;
    }

    .ads-hero h1 span {
      color: var(--orange);
    }

    .ads-hero-lead {
      color: rgba(255, 255, 255, 0.58);
      font-size: 1.08rem;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 530px;
    }

    .ads-hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 38px;
    }

    .ads-hero-proof {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.84rem;
    }

    .ads-proof-dots {
      display: flex;
    }

    .ads-proof-dots span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--graphite);
      border: 2px solid var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.64rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.65);
      margin-left: -8px;
    }

    .ads-proof-dots span:first-child {
      margin-left: 0;
    }

    .ads-hero-proof p {
      margin: 0;
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .ads-hero-proof strong {
      color: rgba(255, 255, 255, 0.8);
    }

    /* ─── Hero Ad Performance Visual ──────────── */
    .ads-performance {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ads-perf-header {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 16px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .ads-perf-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, rgba(242, 106, 27, 0.35) 0%, rgba(242, 106, 27, 0.15) 100%);
      border: 1px solid rgba(242, 106, 27, 0.25);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--orange);
    }

    .ads-perf-header h4 {
      color: var(--white);
      font-size: 0.86rem;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .ads-perf-header p {
      color: rgba(255, 255, 255, 0.38);
      font-size: 0.72rem;
      letter-spacing: 0.02em;
    }

    .ads-perf-live {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(37, 211, 102, 0.1);
      border: 1px solid rgba(37, 211, 102, 0.2);
      border-radius: 100px;
      padding: 3px 10px;
      color: #25D366;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Platform performance cards */
    .ads-platforms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .ads-plat-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 14px;
      text-align: center;
    }

    .ads-plat-logo {
      width: 32px;
      height: 32px;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ads-plat-name {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 10px;
    }

    .ads-plat-metric {
      margin-bottom: 8px;
    }

    .ads-plat-metric:last-child {
      margin-bottom: 0;
    }

    .ads-plat-metric-val {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
    }

    .ads-plat-metric-lbl {
      font-size: 0.6rem;
      color: rgba(255, 255, 255, 0.35);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .ads-plat-status {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.62rem;
      font-weight: 600;
      color: #22c55e;
      margin-top: 8px;
      background: rgba(34, 197, 94, 0.1);
      padding: 3px 8px;
      border-radius: 100px;
    }

    /* Mini chart bars */
    .ads-mini-chart {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 28px;
      justify-content: center;
      margin: 8px 0;
    }

    .ads-mini-bar {
      width: 6px;
      border-radius: 2px;
      background: rgba(242, 106, 27, 0.5);
      transition: height 0.3s ease;
    }

    .ads-mini-bar.active {
      background: var(--orange);
    }

    /* Monthly overview card */
    .ads-overview {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 14px 16px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .ads-ov-item {
      text-align: center;
    }

    .ads-ov-val {
      font-size: 1rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1.3;
    }

    .ads-ov-lbl {
      font-size: 0.6rem;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ─── Stats Bar ───────────────────────────── */
    .ads-stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 40px 0;
    }

    .ads-stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
    }

    .ads-stat-item {
      padding: 0 16px;
    }

    .ads-stat-num {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 8px;
    }

    .ads-stat-lbl {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ─── Problem Cards ───────────────────────── */
    .ads-problems {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .ads-problem-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .ads-problem-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .ads-problem-icon {
      width: 52px;
      height: 52px;
      background: rgba(239, 68, 68, 0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin: 0 auto 16px;
    }

    .ads-problem-card h4 {
      font-size: 0.95rem;
      margin-bottom: 8px;
      color: var(--text);
    }

    .ads-problem-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ─── Platform Section ────────────────────── */
    .ads-platform-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .ads-platform-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }

    .ads-platform-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      opacity: 0;
      transition: var(--transition);
    }

    .ads-platform-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--orange-border);
    }

    .ads-platform-card:hover::before {
      opacity: 1;
    }

    .ads-platform-card.google::before {
      background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
    }

    .ads-platform-card.meta::before {
      background: linear-gradient(90deg, #1877f2, #e1306c, #833ab4);
    }

    .ads-platform-card.tiktok::before {
      background: linear-gradient(90deg, #00f2ea, #ff0050);
    }

    .ads-platform-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .ads-platform-card.google .ads-platform-icon { background: rgba(66,133,244,0.09); }
    .ads-platform-card.meta .ads-platform-icon   { background: rgba(24,119,242,0.09); }
    .ads-platform-card.tiktok .ads-platform-icon { background: rgba(105,201,208,0.12); }

    .ads-platform-card h3 {
      font-size: 1.2rem;
      margin-bottom: 6px;
      color: var(--text);
    }

    .ads-platform-card .ads-plat-sub {
      font-size: 0.78rem;
      color: var(--orange);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 14px;
    }

    .ads-platform-card>p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .ads-plat-features {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .ads-plat-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--text-muted);
      padding: 5px 0;
    }

    .ads-plat-features li::before {
      content: '✓';
      color: var(--orange);
      font-weight: 700;
      font-size: 0.78rem;
      flex-shrink: 0;
    }

    /* ─── Feature Grid ────────────────────────── */
    .ads-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .ads-feature {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 22px;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .ads-feature:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--orange-border);
    }

    .ads-feature-icon {
      width: 44px;
      height: 44px;
      background: rgba(242, 106, 27, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 16px;
      color: var(--orange);
    }

    .ads-feature h4 {
      font-size: 0.98rem;
      margin-bottom: 8px;
      color: var(--text);
    }

    .ads-feature p {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── Feature cards on dark bg ───────────── */
    .ads-features-dark .ads-feature {
      background: rgba(255,255,255,0.93);
      border-color: rgba(255,255,255,0.20);
      box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    }
    .ads-features-dark .ads-feature:hover {
      background: #ffffff;
      border-color: rgba(242,106,27,0.45);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    }
    .ads-features-dark .ads-feature h4 {
      color: var(--text);
    }
    .ads-features-dark .ads-feature p {
      color: var(--text-muted);
    }
    .ads-features-dark .ads-feature-icon {
      background: rgba(242,106,27,0.10);
      color: var(--orange);
    }

    /* ─── Niches ──────────────────────────────── */
    .ads-niches {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 36px;
    }

    .ads-niche-pill {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 10px 22px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: var(--transition);
    }

    .ads-niche-pill:hover {
      border-color: var(--orange-border);
      color: var(--orange);
      background: rgba(242, 106, 27, 0.04);
    }

    /* ─── Process Steps ───────────────────────── */
    .ads-process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
      position: relative;
    }

    .ads-process::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: var(--orange);
      opacity: 0.35;
      z-index: 0;
    }

    .ads-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .ads-step-num {
      width: 56px;
      height: 56px;
      background: var(--bg);
      border: 2px solid var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--orange);
      margin: 0 auto 20px;
      box-shadow: 0 0 0 6px var(--bg);
    }

    .ads-step:last-child .ads-step-num {
      border-color: #22c55e;
      color: #22c55e;
    }

    .ads-step h4 {
      font-size: 0.95rem;
      margin-bottom: 8px;
      color: var(--text);
    }

    .ads-step p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ─── Comparison Table ────────────────────── */
    .ads-compare {
      margin-top: 48px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .ads-compare table {
      width: 100%;
      border-collapse: collapse;
    }

    .ads-compare thead {
      background: var(--black);
    }

    .ads-compare th {
      padding: 18px 24px;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.7);
      text-align: left;
    }

    .ads-compare th:last-child {
      color: var(--orange);
    }

    .ads-compare td {
      padding: 14px 24px;
      font-size: 0.88rem;
      border-bottom: 1px solid var(--border);
    }

    .ads-compare tr:last-child td {
      border-bottom: none;
    }

    .ads-compare tbody tr {
      background: var(--white);
      transition: var(--transition);
    }

    .ads-compare tbody tr:hover {
      background: rgba(242, 106, 27, 0.03);
    }

    .ads-compare td:first-child {
      font-weight: 600;
      color: var(--text);
    }

    .ads-compare td:nth-child(2) {
      color: var(--text-muted);
    }

    .ads-compare td:last-child {
      color: var(--orange);
      font-weight: 600;
    }

    /* ─── Testimonials ────────────────────────── */
    .ads-testimonials {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .ads-testimonial {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .ads-testimonial:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .ads-test-stars {
      color: var(--orange);
      font-size: 0.9rem;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .ads-test-text {
      font-size: 0.92rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .ads-test-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ads-test-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(242, 106, 27, 0.12);
      color: var(--orange);
      font-weight: 700;
      font-size: 0.82rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ads-test-name {
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--text);
    }

    .ads-test-biz {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* ─── CTA Card ────────────────────────────── */
    .ads-cta-card {
      background: var(--black);
      border-radius: 24px;
      padding: 56px 48px;
      text-align: center;
      margin-top: 48px;
      position: relative;
      overflow: hidden;
    }

    .ads-cta-card::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(242, 106, 27, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .ads-cta-card h3 {
      color: var(--white);
      font-size: clamp(1.5rem, 2.8vw, 2.1rem);
      margin-bottom: 14px;
      position: relative;
    }

    .ads-cta-card h3 span {
      color: var(--orange);
    }

    .ads-cta-card p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.95rem;
      line-height: 1.65;
      max-width: 560px;
      margin: 0 auto 28px;
      position: relative;
    }

    .ads-cta-card .btn {
      position: relative;
    }

    /* ─── FAQ ─────────────────────────────────── */
    .ads-faq-list {
      margin-top: 40px;
    }

    .ads-faq-list details {
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: var(--transition);
      background: var(--white);
    }

    .ads-faq-list details:hover {
      border-color: var(--orange-border);
    }

    .ads-faq-list details[open] {
      border-color: var(--orange-border);
      box-shadow: 0 0 0 1px rgba(242, 106, 27, 0.1);
    }

    .ads-faq-list summary {
      padding: 18px 24px;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .ads-faq-list summary::-webkit-details-marker {
      display: none;
    }

    .ads-faq-list summary::after {
      content: '+';
      font-size: 1.3rem;
      color: var(--orange);
      font-weight: 300;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .ads-faq-list details[open] summary::after {
      transform: rotate(45deg);
    }

    .ads-faq-body {
      padding: 0 24px 20px;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─── CTA Final ───────────────────────────── */
    .ads-cta-final {
      background: var(--black);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .ads-cta-final::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(242, 106, 27, 0.1) 0%, transparent 65%);
      pointer-events: none;
    }

    .ads-cta-final .section-label {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.65);
    }

    .ads-cta-final h2 {
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.1;
      margin: 24px auto 20px;
      max-width: 700px;
    }

    .ads-cta-final h2 span {
      color: var(--orange);
    }

    .ads-cta-final>.container>p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 36px;
    }

    .ads-cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .ads-cta-micro {
      font-size: 0.81rem !important;
      color: rgba(255, 255, 255, 0.28) !important;
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }

    /* ─── Responsive ──────────────────────────── */
    @media (max-width: 1024px) {
      .ads-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .ads-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .ads-problems {
        grid-template-columns: repeat(2, 1fr);
      }

      .ads-platform-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
      }

      .ads-features {
        grid-template-columns: repeat(2, 1fr);
      }

      .ads-process::before {
        display: none;
      }

      .ads-process {
        grid-template-columns: repeat(2, 1fr);
      }

      .ads-testimonials {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-inline: auto;
      }
    }

    @media (max-width: 768px) {
      .ads-hero {
        padding: 100px 0 60px;
        min-height: auto;
      }

      .ads-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .ads-problems {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
      }

      .ads-features {
        grid-template-columns: 1fr;
      }

      .ads-process {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
      }

      .ads-compare {
        overflow-x: auto;
      }

      .ads-compare table {
        min-width: 600px;
      }

      .ads-overview {
        grid-template-columns: repeat(2, 1fr);
      }

      .ads-cta-card {
        padding: 40px 24px;
      }
    }

    @media (max-width: 480px) {
      .ads-hero h1 {
        font-size: 2rem;
      }

      .ads-platforms-grid {
        grid-template-columns: 1fr;
      }

      .ads-stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      .ads-hero-actions {
        flex-direction: column;
      }

      .ads-hero-actions .btn {
        width: 100%;
        text-align: center;
      }

      .ads-cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .ads-cta-actions .btn {
        width: 100%;
        text-align: center;
      }
