/* GOODRENT — FAQ Block (2-column modern) */
.gr-faq-block {
  --gr-faq-bg: #0f1113;
  --gr-faq-card: #15181c;
  --gr-faq-border: #24282d;
  --gr-faq-text: #e7eaee;
  --gr-faq-muted: #aab1bb;
  --gr-faq-accent: #ffffff;
  --gr-faq-radius: 10px;
  --gr-faq-gap: 10px;
}

.gr-faq-block__grid{
  display:grid;
  grid-template-columns: repeat(var(--gr-faq-cols,2), minmax(0,1fr));
  gap: 10px 48px;
}

@media (max-width: 768px){
  .gr-faq-block__grid{ grid-template-columns: 1fr; gap: 8px; }
}

.gr-faq-block__item{
  border-bottom: 1px solid var(--gr-faq-border);
  padding: 0;
}

.gr-faq-block__item.is-open{
  background: transparent;
}

.gr-faq-block__q{
  appearance: none;
  border: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  color: var(--gr-faq-text);
  font-size: 16px;
  line-height: 1.45;
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}


.gr-faq-block__q:hover,
.gr-faq-block__q:focus,
.gr-faq-block__q:active{
  outline: none;
  color: var(--gr-faq-accent);
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}


.gr-faq-block__qtext{
  flex: 1 1 auto;
  font-weight: 500;
}

.gr-faq-block__plus{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform-origin: 50% 50%;
  transition: transform .28s ease;
}

.gr-faq-block__plus::before,
.gr-faq-block__plus::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--gr-faq-text);
  transform: translate(-50%,-50%);
  border-radius: 2px;
}

.gr-faq-block__plus::after{
  transform: translate(-50%,-50%) rotate(90deg);
}

.gr-faq-block__item.is-open .gr-faq-block__plus{
  transform: rotate(45deg);
}

.gr-faq-block__a{
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .28s ease, opacity .28s ease;
  will-change: height, opacity;
}

.gr-faq-block__a-inner{
  padding: 8px 0 16px 0;
  color: var(--gr-faq-muted);
  font-size: 15px;
  line-height: 1.6;
}

.gr-faq-block__item.is-open .gr-faq-block__a{
  opacity: 1;
}
