/* ===========================
   Meeting Cards — Shadows
   =========================== */

/* ==========================================
   Meeting List Cards
   ========================================== */
.meeting-card {
  box-shadow: 0px 1px 5px 2px black;
  border-radius: 12px;
}

/* Optional subtle hover */
.meeting-card:hover {
  box-shadow: 0px 1px 10px 2px black;
}


/* ==========================================
   Single Event Page Card
   ========================================== */
.single_event .single-meeting-docs {
  box-shadow: 0px 1px 5px 2px black;
  border-radius: 12px;
}

/* ==========================================
   Remove Download All Documents (Single Event)
   ========================================== */
.single_event .download-all {
  display: none !important;
}


/* ==========================================
   Remove Entire Card on Special Events
   ========================================== */
body.willows-special-event .single-meeting-docs {
  display: none !important;
}



/* ===========================
   Remove "Download all documents"
   =========================== */

/* If your link uses .download-all-btn, this kills it everywhere */
.download-all-btn{
  display:none !important;
}

/* If there’s text near it, you may need to hide its wrapper too (optional) */
/*
.meeting-docs .download-all-wrap,
.meeting-docs .download-all{
  display:none !important;
}
*/

/* ===========================
   Special Events page — remove the whole card
   =========================== */

/* You said: "remove the whole card on the special events page"
   This assumes that page has a body class and uses the shortcode card .meeting-card
*/

/* If your Special Events page has a unique body class like .page-id-XXXX, use that */
body.willows-special-events-page .meetings-wrapper .meeting-card{
  display:none !important;
}

/* If Special Events is a taxonomy archive (event_type), use this instead:
   (Change 'special-events' slug to your real slug)
*/
/*
.tax-event_type.term-special-events .meetings-wrapper .meeting-card{
  display:none !important;
}
*/
