.kv {
  margin: 0 auto;
}

.kv__image {
  border: 1px solid var(--c-color-gray-2);
  border-radius: var(--c-radius);
  overflow: hidden;
  background: var(--c-color-white);
  box-shadow: var(--c-shadow);
}

.kv__img {
  width: 100%;
  height: auto;
  display: block;
}

.message__text {
  color: var(--c-color-gray);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.message__text p + p {
  margin-top: 0.9em;
}

.section {
  padding: 48px 0;
}

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  text-align: center;
}

.section__title {
  color: var(--c-color-black);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section__subtitle {
  margin-top: 6px;
  color: var(--c-color-gray);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section__contents {
  width: 100%;
}

.section__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section__items--rows {
  border: 1px solid var(--c-color-gray-2);
  overflow: hidden;
  background: var(--c-color-white);
  box-shadow: var(--c-shadow);
}

.numbered {
  width: 100%;
}

.numbered__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: numbered-item;
}

.numbered-item {
  background-color: var(--c-color-white);
  position: relative;
  padding: 16px;
  padding-left: 40px;
  counter-increment: numbered-item;
}

.numbered-item__number {
  position: absolute;
  top: 20px;
  left: 0;
  color: rgb(245, 199, 124);
  font-size: 30px;
  line-height: 1;
}

.numbered-item__number::before {
  content: counter(numbered-item);
}

.numbered-item__title {
  color: var(--c-color-black);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.numbered-item__text {
  color: var(--c-color-gray);
  font-size: 14px;
  line-height: 1.75;
}

.event {
  width: 100%;
}

.event__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-item {
  border: 1px solid var(--c-color-gray-2);
  border-radius: var(--c-radius);
  background: var(--c-color-white);
  box-shadow: var(--c-shadow);
  padding: 14px 16px;
}

.event-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.event-item__date {
  color: rgba(100, 116, 139, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.event-item__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.event-item__title {
  margin-top: 6px;
  color: var(--c-color-black);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
}

.event-item__text {
  margin-top: 8px;
  color: var(--c-color-gray);
  font-size: 14px;
  line-height: 1.75;
}

.event-item__actions {
  margin-top: 10px;
}

.info {
  width: 100%;
}

.info__items {
  border: 1px solid var(--c-color-gray-2);
  overflow: hidden;
  background: var(--c-color-white);
  box-shadow: var(--c-shadow);
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid var(--c-color-gray-2);
  background: var(--c-color-white);
}

.info__items .info-item:first-child {
  border-top: none;
}

.info-item__label {
  color: rgba(100, 116, 139, 0.95);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.info-item__value {
  color: var(--c-color-black);
  font-size: 14px;
  line-height: 1.7;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.06);
  color: var(--c-color-red);
  font-size: 12px;
  font-weight: 800;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.faq-item__q {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0b1220;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.faq-item__q:hover {
  background: #f9fafb;
}

.faq-item__q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #64748b;
  transition: transform 0.2s;
}

.faq-item.s_open .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
}

.faq-item__a p + p {
  margin-top: 1em;
}
