/* AileFest FAQ - Minimal Modern */
.ailefest-faq-section {
  width: 100%;
  padding: var(--ailefest-faq-padding, 72px) 20px;
  background: #fff;
  font-family: "Red Hat Display", Arial, sans-serif;
}

.ailefest-faq-container {
  width: 100%;
  max-width: var(--ailefest-faq-max-width, 980px);
  margin: 0 auto;
}

.ailefest-faq-header {
  text-align: center;
  margin-bottom: 34px;
}

.ailefest-faq-mini-title {
  display: block;
  color: var(--theme-color, #ed1c24);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ailefest-faq-header h2 {
  margin: 0;
  color: #0b0b0b;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.ailefest-faq-header h2 span {
  color: var(--theme-color, #ed1c24);
}

.ailefest-faq-line {
  width: 64px;
  height: 3px;
  background: var(--theme-color, #ed1c24);
  border-radius: 99px;
  margin: 20px auto 0;
}

.ailefest-faq-header p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.ailefest-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ailefest-faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.ailefest-faq-item:hover {
  border-color: rgba(237, 28, 36, 0.25);
}

.ailefest-faq-item.is-active {
  border-color: rgba(237, 28, 36, 0.28);
  background: #fff;
  box-shadow: none;
}

.ailefest-faq-question {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #0b0b0b;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.ailefest-faq-question:focus {
  outline: none;
}

.ailefest-faq-question:focus-visible {
  outline: 2px solid rgba(237, 28, 36, 0.35);
  outline-offset: -3px;
}

.ailefest-faq-question-text {
  color: #0b0b0b;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.1px;
}

.ailefest-faq-plus {
  width: 26px;
  height: 26px;
  border: 1.8px solid var(--theme-color, #ed1c24);
  border-radius: 50%;
  position: relative;
  display: block;
  flex-shrink: 0;
}

.ailefest-faq-plus::before,
.ailefest-faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--theme-color, #ed1c24);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.ailefest-faq-plus::before {
  width: 12px;
  height: 2px;
}

.ailefest-faq-plus::after {
  width: 2px;
  height: 12px;
}

.ailefest-faq-item.is-active .ailefest-faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.ailefest-faq-arrow {
  width: 9px;
  height: 9px;
  border-right: 2.2px solid #0b0b0b;
  border-bottom: 2.2px solid #0b0b0b;
  transform: rotate(45deg);
  justify-self: end;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ailefest-faq-item.is-active .ailefest-faq-arrow {
  transform: rotate(225deg);
  border-color: var(--theme-color, #ed1c24);
}

.ailefest-faq-answer {
  padding: 0 18px 18px 68px;
}

.ailefest-faq-answer-inner {
  background: #fafafa;
  border-radius: 10px;
  padding: 18px 20px;
  color: #222;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.ailefest-faq-answer-inner p {
  margin: 0 0 10px;
}

.ailefest-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.ailefest-faq-empty {
  text-align: center;
  padding: 28px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  color: #333;
  font-size: 15px;
}

@media (max-width: 768px) {
  .ailefest-faq-section {
    padding: 56px 16px;
  }

  .ailefest-faq-header {
    margin-bottom: 26px;
  }

  .ailefest-faq-mini-title {
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .ailefest-faq-header h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .ailefest-faq-header p {
    font-size: 15px;
    margin-top: 18px;
  }

  .ailefest-faq-question {
    grid-template-columns: 26px 1fr 16px;
    gap: 12px;
    padding: 16px 16px;
    min-height: 60px;
  }

  .ailefest-faq-question-text {
    font-size: 16px;
  }

  .ailefest-faq-plus {
    width: 24px;
    height: 24px;
  }

  .ailefest-faq-answer {
    padding: 0 12px 14px 54px;
  }

  .ailefest-faq-answer-inner {
    padding: 16px;
    font-size: 14.5px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .ailefest-faq-answer {
    padding-left: 12px;
  }
}
