.events {
  max-width: 1100px;
  margin: 0 auto;
  color: #121212;
}

/* Intro */
.events__intro {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.events__intro-text h2 {
  text-align: left;
margin: 0;
font-size: 28px;
padding: 0 0 20px;
}
.events__intro-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 12px;
}

.events__intro-strong {
  font-weight: 700;
  color: #121212;
}

.events__intro-media {
  display: grid;
  place-items: center;
}

.events__intro-img {
  width: 240px;
  height: auto;

}

.events__intro-text {
    max-width: 75%;
}

/* List */
.events__list h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 30px;
}

.event-card {
  position: relative;
  background: #ffffff;
  padding: 28px 30px;
  margin: 18px 0;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  display: flex;
  gap: 10px 16px;
  align-items: center;
}

.event-card a {
  text-decoration: none;

}

.event-card a:hover {
  color: #8C67F6;

}





.event-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  width: 40%;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  grid-column: 1 / 2;
    width: 60%;
}

section.event-detail .container {
    padding-bottom: 0;
}

.event-card__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #6B7280;
  white-space: nowrap;
}

.event-card__icon {
  display: inline-grid;
}

.event-card__link {
  align-self: center;
  justify-self: end;
  font-weight: 600;
  color: #7B61FF;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  width: 10%;
}

.event-card__link span {
  content: url(../images/arrow-right-akce.svg);
}

/* Responsive */
@media (max-width: 900px) {
  .events__intro {
    flex-direction: column;
    padding: 0;
    margin: 0 0 30px;
  }

  .events__intro-text {
    max-width: 100%;
}

  .events__intro-img {
    max-width: 100%;
  }

  .events__intro-media {
    display: none;
}

}

@media (max-width: 640px) {
  .events {
    padding: 32px 0;
  }

  .event-card {
    grid-template-columns: 1fr;
            padding: 34px;

            flex-direction: column;
  }

.event-card__link,
.event-card__meta,
.event-card__title {
    width: 100%;
}

.event-card__link {
      justify-content: flex-start;
}

  .event-card__link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .event-card__meta {
    gap: 8px 14px;
  }
}








.event-detail {
  max-width: 750px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #111827;
}

/* header */
.event-detail__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F1EEFF;
  color: #7B61FF;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 14px;
}

.event-detail__title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #7B61FF;
  margin: 0 0 18px 0;
}

.event-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-bottom: 18px;
}

.event-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: #111827;
}

.event-detail__icon {
  display: inline-grid;
}

.event-detail__place {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-detail__place:hover {
  color: #7B61FF;
}

.event-detail__perex {
  font-size: 17px;
  line-height: 1.7;
  color: #4B5563;
  max-width: 720px;
  margin: 0;
}

/* topics */
.event-detail__topics {
  margin-top: 44px;
}

.event-detail__topics-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 18px 0;
    text-align: left;
    color: #000 !important;
}


a.bg-purple.button.left {
    margin: 30px 0 0;
}

/* single topic row */
.topic {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid #E7E1FF;
}

.topic:last-child {
  border-bottom: none;
}

.topic__num {
  font-weight: 800;
  color: #7B61FF;
  font-size: 20px;
  line-height: 1;
  padding-top: 4px;
  background: linear-gradient(to right, #8C67F6, #C675FF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.topic__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111827;
}

.topic__content ul {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.7;
  list-style: square;
}

.topic__content li {
  margin: 4px 0;
}

/* responsive */
@media (max-width: 700px) {
  .event-detail {
    padding: 32px 16px;
  }

  .event-detail__title {
    font-size: 32px;
  }

  .event-detail__meta-item {
    font-size: 15px;
  }

  .topic {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .topic__num {
    font-size: 16px;
  }

  .topic__content h3 {
    font-size: 18px;
  }
}




/* wrapper */
.cf7-reserve {
  max-width: 760px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #111827;
}

/* rows */
.cf7-reserve .cf7-row {
  margin-bottom: 22px;
}

.cf7-reserve .cf7-row--2 {
  display: flex;
justify-content: space-between;
    gap: 50px;
}


.cf7-reserve .cf7-input:focus {
  border-color: #8B6CFF;
  box-shadow: 0 0 0 4px rgba(139,108,255,0.12);
}

/* consent */
.cf7-reserve .cf7-row--consent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}




.cf7-reserve .cf7-consent-text {
  font-size: 20px;
  color: #111827;
}

.cf7-reserve .cf7-consent-text a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cf7-reserve .cf7-consent-text a:hover {
  color: #7B61FF;
}

/* submit */
.cf7-reserve .cf7-row--submit {
  text-align: center;
  margin-top: 26px;
}



.cf7-reserve .cf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(123,97,255,0.32);
}

.cf7-reserve .cf7-submit:active {
  transform: translateY(0);
  opacity: .9;
}

/* responsive */
@media (max-width: 640px) {

}
