/* ==========================================================================
   ENCONTRO OVERVIEW PAGE - Summary header for each encontro
   Rendered dynamically by router.js renderOverview()
   ========================================================================== */

/* --- Big Idea Quote --- */
.ov-bigidea {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 1rem;
}

/* --- Status Badge --- */
.ov-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ov-status--available {
  background: var(--color-accent-green-10);
  border: 1px solid var(--color-accent-green-20);
  color: var(--color-accent-green);
}

.ov-status--upcoming {
  background: var(--color-white-5);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* --- Sections --- */
.ov-section {
  margin-bottom: 2.5rem;
}

/* --- Objectives List --- */
.ov-objectives {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ov-objective {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: border-color 0.15s ease;
}

.ov-objective:hover {
  border-color: var(--color-accent-gold-30);
}

.ov-objective__icon {
  flex-shrink: 0;
  color: var(--color-accent-gold);
  margin-top: 2px;
}

/* --- Blocos Grid --- */
.ov-blocos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.ov-bloco {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  transition: border-color 0.15s ease;
}

.ov-bloco:hover {
  border-color: var(--color-accent-gold-30);
}

.ov-bloco__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-gold-10);
  color: var(--color-accent-gold);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ov-bloco__title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* --- Available Lessons --- */
.ov-lessons {
  margin-top: 2.5rem;
}

.ov-lessons__grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ov-lesson-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-accent-gold-30);
  border-radius: var(--radius-md);
  color: var(--color-accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ov-lesson-link:hover {
  background: var(--color-accent-gold-10);
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 12px rgba(201,162,39,0.1);
}

.ov-lesson-link svg {
  flex-shrink: 0;
  color: var(--color-accent-gold);
}

/* --- Duration Tag --- */
.ov-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--color-white-5);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.ov-duration svg {
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .ov-blocos {
    grid-template-columns: 1fr;
  }

  .ov-bigidea {
    font-size: 1rem;
  }
}
