/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/* === FORCE 4 COLUMNS, FIX BOOTSTRAP LEAKS === */

/* anulează width/float moștenite din Bootstrap */
.agenda-scope .agenda-section .row > .col-sm-4 {
  width: auto !important;
  float: none !important;
  display: block !important;
}

/* 4 coloane chiar în container de ~1200px */
.agenda-scope .agenda-section .row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(260px, 1fr)); /* ↓ prag minim ca să încapă 4 */
  column-gap: 24px;
  row-gap: 26px;
  align-items: stretch;
  justify-items: stretch;
}

/* ajută itemii să nu forțeze lățimea coloanei */
.agenda-scope .agenda-section .row > * {
  min-width: 0; 
}

/* carduri late, dar nu mai înalte */
.agenda-scope .agenda-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #3a3f44;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: hidden;
}

.agenda-scope .box-title {
  background: #3f444a;
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  border-bottom: 1px solid #3a3f44;
  border-radius: 0 12px 0 0;
  font-size: 15px;
}

.agenda-scope .box-content {
  flex: 1;                    /* egalează înălțimile */
  padding: 14px 16px 16px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
}

.agenda-scope .box-item { 
  margin-bottom: 8px; 
  font-size: 15px; 
  color: #444; 
}
.agenda-scope .box-content strong {
  display: block;
  margin-top: 6px;
  font-size: 15.5px;
  font-style: italic;
  color: #333;
}

/* — opțional: puțin mai înguste pe mobil/tabletă — */
@media (max-width: 1050px) {
  .agenda-scope .agenda-section .row {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 650px) {
  .agenda-scope .agenda-section .row {
    grid-template-columns: 1fr;
  }
}
.agenda-scope .agenda-card {
  display: block;
  height: 100%;
}
