/* =====================================================
   SMALL TEXT GENERATOR
   PART 1
   HERO + TOOL + INPUT + SEARCH + RESULT CARDS
===================================================== */

.fote-small-page{
  --fote-small-primary:#5b5ff6;
  --fote-small-primary-dark:#453ee6;
  --fote-small-secondary:#eef2ff;
  --fote-small-dark:#111827;
  --fote-small-text:#4b5563;
  --fote-small-muted:#6b7280;
  --fote-small-border:#e5e7eb;
  --fote-small-bg:#f8faff;
  --fote-small-white:#ffffff;
  --fote-small-success:#22c55e;
  --fote-small-shadow:0 18px 45px rgba(15,23,42,.08);

  background:var(--fote-small-bg);
  color:var(--fote-small-dark);
  font-family:Inter,Arial,sans-serif;
  overflow:hidden;
}

.fote-small-page *,
.fote-small-page *::before,
.fote-small-page *::after{
  box-sizing:border-box;
}

.fote-small-container{
  width:min(1200px,92%);
  margin:0 auto;
}

/* ===================================
   HERO
=================================== */

.fote-small-hero{
  padding:90px 0 70px;
  text-align:center;
  background:
    radial-gradient(
      circle at top right,
      #dbeafe 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at bottom left,
      #ede9fe 0%,
      transparent 40%
    ),
    #ffffff;
}

.fote-small-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:22px;
  padding:10px 18px;
  color:#5b21b6;
  background:#ede9fe;
  border-radius:999px;
  font-size:.9rem;
  font-weight:700;
  text-transform:uppercase;
}

.fote-small-hero h1{
  margin:0 0 20px;
  color:var(--fote-small-dark);
  font-size:clamp(2.5rem,5vw,4.4rem);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-1px;
}

.fote-small-hero p{
  max-width:780px;
  margin:0 auto;
  color:var(--fote-small-text);
  font-size:1.12rem;
  line-height:1.8;
}

.fote-small-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:35px;
  padding:15px 30px;
  color:#ffffff !important;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
  border-radius:12px;
  text-decoration:none !important;
  font-weight:700;
  box-shadow:0 12px 26px rgba(91,95,246,.18);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.fote-small-hero-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(91,95,246,.26);
}

/* ===================================
   TOOL SECTION
=================================== */

.fote-small-tool-section{
  margin-top:-20px;
  padding-bottom:80px;
}

.fote-small-tool-box{
  padding:45px;
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:22px;
  box-shadow:0 20px 55px rgba(15,23,42,.08);
}

.fote-small-tool-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:25px;
  margin-bottom:35px;
}

.fote-small-section-label{
  display:inline-block;
  margin-bottom:15px;
  padding:8px 16px;
  color:var(--fote-small-primary);
  background:var(--fote-small-secondary);
  border-radius:999px;
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
}

.fote-small-tool-header h2{
  margin:0 0 15px;
  color:var(--fote-small-dark);
  font-size:2rem;
  line-height:1.3;
  font-weight:800;
}

.fote-small-tool-header p{
  max-width:700px;
  margin:0;
  color:var(--fote-small-text);
  line-height:1.8;
}

.fote-small-status{
  display:flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:12px 18px;
  color:#166534;
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  border-radius:999px;
  font-size:.9rem;
  font-weight:700;
}

.fote-small-status span{
  width:10px;
  height:10px;
  background:var(--fote-small-success);
  border-radius:50%;
}

/* ===================================
   INPUT CARD
=================================== */

.fote-small-input-card{
  margin-bottom:35px;
  padding:28px;
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:18px;
}

.fote-small-input-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.fote-small-input-header label{
  display:block;
  margin-bottom:6px;
  color:var(--fote-small-dark);
  font-size:1.15rem;
  font-weight:700;
}

.fote-small-input-header span{
  color:var(--fote-small-text);
  font-size:.92rem;
  line-height:1.6;
}

