.faqs {
  padding-bottom: 120px !important;
}
.faqs .article {
  margin-bottom: 20px;
  border-radius: 12px;
  background: #f4f8fc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1.5px solid #e0e7ef;
  overflow: hidden;
  transition: box-shadow 0.2s, border 0.2s;
}
.faqs .article:hover,
.faqs .article.open {
  box-shadow: 0 4px 24px rgba(0,96,254,0.10);
  border-color: #b3d1fa;
  background: #f0f6ff;
}
.faqs .article .q {
  cursor: pointer;
  padding: 20px 56px 20px 28px;
  margin: 0;
  font-size: 20px;
  color: var(--darkBlue);
  background: transparent;
  font-weight: 700;
  transition: background 0.2s;
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.faqs .article .q::after {
  content: '\25BC';
  position: absolute;
  right: 28px;
  top: 50%;
  color: #0060fe;
  font-size: 1.2em;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
  pointer-events: none;
}
.faqs .article.open .q::after {
  transform: translateY(-50%) rotate(180deg);
}
.faqs .article .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
  background: transparent;
  padding: 0 28px;
  color: var(--lightBlue);
}
.faqs .article.open .a {
  padding: 16px 28px 24px 28px;
  max-height: 1000px;
}
@media only screen and (max-width: 767.98px) {
  .faqs .article .q {
    font-size: 18px;
    padding: 14px 44px 14px 16px;
    min-height: 32px;
    display: flex;
    align-items: center;
  }
  .faqs .article .q::after {
    right: 16px;
    font-size: 1.3em;
  }
  .faqs .article .a {
    font-size: 14px;
    padding: 0 16px;
  }
  .faqs .article.open .a {
    padding: 12px 16px 16px 16px;
  }
}

.faqs .st-soon[data-st]:after {
  content: attr(data-st);
  display: inline-block;
  font-size: 10px;
  color: #ff9800;
  background-color: rgba(255, 183, 48, 0.12);
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: 0.5em;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}
