/* Final CSS: GRID (layout-grid) and TABLE (layout-table) */

.akce-custom.layout-grid {
    display: grid;
    gap: 20px;
}

.akce-custom.layout-grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.akce-custom.layout-grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.akce-custom.layout-grid.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.akce-custom.layout-grid.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.akce-custom.layout-grid .kc-box {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    display: block !important;
}

.akce-custom.layout-grid .kc-avatar img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 12px;
}

/* GRID info */
.akce-custom.layout-grid .kc-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

/* TABLE layout */
.akce-custom.layout-table .kc-box {
    display: grid !important;
    grid-template-columns: 30% 70% !important;
    gap: 20px !important;
    align-items: start !important;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pozice-volna-mista {
  color: #ce131a;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.1;
  font-style: italic;
}
.akce-custom.layout-table .kc-avatar img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    display: block;
}
.kc-text p {
  margin-bottom: 0rem;
}
/* TABLE info */
.akce-custom.layout-table .kc-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.akce-custom.layout-table .kc-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

/* common */
.akce-custom .kc-event-date,
.akce-custom .kc-event-time,
.akce-custom .kc-event-price {
  margin-bottom: 6px;
  font-weight: 700;
}
.akce-custom .kc-event-date,
.akce-custom .kc-event-price {
  color: #ce131a;
}
.akce-custom .kc-event-link a {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: #ce131a;
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}
.akce-custom .kc-event-link a:hover,
.akce-custom .kc-event-link a:focus {
  background: #a80f15;
  color: #fff;
}
.akce-custom .kc-text { margin-top:8px; font-size:18px; line-height:1.5; }
.akce-custom .kc-linkedin a { color:#0a66c2; font-weight:600; }

/* responsive */
@media (max-width:760px) {
    .akce-custom.layout-table .kc-box { grid-template-columns: 1fr !important; text-align:center; }
    .akce-custom.layout-table .kc-avatar img { margin:0 auto 12px; max-width:220px; }
    .akce-custom.layout-table .kc-info { text-align:center; align-items:center; }
    .akce-custom.layout-grid.grid-cols-3,
    .akce-custom.layout-grid.grid-cols-4,
    .akce-custom.layout-grid.grid-cols-5,
    .akce-custom.layout-grid.grid-cols-6 { grid-template-columns: 1fr  !important; }
}