.fote-small-char-count{
  color:var(--fote-small-text);
  font-size:.9rem;
  font-weight:700;
  white-space:nowrap;
}

#foteSmallInput{
  width:100%;
  min-height:190px;
  padding:20px;
  resize:vertical;
  color:var(--fote-small-dark);
  background:#ffffff;
  border:2px solid #dbe4ff;
  border-radius:14px;
  outline:none;
  font-family:inherit;
  font-size:1.05rem;
  line-height:1.8;
  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

#foteSmallInput:focus{
  border-color:var(--fote-small-primary);
  box-shadow:0 0 0 5px rgba(91,95,246,.08);
}

#foteSmallInput::placeholder{
  color:#9ca3af;
}

/* ===================================
   INPUT ACTIONS
=================================== */

.fote-small-input-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.fote-small-sample-btn,
.fote-small-clear-btn{
  padding:14px 24px;
  border:0;
  border-radius:12px;
  cursor:pointer;
  font-family:inherit;
  font-size:.94rem;
  font-weight:700;
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.fote-small-sample-btn{
  color:#ffffff;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
}

.fote-small-sample-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(91,95,246,.2);
}

.fote-small-clear-btn{
  color:#111827;
  background:#f3f4f6;
}

.fote-small-clear-btn:hover{
  background:#e5e7eb;
}

.fote-small-message{
  color:#16a34a;
  font-size:.9rem;
  font-weight:700;
}

/* ===================================
   SEARCH AND FILTER
=================================== */

.fote-small-filter-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:35px;
}

.fote-small-search-wrap{
  position:relative;
  flex:1;
  min-width:280px;
}

.fote-small-search-icon{
  position:absolute;
  top:50%;
  left:18px;
  transform:translateY(-50%);
  color:#94a3b8;
  font-size:20px;
  pointer-events:none;
}

#foteSmallSearch{
  width:100%;
  padding:15px 20px 15px 48px;
  color:var(--fote-small-dark);
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:12px;
  outline:none;
  font-family:inherit;
  font-size:1rem;
  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

#foteSmallSearch:focus{
  border-color:var(--fote-small-primary);
  box-shadow:0 0 0 4px rgba(91,95,246,.07);
}

.fote-small-result-summary{
  display:flex;
  align-items:center;
  gap:6px;
  padding:14px 18px;
  color:var(--fote-small-primary);
  background:var(--fote-small-secondary);
  border-radius:12px;
  font-size:.9rem;
}

.fote-small-result-summary strong{
  font-weight:800;
}

/* ===================================
   RESULT GRID
=================================== */

.fote-small-results{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
  gap:22px;
}

