/* ==========================================================
   TEMAS MÁS CONSULTADOS
   ========================================================== */ .top-temas {
  width: 100%;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  box-shadow:
    0 3px 12px rgb(0 0 0 / 5%);
}
/* ==========================================================
   HEADER
   ========================================================== */ .top-temas__header {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1rem;
}
.top-temas__line {
  flex: 0 0 4px;
  width: 4px;
  height: 34px;
  margin-top: 2px;
  background: #f28c00;
}
.top-temas__header h2 {
  margin: 0;
  color: #172033;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.2;
}
.top-temas__header p {
  margin: .2rem 0 0;
  color: #7c8997;
  font-size: .72rem;
  line-height: 1.3;
}
/* ==========================================================
   CLOUD
   ========================================================== */ .top-temas__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
/* ==========================================================
   PILL
   ========================================================== */ .top-temas__item {
  display: inline-flex;
  align-items: center;
  padding: .42rem .72rem;
  color: #386796;
  background: #f5f8fc;
  border: 1px solid #d7e3ef;
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}
.top-temas__item:hover {
  color: #fff;
  background:
    var(--pa-color-primary, #0074aa);
  border-color:
    var(--pa-color-primary, #0074aa);
  transform: translateY(-1px);
}
/* ==========================================================
   LOS 3 PRIMEROS UN POCO MÁS DESTACADOS
   ========================================================== */ .top-temas__item--1 {
  font-size: .94rem;
  font-weight: 750;
}
.top-temas__item--2 {
  font-size: .88rem;
  font-weight: 700;
}
.top-temas__item--3 {
  font-size: .84rem;
  font-weight: 700;
}
/* ==========================================================
   MÓVIL
   ========================================================== */ @media (max-width: 767.98px) {
  .top-temas {
    padding: 1rem;
  }
  .top-temas__item {
    font-size: .86rem;
  }
  .top-temas__item--1 {
    font-size: 1rem;
  }
}
