@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");

.wsm-grid { display: grid; gap: 30px; margin: 30px 0; width: 100%; }
.wsm-cols-1 { grid-template-columns: 1fr; }
.wsm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wsm-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .wsm-cols-2, .wsm-cols-3 { grid-template-columns: 1fr; } }

.wsm-card { background: #f5eaed; border-radius: 20px; padding: 12px; width: 100%; transition: transform 0.2s ease; box-sizing: border-box; }
.wsm-card:hover { transform: translateY(-3px); }

.wsm-card-inner { background: var(--wsm-bg, #9e7383); border-radius: 14px; overflow: hidden; }
.wsm-card-content { padding: 45px 30px 35px; text-align: center; font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; }

.wsm-illustration { margin-bottom: 18px; }
.wsm-illustration img { width: 110px; height: 110px; object-fit: contain; }

.wsm-title { font-family: "Alfa Slab One", serif; font-weight: 400; font-size: 2.2rem; color: #e8a817; margin: 0 0 14px; text-shadow: 1px 1px 2px rgba(0,0,0,0.15); }

.wsm-beschrijving { font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; font-weight: 700; font-size: 1.2rem; color: #ffffff; margin: 0 0 20px; }

.wsm-details { display: flex; justify-content: center; gap: 35px; flex-wrap: wrap; margin-bottom: 18px; font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; }
.wsm-detail { font-size: 1.15rem; color: rgba(255,255,255,0.9); }

.wsm-aanmelden-text { font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; font-weight: 700; font-size: 1rem; color: #e8a817; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 14px; }
.wsm-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.wsm-btn { display: inline-block; padding: 12px 32px; font-family: "Alfa Slab One", serif; font-weight: 400; font-size: 1rem; text-decoration: none; border-radius: 6px; transition: all 0.2s ease; border: 2px solid transparent; }
.wsm-btn-whatsapp, .wsm-btn-instagram { background: #f0b828; color: #000000; }
.wsm-btn-whatsapp:hover, .wsm-btn-instagram:hover { background: #e5a710; color: #000000; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.wsm-no-workshops { text-align: center; padding: 40px; font-style: italic; color: #666; font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; }

/* Inactive card — same look, just no buttons */
.wsm-card-inactive { }
.wsm-card-inactive .wsm-card-inner { }
.wsm-inactive-text { font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; font-size: 0.95rem; color: rgba(255,255,255,0.85); font-style: italic; margin: 10px 0 0; padding: 8px 20px; background: rgba(255,255,255,0.1); border-radius: 20px; display: inline-block; }