.fote-small-result-card{
  padding:24px;
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:18px;
  box-shadow:0 7px 20px rgba(15,23,42,.04);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.fote-small-result-card:hover{
  transform:translateY(-5px);
  border-color:#d8d9ff;
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.fote-small-result-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:15px;
  margin-bottom:20px;
}

.fote-small-style-number{
  display:inline-flex;
  margin-bottom:8px;
  padding:5px 12px;
  color:var(--fote-small-primary);
  background:var(--fote-small-secondary);
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
}

.fote-small-result-top h3{
  margin:0;
  color:var(--fote-small-dark);
  font-size:1.15rem;
  line-height:1.35;
  font-weight:800;
}

.fote-small-result-top button{
  flex:0 0 auto;
  min-width:95px;
  padding:10px 16px;
  color:#ffffff;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
  border:0;
  border-radius:10px;
  cursor:pointer;
  font-family:inherit;
  font-size:.88rem;
  font-weight:700;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.fote-small-result-top button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(91,95,246,.2);
}

.fote-small-output{
  min-height:90px;
  display:flex;
  align-items:center;
  padding:18px;
  overflow-wrap:anywhere;
  word-break:break-word;
  color:var(--fote-small-dark);
  background:#f8fbff;
  border:2px dashed #dbe4ff;
  border-radius:14px;
  font-size:1.15rem;
  line-height:1.8;
  user-select:all;
  transition:border-color .25s ease;
}

.fote-small-output:hover{
  border-color:var(--fote-small-primary);
}

.fote-small-result-card.hidden{
  display:none;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

  .fote-small-tool-box{
    padding:30px;
  }

  .fote-small-tool-header{
    flex-direction:column;
  }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

  .fote-small-filter-row{
    flex-direction:column;
    align-items:stretch;
  }

  .fote-small-result-summary{
    justify-content:center;
    width:100%;
  }

  .fote-small-input-header{
    flex-direction:column;
  }

  .fote-small-char-count{
    white-space:normal;
  }

  .fote-small-results{
    grid-template-columns:1fr;
  }
}

@media(max-width:576px){

  .fote-small-hero{
    padding:65px 0 45px;
  }

  .fote-small-hero h1{
    font-size:2.2rem;
  }

  .fote-small-hero p{
    font-size:16px;
  }

  .fote-small-tool-section{
    padding-bottom:55px;
  }

  .fote-small-tool-box{
    padding:18px;
    border-radius:16px;
  }

  .fote-small-input-card{
    padding:18px;
  }

  #foteSmallInput{
    min-height:150px;
    font-size:16px;
  }

  .fote-small-input-actions{
    align-items:stretch;
  }

  .fote-small-sample-btn,
  .fote-small-clear-btn{
    flex:1 1 calc(50% - 8px);
  }

  .fote-small-result-card{
    padding:18px;
  }

  .fote-small-result-top{
    flex-direction:column;
  }

  .fote-small-result-top button{
    width:100%;
  }

  .fote-small-output{
    min-height:80px;
    font-size:17px;
  }
}
/* =====================================================
   SMALL TEXT GENERATOR
   PART 2
   BENEFITS + HOW IT WORKS + CONTENT + TOOLS + FAQ + CTA
===================================================== */

/* ===================================
   GENERIC SECTION
=================================== */

.fote-small-section{
  padding:80px 0;
  background:#ffffff;
}

.fote-small-heading{
  max-width:820px;
  margin:0 auto 42px;
  text-align:center;
}

.fote-small-heading h2{
  margin:0 0 16px;
  color:var(--fote-small-dark);
  font-size:2.3rem;
  line-height:1.3;
  font-weight:800;
}

.fote-small-heading p{
  max-width:740px;
  margin:0 auto;
  color:var(--fote-small-text);
  font-size:1rem;
  line-height:1.85;
}

/* ===================================
   BENEFITS
=================================== */

.fote-small-benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.fote-small-benefit-card{
  padding:30px 24px;
  text-align:center;
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.fote-small-benefit-card:hover{
  transform:translateY(-6px);
  border-color:#d8d9ff;
  box-shadow:0 18px 42px rgba(15,23,42,.11);
}

.fote-small-card-icon{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  color:#ffffff;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
  border-radius:18px;
  font-size:26px;
  font-weight:800;
}

.fote-small-benefit-card h3{
  margin:0 0 12px;
  color:var(--fote-small-dark);
  font-size:1.2rem;
  font-weight:800;
}

.fote-small-benefit-card p{
  margin:0;
  color:var(--fote-small-text);
  font-size:.94rem;
  line-height:1.75;
}

/* ===================================
   HOW IT WORKS
=================================== */

.fote-small-how{
  max-width:1200px;
  margin:0 auto;
  padding:80px 20px;
  color:#ffffff;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255,255,255,.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--fote-small-primary),
      var(--fote-small-primary-dark)
    );
}

.fote-small-heading-light h2{
  color:#ffffff;
}

.fote-small-heading-light p{
  color:#eef2ff;
}

.fote-small-label-light{
  color:#ffffff;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
}

.fote-small-step-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.fote-small-step-card{
  position:relative;
  overflow:hidden;
  padding:34px 26px;
  color:#111827;
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(15,23,42,.14);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.fote-small-step-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(15,23,42,.2);
}

