/* ===== Section card (Figma 434:363 / 419:1836) =====
   Bordered card with a coloured top accent bar, a title + rule, then nested
   content rows (text / accordion / FAQ / contacts). */

.oda-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6e4e0;
  border-radius: 10px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.oda-acc {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.oda-sec__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--oda-sec-accent, #5d42d5);
}
.oda-sec__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.oda-sec__title {
  margin: 0;
  color: #0f0f10;
  font-size: 34px;
  font-weight: 600;
  line-height: 41.8px;
  letter-spacing: -1.14px;
}
.oda-sec__subtitle {
  margin: 0;
  color: #424248;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
/* The row separator is the ONLY thing that creates space between rows — the
   card has no gap and rows carry no margins of their own. */
.oda-sec__rule {
  width: 100%;
  height: 1px;
  margin: 31px 0;
  background: #e6e4e0;
}
/* Opt-out: suppress the auto-rule where the design uses whitespace/grouping
   instead of a visible divider (set via the row's data-no-rule marker). */
.oda-sec__rule--off {
  background: transparent;
}
.oda-sec > .default-content__block {
  margin: 0;
}

/* ----- Text / contact blocks ----- */
.oda-sec__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.oda-sec__h {
  margin: 0;
  color: #0f0f10;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -1.14px;
}
.oda-sec__body {
  color: #424248;
}
.oda-sec__body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 26px;
  color: #424248;
}
.oda-sec__body p:last-child {
  margin-bottom: 0;
}
.oda-sec__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.oda-sec__body li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #424248;
}
.oda-sec__body li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: #c00;
  font-weight: 600;
}
.oda-sec__body strong,
.oda-sec__body b {
  font-weight: 600;
  color: #0f0f10;
}

/* ----- Accordion (panel) ----- */
.oda-acc {
  width: 100%;
}
.oda-acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 23px 24px;
  background: #f4f4f3;
  border: 1px solid #e6e4e0;
  border-radius: 10px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.oda-acc.is-open > .oda-acc__btn {
  border-radius: 10px 10px 0 0;
}
.oda-acc__title {
  color: #0f0f10;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.36px;
}
.oda-acc__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.oda-faq__count {
  color: #87878d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  white-space: nowrap;
}
.oda-acc__chev {
  flex-shrink: 0;
  color: #0f0f10;
  transition: transform 0.25s ease;
}
.oda-acc.is-open > .oda-acc__btn .oda-acc__chev {
  transform: rotate(180deg);
}
.oda-acc__panel {
  display: none;
  padding: 24px;
  border: 1px solid #e6e4e0;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.oda-acc.is-open > .oda-acc__panel {
  display: block;
}
/* Inline text links inside an accordion use the brand red (styled buttons/CTAs
   carry their own class and keep their look). */
.oda-acc__panel a:not([class]) {
  color: #cc0000;
}

/* Accordion content: stacked rows (text / tables / cards / …). */
.oda-acc__content {
  display: flex;
  flex-direction: column;
}
.oda-acc__content > *:not(.oda-sec__rule) {
  margin: 0;
}
/* Title & Description inside an accordion uses a smaller 20px H2 (Figma 550:739). */
.oda-acc__content .default-content__title.h2__size {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.36px;
}

/* ===== Member cards grid (Figma 550:739) — a content row, usable on its own,
   inside an accordion, or inside a Section card. ===== */
.oda-mcards__heading {
  margin: 0 0 17px;
}
.oda-mcards {
  display: grid;
  grid-template-columns: repeat(var(--oda-mcards-cols, 2), minmax(0, 1fr));
  gap: 17px;
}
.oda-mcards--1 {
  grid-template-columns: 1fr;
}
/* An odd last card fills the whole row (matches the Figma 2-up layout). */
.oda-mcards__card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.oda-mcards__card {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 24px;
  border: 1px solid #e6e4e0;
  border-radius: 10px;
}
.oda-mcards__name {
  margin: 0;
  color: #0f0f10;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20.4px;
  letter-spacing: -0.34px;
}
.oda-mcards__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.oda-mcards__list li {
  position: relative;
  padding-left: 20px;
  color: #424248;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}
.oda-mcards__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #c00;
}
@media (max-width: 640px) {
  .oda-mcards {
    grid-template-columns: 1fr;
  }
}

/* Accordion key/value table (legacy / when a table sits inside) */
.oda-acc__inner {
  border: 1px solid #e6e4e0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.oda-acc__table {
  width: 100%;
  border-collapse: collapse;
}
.oda-acc__table th,
.oda-acc__table td {
  padding: 16px;
  border-bottom: 1px solid #e6e4e0;
  font-size: 14px;
  line-height: 20.25px;
  letter-spacing: -0.08px;
  text-align: left;
  vertical-align: top;
}
.oda-acc__table th {
  width: 50%;
  color: #0f0f10;
  font-weight: 600;
}
.oda-acc__table td {
  color: #0f0f10;
  font-weight: 400;
}
.oda-acc__table tr:last-child th,
.oda-acc__table tr:last-child td {
  border-bottom: 0;
}

/* ----- FAQ ----- */
.oda-faq .oda-acc__panel {
  padding: 0 24px 6px;
}
.oda-faq__item {
  border-bottom: 1px solid #e6e4e0;
}
.oda-faq__item:last-child {
  border-bottom: 0;
}
.oda-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 19px 0;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: #0f0f10;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.75px;
  letter-spacing: -0.075px;
}
.oda-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #f4f4f3;
  transition: background 0.2s ease;
}
.oda-faq__icon::before,
.oda-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #0f0f10;
  transform: translate(-50%, -50%);
}
.oda-faq__icon::before {
  width: 11px;
  height: 1.6px;
}
.oda-faq__icon::after {
  width: 1.6px;
  height: 11px;
}
.oda-faq__item.is-open .oda-faq__icon {
  background: #c00;
}
.oda-faq__item.is-open .oda-faq__icon::before {
  background: #fff;
}
.oda-faq__item.is-open .oda-faq__icon::after {
  display: none;
}
.oda-faq__a {
  display: none;
}
.oda-faq__item.is-open .oda-faq__a {
  display: block;
}
.oda-faq__a-inner {
  padding-bottom: 19px;
  color: #424248;
  font-size: 16px;
  line-height: 23.93px;
  letter-spacing: -0.08px;
}
.oda-faq__a-inner p {
  margin: 0 0 12px;
}
.oda-faq__a-inner p:last-child {
  margin-bottom: 0;
}

/* ----- Contacts box (1–2 columns) ----- */
.oda-sec__contacts {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #e6e4e0;
  border-radius: 10px;
  overflow: hidden;
}
.oda-sec__contact {
  flex: 1 1 0;
  min-width: 220px;
  padding: 16px;
  color: #0f0f10;
  font-size: 14px;
  line-height: 20.25px;
  letter-spacing: -0.08px;
}
.oda-sec__contact + .oda-sec__contact {
  border-left: 1px solid #e6e4e0;
}
.oda-sec__contact p {
  margin: 0;
}
.oda-sec__contact strong,
.oda-sec__contact b {
  font-weight: 600;
}
.oda-sec__contact a {
  color: #c00;
  text-decoration: underline;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .oda-sec__title {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.8px;
  }
  .oda-sec__h {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.6px;
  }
  .oda-acc__btn {
    padding: 18px 16px;
  }
  .oda-acc__panel {
    padding: 16px;
  }
  .oda-faq .oda-acc__panel {
    padding: 0 16px 6px;
  }
}
