/* ============================================================
   828 WEATHER — HUMAN-ACTION MODULE
   ============================================================ */

.action-module {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--module-radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.action-module.active {
  border-color: var(--accent);
  background: rgba(255,255,255,0.10);
}

/* HEADER */
.action-header {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.4rem;
}

/* EMOJI */
.action-emoji {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

/* HEADLINE */
.action-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.35rem;
}

/* MAIN TEXT */
.action-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

/* BULLETS */
.today-bullets,
.tomorrow-bullets {
  margin: 0.4rem 0 0.6rem 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.today-bullets li,
.tomorrow-bullets li {
  margin-bottom: 0.25rem;
}

/* ============================================================
   EXPANDED PANEL — CLEAN AUTO HEIGHT SYSTEM
   ============================================================ */

.expanded-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;

  transition:
    height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}

.action-module.active .expanded-panel {
  opacity: 1;
  margin-top: 0.8rem;
}

/* ============================================================
   FORECAST GRID
   ============================================================ */

.fx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.fx-tile {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.fx-top {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
}

.fx-sub {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

.fx-label {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 3px;
}