.fote-small-step-number{
  position:absolute;
  top:16px;
  right:20px;
  color:#ececff;
  font-size:40px;
  line-height:1;
  font-weight:900;
}

.fote-small-step-card h3{
  position:relative;
  margin:0 0 12px;
  color:var(--fote-small-dark);
  font-size:1.2rem;
  font-weight:800;
}

.fote-small-step-card p{
  position:relative;
  margin:0;
  color:var(--fote-small-text);
  font-size:.94rem;
  line-height:1.75;
}

/* ===================================
   CONTENT SECTION
=================================== */

.fote-small-content-section{
  padding:80px 0;
  background:var(--fote-small-bg);
}

.fote-small-content-card{
  padding:48px;
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:20px;
  box-shadow:var(--fote-small-shadow);
}

.fote-small-content-card h2{
  margin:40px 0 16px;
  color:var(--fote-small-dark);
  font-size:1.9rem;
  line-height:1.35;
  font-weight:800;
}

.fote-small-content-card h2:first-of-type{
  margin-top:0;
}

.fote-small-content-card p{
  margin:0 0 17px;
  color:var(--fote-small-text);
  font-size:1rem;
  line-height:1.9;
}

/* ===================================
   USE GRID
=================================== */

.fote-small-use-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
  margin:25px 0 34px;
}

.fote-small-use-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 15px;
  color:#374151;
  background:#f9fafb;
  border:1px solid var(--fote-small-border);
  border-radius:12px;
  font-size:.94rem;
  font-weight:700;
}

.fote-small-use-item span{
  flex:0 0 24px;
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
  border-radius:50%;
  font-size:12px;
}

/* ===================================
   NOTE BOX
=================================== */

.fote-small-note{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-top:25px;
  padding:20px;
  background:#fff8e7;
  border:1px solid #f8dda0;
  border-left:5px solid #f59e0b;
  border-radius:13px;
}

.fote-small-note-icon{
  flex:0 0 40px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  background:#f59e0b;
  border-radius:50%;
  font-family:Georgia,serif;
  font-size:20px;
  font-weight:800;
}

.fote-small-note p{
  margin:0;
  color:#78350f;
  font-size:.94rem;
  line-height:1.75;
}

/* ===================================
   RELATED TOOLS
=================================== */

.fote-small-tools-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.fote-small-tool-card{
  display:block;
  padding:28px 22px;
  text-align:center;
  text-decoration:none !important;
  color:var(--fote-small-dark);
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-top:5px solid var(--fote-small-primary);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(15,23,42,.07);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.fote-small-tool-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 38px rgba(15,23,42,.12);
}

.fote-small-tool-card > span{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 17px;
  color:#ffffff;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
  border-radius:15px;
  font-size:23px;
  font-weight:800;
}

.fote-small-tool-card strong{
  display:block;
  margin-bottom:10px;
  color:var(--fote-small-dark);
  font-size:1.05rem;
  font-weight:800;
}

.fote-small-tool-card p{
  margin:0;
  color:var(--fote-small-text);
  font-size:.88rem;
  line-height:1.7;
}

/* ===================================
   FAQ
=================================== */

.fote-small-faq-section{
  padding:80px 0;
  background:var(--fote-small-bg);
}

.fote-small-faq{
  max-width:900px;
  margin:0 auto;
}

.fote-small-faq-item{
  margin-bottom:15px;
  overflow:hidden;
  background:#ffffff;
  border:1px solid var(--fote-small-border);
  border-radius:15px;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  transition:border-color .25s ease;
}

.fote-small-faq-item.active{
  border-color:#d7dcff;
}

.fote-small-faq-item > button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 23px;
  color:var(--fote-small-dark);
  background:#ffffff;
  border:0;
  cursor:pointer;
  text-align:left;
  font-family:inherit;
  font-size:1rem;
  font-weight:800;
}

