
/* =========================================
    Top Words Section Btn CSS  topWordsSectionBtn.css 
========================================= */



.top-words-section {
  max-width: 1050px;
  margin: 70px auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f8f4ed);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.top-words-header {
  text-align: center;
  margin-bottom: 28px;
}

.top-words-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #f3ece2;
  color: #8a6a40;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-words-header h2 {
  margin: 0 0 12px;
  color: #1f2d45;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.top-words-header p {
  max-width: 680px;
  margin: 0 auto;
  color: #617089;
  font-size: 1.05rem;
  line-height: 1.8;
}

.top-words-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.top-words-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #d8c7aa, #b89b70);
  color: #1f2d45;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-words-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(179,139,89,0.25);
}

.top-words-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.top-words-results .resultItem {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.top-words-results .ref {
  color: #8a6a40;
  font-weight: 900;
}

.top-words-results .freq {
  color: #617089;
  font-weight: 700;
}

@media (max-width: 700px) {
  .top-words-section {
    margin: 45px 14px;
    padding: 26px;
  }

  .top-words-results {
    grid-template-columns: 1fr;
  }

  .top-words-btn {
    width: 100%;
  }
}