/* =================================== */
/* SPECIFICKÉ STYLY PRO FAQ
/* =================================== */

.faq-container {
  padding-bottom: 20px;
}

/* Modrý box s pravidly */
.guide-box {
  background: #e8f4fd;
  border-left: 4px solid #007bff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.guide-box h3 {
  margin-top: 0;
  color: #0056b3;
  font-size: 18px;
  margin-bottom: 15px;
}

.guide-box p {
  margin: 8px 0;
  line-height: 1.5;
  color: #333;
}

/* Nadpis sekce dotazů */
h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  font-size: 22px;
  color: #222;
}

/* Jednotlivé položky (Akordeon) */
.faq-item {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

/* Hlavička otázky */
.faq-item summary {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  background: #fafafa;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  font-size: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: #777;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] summary {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  color: #007bff;
}

.faq-item[open] summary::after {
  content: '-';
  color: #007bff;
}

/* Obsah odpovědi */
.faq-content {
  padding: 20px;
  line-height: 1.6;
  color: #555;
  background: #fff;
  font-size: 15px;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responzivita */
@media (max-width: 480px) {
  .guide-box,
  .faq-item {
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0;
    border-right: none;
  }
  .guide-box {
    border-left: 4px solid #007bff;
  }
  .faq-item {
    border-left: none;
  }
}