.fote-small-faq-item > button span{
  flex:0 0 34px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  background:linear-gradient(
    135deg,
    var(--fote-small-primary),
    var(--fote-small-primary-dark)
  );
  border-radius:50%;
  font-size:22px;
  line-height:1;
  transition:transform .25s ease;
}

.fote-small-faq-answer{
  display:none;
  padding:0 23px 22px;
}

.fote-small-faq-answer p{
  margin:0;
  color:var(--fote-small-text);
  font-size:.95rem;
  line-height:1.8;
}

.fote-small-faq-item.active .fote-small-faq-answer{
  display:block;
}

.fote-small-faq-item.active > button span{
  transform:rotate(45deg);
}

/* ===================================
   CTA
=================================== */

.fote-small-cta{
  max-width:1200px;
  margin:0 auto 50px;
  padding:78px 20px;
  text-align:center;
  color:#ffffff;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255,255,255,.16),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--fote-small-primary),
      var(--fote-small-primary-dark)
    );
}

.fote-small-cta h2{
  margin:0 0 18px;
  color:#ffffff;
  font-size:2.5rem;
  line-height:1.2;
  font-weight:800;
}

.fote-small-cta p{
  max-width:720px;
  margin:0 auto 28px;
  color:#eef2ff;
  font-size:1.05rem;
  line-height:1.8;
}

.fote-small-cta a{
  display:inline-block;
  padding:15px 30px;
  color:var(--fote-small-primary) !important;
  background:#ffffff;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:800;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.fote-small-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(15,23,42,.18);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:980px){

  .fote-small-benefit-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .fote-small-step-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .fote-small-tools-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px){

  .fote-small-section,
  .fote-small-content-section,
  .fote-small-faq-section{
    padding:56px 0;
  }

  .fote-small-heading h2{
    font-size:1.8rem;
  }

  .fote-small-benefit-grid,
  .fote-small-step-grid,
  .fote-small-use-grid,
  .fote-small-tools-grid{
    grid-template-columns:1fr;
  }

  .fote-small-how{
    padding:58px 15px;
  }

  .fote-small-content-card{
    padding:30px 22px;
  }

  .fote-small-content-card h2{
    font-size:1.55rem;
  }

  .fote-small-note{
    flex-direction:column;
  }

  .fote-small-cta{
    padding:60px 18px;
  }

  .fote-small-cta h2{
    font-size:1.9rem;
  }
}
/* =====================================================
   SMALL TEXT GENERATOR
   PART 3
   ANIMATIONS + UTILITIES + FINAL RESPONSIVE
===================================================== */

/* ===================================
   SMOOTH SCROLL
=================================== */

html{
  scroll-behavior:smooth;
}

/* ===================================
   FADE ANIMATION
=================================== */

