@charset "UTF-8";
/*
 * Trikaya Bond Documents — front-end styles.
 */
/*
 * Trikaya Bond Documents — Figma button 446:20133, expanded state 446:20328.
 *
 * Collapsed: only the toggle button is visible.
 * Expanded: heading + document list (public_bond_issue_list view) appear
 * above the button, which relabels itself and flips its arrow.
 *
 * The panel sits *before* the button in the DOM, so no extra positioning is
 * needed to move the button to the bottom on expand — it's simply the next
 * thing after the panel once the panel takes up space.
 *
 * The expand/collapse animation itself is a CSS grid-template-rows trick
 * (0fr -> 1fr): it animates smoothly to the content's natural height
 * (which varies with the number of documents) without any JS measuring
 * scrollHeight. The content also gets a quick fade/slide-in, slightly
 * delayed so it doesn't finish appearing before the row has grown enough
 * to show it.
 */
.trikayaBondDocuments {
  width: 100%;
  background: #ffffff;
}
.trikayaBondDocuments__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .trikayaBondDocuments__inner {
    padding: 60px 40px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .trikayaBondDocuments__inner {
    padding: 60px 80px;
  }
}
.trikayaBondDocuments__panelWrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.trikayaBondDocuments__panelWrap.is-open {
  grid-template-rows: 1fr;
}
.trikayaBondDocuments__panelWrap .trikayaBondDocuments__panel {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-align: left;
}
.trikayaBondDocuments__panelWrap.is-open .trikayaBondDocuments__panel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.trikayaBondDocuments__panelInner {
  overflow: hidden;
  min-height: 0;
}
.trikayaBondDocuments__panel {
  margin-bottom: 50px;
}
.trikayaBondDocuments__heading {
  position: relative;
  display: inline-block;
  margin: 0 0 54px;
  padding-bottom: 12px;
  color: #0c2340;
  font-family: "GillSansMTPro-Bold", "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.2vw, 2.83rem);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .trikayaBondDocuments__heading {
    font-size: 1.7rem;
  }
}
.trikayaBondDocuments__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #e0304c;
}
.trikayaBondDocuments__list .item-list {
  width: 100%;
}
.trikayaBondDocuments__list .list-group {
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: none;
}
.trikayaBondDocuments__list .list-group .list-group-item {
  display: block;
  border: none;
  border-top: 1px solid rgba(12, 35, 64, 0.12);
  padding: 32px 0;
  background: transparent;
}
.trikayaBondDocuments__list .list-group .list-group-item:last-child {
  border-bottom: 1px solid rgba(12, 35, 64, 0.12);
}
.trikayaBondDocuments__list .media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 75px;
}
@media (max-width: 767px) {
  .trikayaBondDocuments__list .media {
    gap: 12px 32px;
  }
}
.trikayaBondDocuments__list .media-body,
.trikayaBondDocuments__list .documentTable__state:empty {
  display: none;
}
.trikayaBondDocuments__list .documentTable__name {
  flex: 1 1 320px;
  min-width: 0;
  margin: 0;
  color: #0c2340;
  font-family: "GillSansMTPro-Book", "Gill Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .trikayaBondDocuments__list .documentTable__name {
    font-size: 1.25rem;
  }
}
.trikayaBondDocuments__list .documentTable__date {
  flex: 0 0 auto;
  color: #aab6c4;
  font-family: "GillSansMTPro-Book", "Gill Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .trikayaBondDocuments__list .documentTable__date {
    font-size: 1.25rem;
  }
}
.trikayaBondDocuments__list .documentTable__file {
  flex: 0 0 auto;
}
.trikayaBondDocuments__list .documentTable__file span {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #aab6c4;
  border-radius: 4px;
  color: #aab6c4;
  font-family: "GillSansMTPro-Bold", "Gill Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
.trikayaBondDocuments__list .documentTable__link {
  flex: 0 0 auto;
}
.trikayaBondDocuments__list .documentTable__link a {
  color: #e0304c;
  font-family: "GillSansMTPro-Medium", "Gill Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .trikayaBondDocuments__list .documentTable__link a {
    font-size: 1.25rem;
  }
}
.trikayaBondDocuments__list .documentTable__link a:hover, .trikayaBondDocuments__list .documentTable__link a:focus-visible {
  color: #0c2340;
}
@media (max-width: 767px) {
  .trikayaBondDocuments__list .list-group-item {
    padding: 20px 0;
  }
  .trikayaBondDocuments__list .media {
    gap: 8px 16px;
  }
  .trikayaBondDocuments__list .documentTable__name {
    flex: 1 1 100%;
    font-size: 1rem;
  }
  .trikayaBondDocuments__list .documentTable__date,
  .trikayaBondDocuments__list .documentTable__link a {
    font-size: 0.9rem;
  }
}
.trikayaBondDocuments__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .trikayaBondDocuments__actions {
    justify-content: center;
  }
}
.trikayaBondDocuments__toggle, .trikayaBondDocuments__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #c8102e;
  color: #ffffff;
  font-family: "GillSansMTPro-Bold", "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.trikayaBondDocuments__toggle:hover, .trikayaBondDocuments__toggle:focus-visible, .trikayaBondDocuments__link:hover, .trikayaBondDocuments__link:focus-visible {
  background: #0c2340;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .trikayaBondDocuments__toggle, .trikayaBondDocuments__link {
    width: 240px;
    justify-content: center;
    padding: 6px 18px;
  }
}
.trikayaBondDocuments__toggleLabel--open {
  display: none;
}
.trikayaBondDocuments__toggle[aria-expanded=true] .trikayaBondDocuments__toggleLabel--closed {
  display: none;
}
.trikayaBondDocuments__toggle[aria-expanded=true] .trikayaBondDocuments__toggleLabel--open {
  display: inline-block;
}
.trikayaBondDocuments__toggle[aria-expanded=true] .trikayaBondDocuments__toggleIcon {
  transform: rotate(180deg);
}
.trikayaBondDocuments__toggleIcon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .trikayaBondDocuments__panelWrap,
  .trikayaBondDocuments__panel,
  .trikayaBondDocuments__toggleIcon {
    transition-duration: 0.001ms !important;
    transform: none !important;
  }
}
.trikayaBondDocuments.alignfull,
[data-align=full] > .trikayaBondDocuments {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.trikayaBondDocuments__surface--editor {
  padding: 16px;
  border: 1px dashed rgba(12, 35, 64, 0.35);
  border-radius: 8px;
}

.trikayaBondDocuments__editorHint {
  margin: 0;
  font-size: 13px;
  color: rgba(12, 35, 64, 0.6);
}
