/* =========================
   CONCERTS (filters + list)
   ========================= */

.hwm-concerts {
  background-color: var(--clr-4);
  min-height: 90vh;
}

.acf-concerts-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1136px;
  margin: 0 auto;
  padding: 20px 10px;
}

/* FILTERS */
.acf-concerts-filters {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.acf-filter-btn {
  width: clamp(100px, 17vw, 115px);
  height: 80px;
  padding: 0;
  border: 1px solid #ffffff;
  background: #fff;
  border-radius: 0 20px 20px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acf-filter-btn:hover {
  border-color: #000;
}

.acf-filter-btn.is-active {
  border-color: #000;
  box-shadow: 0 0 0 2px #000 inset;
}

.acf-filter-logo {
  width: 86px;
  height: 75px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acf-filter-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* LIST */
.acf-concerts-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #fff;
  padding: var(--module-padding);
  border-radius: var(--border-radius-eri);
}

.acf-concert-row {
  border-radius: inherit;
  overflow: hidden;
  background: #fff;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  border: 1px solid;
}

/* HEAD */
.acf-concert-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--clr-4);
  text-align: left;
}

.acf-concert-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.acf-concert-meta {
  margin-top: 8px;
  opacity: 0.85;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #000;
}

.acf-concert-time {
  font-weight: 600;
}

.acf-concert-sep {
  opacity: 0.6;
}

.acf-concert-head-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.acf-county-logo {
  width: 100px;
  height: 100px;
  border: 1px solid #000;
  border-radius: 0 40px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
}

.acf-county-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}

/* ALUMINE NUPP */
.acf-concert-toggle {
  width: 100%;
  border: 0;
  border-top: 1px solid #000;
  background: #fff;
  padding: 4px 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 0;
  font-weight: 700;
}

.acf-concert-chevron {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -2px;
}

.acf-concert-toggle[aria-expanded="true"] .acf-concert-chevron {
  transform: rotate(-135deg);
}

/* BODY */
.acf-concert-body {
  border-top: 1px solid #fff;
  background: #fff;
}

.acf-concert-body-inner {
  padding: clamp(10px, 4vw, 40px);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .acf-concerts-wrap {
    flex-direction: column;
  }

  .acf-concerts-filters {
    width: 100%;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20;
  }

  .acf-concert-head {
    flex-direction: column;
    align-items: flex-start;
  }

  /* 👇 LOGO ÜLES */
  .acf-concert-head-right {
    order: 1;
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
  }

  .acf-concert-head-left {
    order: 2;
    width: 100%;
  }
}

.hwm-concert-filter-text p {
  margin: 0;
}


@media (max-width: 900px) {
  .hwm-concert-filter-text p {
    margin: 0;
    text-align: center;
  }
}