@keyframes foteSmallFadeUp{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.fote-small-hero,
.fote-small-tool-box,
.fote-small-benefit-card,
.fote-small-step-card,
.fote-small-content-card,
.fote-small-tool-card,
.fote-small-faq-item,
.fote-small-cta{

  animation:foteSmallFadeUp .7s ease both;

}

/* Delay */

.fote-small-benefit-card:nth-child(2),
.fote-small-step-card:nth-child(2){
  animation-delay:.08s;
}

.fote-small-benefit-card:nth-child(3),
.fote-small-step-card:nth-child(3){
  animation-delay:.16s;
}

.fote-small-benefit-card:nth-child(4){
  animation-delay:.24s;
}

.fote-small-benefit-card:nth-child(5){
  animation-delay:.32s;
}

.fote-small-benefit-card:nth-child(6){
  animation-delay:.40s;
}

/* ===================================
   OUTPUT TEXT
=================================== */

.fote-small-output{

  white-space:pre-wrap;
  overflow-wrap:anywhere;
  word-break:break-word;
  transition:
    border-color .25s ease,
    background .25s ease;

}

.fote-small-output:empty::before{

  content:"Generated small text will appear here...";
  color:#94a3b8;

}

.fote-small-output:hover{

  background:#ffffff;

}

/* ===================================
   COPY BUTTON STATES
=================================== */

.fote-small-result-top button.copied{

  background:#16a34a;

}

.fote-small-result-top button:active{

  transform:scale(.97);

}

/* ===================================
   FOCUS ACCESSIBILITY
=================================== */

.fote-small-page button:focus,
.fote-small-page input:focus,
.fote-small-page textarea:focus,
.fote-small-page a:focus{

  outline:none;
  box-shadow:
    0 0 0 4px rgba(91,95,246,.18);

}

/* ===================================
   LINK COLORS
=================================== */

.fote-small-content-card a{

  color:var(--fote-small-primary);
  font-weight:700;
  text-decoration:none;

}

.fote-small-content-card a:hover{

  text-decoration:underline;

}

/* ===================================
   TEXT SELECTION
=================================== */

.fote-small-page ::selection{

  color:#ffffff;
  background:var(--fote-small-primary);

}

/* ===================================
   CUSTOM SCROLLBAR
=================================== */

#foteSmallInput::-webkit-scrollbar{

  width:10px;

}

#foteSmallInput::-webkit-scrollbar-track{

  background:#eef2ff;
  border-radius:20px;

}

#foteSmallInput::-webkit-scrollbar-thumb{

  background:#c7d2fe;
  border-radius:20px;

}

#foteSmallInput::-webkit-scrollbar-thumb:hover{

  background:var(--fote-small-primary);

}

/* ===================================
   SEARCH INPUT
=================================== */

#foteSmallSearch::-webkit-search-cancel-button{

  cursor:pointer;

}

/* ===================================
   HOVER EFFECTS
=================================== */

.fote-small-use-item:hover{

  border-color:#c7d2fe;
  transform:translateX(4px);
  transition:.25s;

}

.fote-small-tool-card:hover strong{

  color:var(--fote-small-primary);

}

.fote-small-benefit-card:hover .fote-small-card-icon,
.fote-small-tool-card:hover > span{

  transform:rotate(-6deg) scale(1.08);
  transition:.25s;

}

/* ===================================
   FAQ TRANSITION
=================================== */

.fote-small-faq-answer{

  animation:foteSmallFadeUp .3s ease;

}

/* ===================================
   IMAGE SAFETY
=================================== */

.fote-small-page img{

  max-width:100%;
  height:auto;
  display:block;

}

/* ===================================
   TABLET
=================================== */

@media (max-width:991px){

  .fote-small-heading{

    margin-bottom:35px;

  }

  .fote-small-content-card{

    padding:34px;

  }

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:767px){

  .fote-small-badge{

    font-size:12px;
    padding:8px 14px;

  }

  .fote-small-section-label{

    font-size:12px;
  }

  .fote-small-tool-header h2,
  .fote-small-heading h2{

    font-size:30px;

  }

  .fote-small-content-card h2{

    font-size:26px;

  }

  .fote-small-result-summary{

    font-size:14px;

  }

  .fote-small-style-number{

    font-size:12px;

  }

  .fote-small-output{

    font-size:16px;

  }

  .fote-small-card-icon{

    width:56px;
    height:56px;
    font-size:22px;

  }

}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width:480px){

  .fote-small-container{

    width:94%;

  }

  .fote-small-hero h1{

    font-size:2rem;

  }

  .fote-small-tool-header h2,
  .fote-small-heading h2{

    font-size:26px;

  }

  .fote-small-content-card h2{

    font-size:22px;

  }

  .fote-small-cta h2{

    font-size:28px;

  }

  .fote-small-result-card{

    border-radius:14px;

  }

  .fote-small-output{

    padding:15px;

  }

}

/* ===================================
   REDUCE MOTION
=================================== */

@media (prefers-reduced-motion:reduce){

  *,
  *::before,
  *::after{

    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;

  }

}
