/* Accordion block (acc_) */
.acc_wrapper {
  max-width: 715px;
  margin: 0 auto;
  padding: 0px var(--container-padding, 24px) 90px;
}

.acc_title {
  margin: 0 0 6px;
  color: var(--color-text);
	text-align: center;
}

.acc_subtitle {
  margin: 0 0 35px;
  color: var(--color-text);
		text-align: center;
}

.acc_list {
  display: flex;
	flex-direction: column;
	gap: 16px;
}

.acc_item {
  border-bottom: 1px solid #C4C4C4;
}

.acc_header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 12px;
  background: none;
  border: none;
  cursor: pointer;
	font-family: var(--font-ibm);
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0;
  transition: color 0.2s ease;
	  color: var(--color-text);
	text-align: start;
}

.acc_header:hover {
  color: var(--color-primary);
}

.acc_header_arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.acc_item_open .acc_header_arrow {
  transform: rotate(180deg);
}

.acc_header_arrow img {
  width: 13px;
  height: 14px;
  display: block;
}

.acc_header_text {
  flex: 1;
}

.acc_content_wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc_item_open .acc_content_wrap {
  max-height: 2000px;
}

.acc_content {
  padding: 0 12px 20px;
  color: var(--color-text);
}

.acc_content p {
  margin: 0 0 0.5em;
}

.acc_content p:last-child {
  margin-bottom: 0;
}

.acc_content a {
  color: var(--color-primary);
  text-decoration: none;
}

.acc_content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .acc_wrapper {
    padding: 0px var(--container-padding) 48px;
  }

  .acc_subtitle {
    margin-bottom: 32px;
  }
	.acc_header_text{
		font-size: 16px;
	}
  .acc_header {
    padding: 12px;
  }

  .acc_content {
    padding: 12px;
  }
}
