/*
  general
  header
  accordion+card
  accordion
  card
  mobile
*/

/* general
============================================================================ */

.index-textaccordion {
  display: flex;
  max-width: 1440px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pos-gap-section-title-content, 80px);
  align-self: stretch;
  margin: 0 auto;
  padding: var(--pos-gap-section-section, 240px) var(--pos-gap-page-content-x-margin, 40px) 0;
}

/* header
============================================================================ */

.textaccordion-header {
  flex-direction: column;
  align-items: center;
  gap: var(--pos-gap-tag-v, 8px);
  align-self: stretch;
}

.textaccordion-header h1 {
  align-self: stretch;
  font-size: var(--pos-headline-3, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: var(--pos-headline-3-line-height, 32px);
  background: linear-gradient(270deg, var(--subheader-news-gradient-from, #2173c4) 96.21%, var(--subheader-news-gradient-to, #0f7b0a) 99.96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.textaccordion-header h2 {
  align-self: stretch;
  color: var(--pos-color-prominent, #141414);
  font-size: var(--pos-headline-1, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: var(--pos-headline-1-line-height, 48px);
}

/* accordion + card
============================================================================ */

.textaccordion-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--pos-gap-section-title-content, 40px);
  align-self: stretch;
  z-index: 5;
}

.textaccordion-content-padding {
  padding: 0 var(--pos-gap-section-section, 40px);
}

/* accordion
============================================================================ */

.textaccordion-accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.textaccordion-accordion .accordion {
  display: flex;
  flex-direction: column;
  padding: var(--pos-gap-n-button, 16px) 0px;
  gap: 8px;
  align-self: stretch;
  border-bottom: 1px solid var(--pos-color-divider-lines, #e2e8f0);
}

.textaccordion-accordion details summary {
  list-style-type: none;
  cursor: pointer;
}

.textaccordion-accordion details summary::-webkit-details-marker {
  display: none;
}

/* For Firefox */
.textaccordion-accordiondetails summary::marker {
  display: none;
}

.textaccordion-accordion .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;

  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}

.textaccordion-accordion .accordion-button h3 {
  color: var(--pos-color-prominent, #141414);
  font-size: var(--pos-headline-4, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: var(--pos-headline-4-line-height, 28px);
  transition: all 0.3s ease;
  max-width: 90%;
}

.textaccordion-accordion details[open] .accordion-button h3 {
  background: linear-gradient(270deg, #2173C4 45.71%, #0F7B0A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.textaccordion-accordion details[open] .header-gradient-arrow {
  transform: rotate(180deg);
}

.textaccordion-accordion .accordion-content {
  display: flex;
  flex-direction: column;
  padding: var(--pos-gap-step-step, 24px);
  justify-content: center;
  gap: 10px;
  align-self: stretch;

  border-radius: var(--pos-corner-panel, 4px);
  background: var(--pos-color-panel-background, #fff);
}

.textaccordion-accordion .accordion-content ul{
  list-style: disc;
  padding-left: 30px;
}

.textaccordion-accordion .accordion-content ul li {
 margin-top: 4px;
}

/* card
============================================================================ */

.textaccordion-card {
  display: flex;
  width: 414px;
  padding: var(--pos-padding-cards-boxes, 40px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pos-gap-section-elements, 40px);
  align-self: stretch;
  z-index: 5;

  border-radius: var(--pos-corner-panel, 4px);
  border: 1px solid var(--card-border-gradient-from, #e2e8f0);
  background: linear-gradient(141deg, var(--pos-color-panel-background, rgba(255, 255, 255, 0.80)) 1.6%, var(--pos-color-page-background, rgba(247, 248, 250, 0.80)) 98.37%);
}

.textaccordion-card .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--pos-corner-panel, 4px);
}

.textaccordion-accordion .arrow-down-slide {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: -5px;
  transition: transform 0.3s ease;
}

.textaccordion-card .icon svg {
  display: flex;
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: var(--pos-corner-panel, 4px);
  background: var(--pos-color-panel-background, #fff);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.textaccordion-card h1 {
  align-self: stretch;
  color: var(--pos-color-prominent, #141414);
  font-size: var(--pos-headline-2, 1.875rem);
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.textaccordion-card p {
  align-self: stretch;
  color: var(--pos-color-normal, #374151);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* mobile
============================================================================ */

@media (max-width: 768px) {
  .textaccordion-header h1 {
    font-size: var(--pos-headline-2, 1.25rem);
    line-height: var(--pos-headline-2-Line-height, 24px);
  }

  .textaccordion-header h2 {
    font-size: var(--pos-headline-1, 1.75rem);
    line-height: var(--pos-headline-1-line-height, 28px);
  }

  .textaccordion-content {
    flex-direction: column;
    gap: var(--pos-gap-section-elements, 40px);
  }

  .textaccordion-content-padding {
    padding: 0;
  }

  .textaccordion-card {
    width: 100%;
  }
}
