

.msp-detail {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 84px;
  color: #082a43;
}

.msp-detail__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #78909e;
  font-size: 11px;
}

.msp-detail__breadcrumbs a {
  color: #5e7d91;
  text-decoration: none;
}

.msp-detail__breadcrumbs a:hover {
  color: #087fc8;
}

.msp-detail__hero {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(260px, .82fr);
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      132deg,
      #082a43 0%,
      #0a3b5c 55%,
      #087fc8 145%
    );
  box-shadow:
    0 22px 54px
    rgba(8, 42, 67, .13);
}

.msp-detail__hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 52px;
}

.msp-detail__hero-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
}

.msp-detail__eyebrow,
.msp-detail__status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.msp-detail__eyebrow {
  border: 1px solid rgba(105, 200, 244, .35);
  color: #69c8f4;
  background: rgba(105, 200, 244, .07);
}

.msp-detail__status {
  color: #b8f1dd;
  background: rgba(72, 194, 142, .12);
}

.msp-detail__status.is-planned {
  color: #ffe5a2;
  background: rgba(241, 189, 75, .14);
}

.msp-detail__status.is-completed,
.msp-detail__status.is-archive {
  color: #d4e0e7;
  background: rgba(212, 224, 231, .1);
}

.msp-detail__title {
  max-width: 790px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.msp-detail__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.6;
}

.msp-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.msp-detail__primary-action,
.msp-detail__secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.msp-detail__primary-action {
  color: #082a43;
  background: #69c8f4;
}

.msp-detail__primary-action:hover {
  background: #8bd7f8;
}

.msp-detail__secondary-action {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.msp-detail__secondary-action:hover {
  background: rgba(255,255,255,.11);
}

.msp-detail__hero-system {
  position: relative;
  min-height: 360px;
}

.msp-detail__hero-ring {
  position: absolute;
  width: 330px;
  height: 330px;
  top: 18px;
  right: -48px;
  border: 1px solid rgba(105,200,244,.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(105,200,244,.035),
    0 0 0 95px rgba(105,200,244,.022);
}

.msp-detail__hero-system::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 102px;
  right: 118px;
  border-radius: 50%;
  background: #69c8f4;
  box-shadow:
    -80px 74px 0 rgba(105,200,244,.58),
    54px 116px 0 rgba(105,200,244,.45),
    -118px 178px 0 rgba(105,200,244,.32);
}

.msp-detail__hero-system > span {
  position: absolute;
  right: 60px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(105,200,244,0),
      rgba(105,200,244,.44),
      rgba(105,200,244,0)
    );
}

.msp-detail__hero-system > span:nth-of-type(1) {
  width: 245px;
  top: 120px;
  transform: rotate(-19deg);
}

.msp-detail__hero-system > span:nth-of-type(2) {
  width: 205px;
  top: 207px;
  transform: rotate(15deg);
}

.msp-detail__hero-system > span:nth-of-type(3) {
  width: 165px;
  top: 282px;
  transform: rotate(-8deg);
}

.msp-detail__meta {
  display: grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(170px, 1fr)
    );
  margin: 14px 0 52px;
  overflow: hidden;
  border: 1px solid #dce8ef;
  border-radius: 15px;
  background: #fff;
}

.msp-detail__meta-item {
  min-height: 82px;
  padding: 17px 21px;
  border-right: 1px solid #e4edf2;
}

.msp-detail__meta-item:last-child {
  border-right: 0;
}

.msp-detail__meta-item span,
.msp-detail__meta-item strong {
  display: block;
}

.msp-detail__meta-item span {
  margin-bottom: 6px;
  color: #8aa0ae;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.msp-detail__meta-item strong {
  color: #082a43;
  font-size: 16px;
  line-height: 1.3;
}

.msp-detail__sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.msp-detail__section {
  position: relative;
  padding: 32px 36px 34px;
  border: 1px solid #dce8ef;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 10px 28px
    rgba(8,42,67,.04);
}

.msp-detail__section--notice {
  border-left: 4px solid #087fc8;
  background: #f7fbfe;
}

.msp-detail__section--catalog {
  border-color: #b8dced;
  background:
    linear-gradient(
      135deg,
      #f7fbfd,
      #fff
    );
}

.msp-detail__section-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.msp-detail__section-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #cfe2ec;
  border-radius: 10px;
  color: #087fc8;
  background: #f5fafc;
  font-size: 11px;
  font-weight: 800;
}

.msp-detail__section-header h2 {
  margin: 1px 0 7px;
  color: #082a43;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.msp-detail__section-header p {
  max-width: 760px;
  margin: 0;
  color: #6b8392;
  font-size: 13px;
  line-height: 1.55;
}

.msp-detail__section-body {
  max-width: 920px;
  margin:
    24px
    0
    0
    59px;
  color: #334f61;
  font-size: 15px;
  line-height: 1.72;
}

.msp-detail__section-body p:first-child {
  margin-top: 0;
}

.msp-detail__section-body p:last-child {
  margin-bottom: 0;
}

.msp-detail__section-body h3 {
  margin: 27px 0 10px;
  color: #082a43;
  font-size: 19px;
}

.msp-detail__section-body ul,
.msp-detail__section-body ol {
  padding-left: 24px;
}

.msp-detail__section-body li + li {
  margin-top: 7px;
}

.msp-detail__links,
.msp-detail__form-action {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin:
    24px
    0
    0
    59px;
}

.msp-detail__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 245px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #cce1ec;
  border-radius: 10px;
  color: #087fc8;
  background: #f8fbfd;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.msp-detail__link:hover {
  border-color: #8fc8e3;
  background: #eff8fc;
}

.msp-detail__section--documents:empty {
  display: none;
}

.msp-detail__footer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #e3edf2;
}

.msp-detail__back {
  color: #087fc8;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.msp-detail__back:hover {
  text-decoration: underline;
}

@media (max-width: 880px) {

  .msp-detail__hero {
    grid-template-columns: 1fr;
  }

  .msp-detail__hero-system {
    display: none;
  }

  .msp-detail__meta-item {
    border-right: 0;
    border-bottom: 1px solid #e4edf2;
  }

  .msp-detail__meta-item:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 640px) {

  .msp-detail {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .msp-detail__hero {
    min-height: 0;
    border-radius: 18px;
  }

  .msp-detail__hero-copy {
    padding: 32px 24px;
  }

  .msp-detail__title {
    font-size: 30px;
  }

  .msp-detail__section {
    padding: 24px 20px;
  }

  .msp-detail__section-header {
    grid-template-columns: 1fr;
  }

  .msp-detail__section-body,
  .msp-detail__links,
  .msp-detail__form-action {
    margin-left: 0;
  }

}





.msp-detail__document-groups {
  display: flex;
  flex-direction: column;
  gap: 26px;

  margin:
    28px
    0
    0
    59px;
}

.msp-detail__document-group {
  padding-top: 4px;
}

.msp-detail__document-group > h3 {
  margin:
    0
    0
    16px;

  color: #082a43;

  font-size: 19px;
  line-height: 1.25;
}

.msp-detail__document-class + .msp-detail__document-class {
  margin-top: 22px;
}

.msp-detail__document-class > h4 {
  margin:
    0
    0
    10px;

  color: #60798a;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .04em;
  text-transform: uppercase;
}

.msp-detail__document-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.msp-detail__document {
  display: grid;

  grid-template-columns:
    42px
    minmax(0, 1fr)
    28px;

  gap: 14px;

  align-items: center;

  min-height: 70px;

  padding:
    12px
    14px;

  border:
    1px solid
    #d8e6ee;

  border-radius: 12px;

  color: inherit;

  background: #fbfdfe;

  text-decoration: none;

  transition:
    border-color .18s ease,
    background .18s ease,
    transform .18s ease;
}

.msp-detail__document:hover {
  border-color: #9acde6;
  background: #f4fafc;

  transform: translateY(-1px);
}

.msp-detail__document-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 9px;

  color: #087fc8;
  background: #eaf5fa;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .06em;
}

.msp-detail__document-copy {
  min-width: 0;
}

.msp-detail__document-copy strong,
.msp-detail__document-description,
.msp-detail__document-meta {
  display: block;
}

.msp-detail__document-copy strong {
  color: #082a43;

  font-size: 13px;
  line-height: 1.35;
}

.msp-detail__document-description {
  margin-top: 4px;

  color: #647d8d;

  font-size: 12px;
  line-height: 1.4;
}

.msp-detail__document-meta {
  display: flex;
  gap: 6px;

  margin-top: 6px;

  color: #8ca0ad;

  font-size: 10px;
}

.msp-detail__document-open {
  color: #087fc8;

  font-size: 15px;
  font-weight: 800;

  text-align: center;
}

@media (max-width: 640px) {

  .msp-detail__document-groups {
    margin-left: 0;
  }

  .msp-detail__document {
    grid-template-columns:
      38px
      minmax(0, 1fr)
      22px;

    gap: 10px;
  }

}






.msp-detail__document-groups {
  gap: 10px;
}

.msp-detail__document-group {
  padding: 0;
  border: 1px solid #d8e6ee;
  border-radius: 13px;
  overflow: hidden;
  background: #fbfdfe;
}

.msp-detail__document-group + .msp-detail__document-group {
  margin-top: 0;
}

.msp-detail__document-group-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  min-height: 66px;
  padding: 14px 18px;

  cursor: pointer;
  user-select: none;

  list-style: none;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbfd 100%
    );

  transition:
    background .18s ease,
    color .18s ease;
}

.msp-detail__document-group-summary::-webkit-details-marker {
  display: none;
}

.msp-detail__document-group-summary::marker {
  display: none;
  content: "";
}

.msp-detail__document-group-summary:hover {
  background: #f1f8fb;
}

.msp-detail__document-group-heading {
  min-width: 0;
}

.msp-detail__document-group-heading strong,
.msp-detail__document-group-heading span {
  display: block;
}

.msp-detail__document-group-heading strong {
  color: #082a43;

  font-size: 16px;
  line-height: 1.3;
}

.msp-detail__document-group-heading span {
  margin-top: 4px;

  color: #78909e;

  font-size: 11px;
  line-height: 1.3;
}

.msp-detail__document-group-toggle {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 1px solid #c8dce7;
  border-radius: 9px;

  color: #087fc8;
  background: #fff;

  font-size: 20px;
  font-weight: 400;
  line-height: 1;

  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.msp-detail__document-group[open]
  > .msp-detail__document-group-summary
  .msp-detail__document-group-toggle {
  transform: rotate(45deg);

  border-color: #9bcce4;
  background: #eaf6fb;
}

.msp-detail__document-group[open]
  > .msp-detail__document-group-summary {
  border-bottom: 1px solid #dce8ef;
  background: #f5fafc;
}

.msp-detail__document-group-content {
  padding: 18px;
}

.msp-detail__document-group-content
  .msp-detail__document-class:first-child {
  margin-top: 0;
}

.msp-detail__document-class > h4 {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 9px;
}

.msp-detail__document-class > h4::before {
  content: "";

  display: block;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #087fc8;
}

.msp-detail__document-list {
  gap: 7px;
}

.msp-detail__document {
  min-height: 62px;

  background: #fff;
}

@media (max-width: 640px) {

  .msp-detail__document-group-summary {
    min-height: 60px;

    padding: 12px 14px;
  }

  .msp-detail__document-group-heading strong {
    font-size: 14px;
  }

  .msp-detail__document-group-content {
    padding: 12px;
  }

}






.msp-detail__section--media {
  position: relative;
}

.msp-detail__media-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.msp-detail__media-card {
  overflow: hidden;

  border: 1px solid #d8e6ee;
  border-radius: 14px;

  background: #fff;
}

.msp-detail__media-copy {
  padding: 18px 20px;
}

.msp-detail__media-copy h3 {
  margin: 0;

  color: #082a43;

  font-size: 18px;
  line-height: 1.3;
}

.msp-detail__media-copy p {
  margin: 8px 0 0;

  color: #60798a;

  font-size: 13px;
  line-height: 1.5;
}

.msp-detail__video {
  display: block;

  width: 100%;
  height: auto;
  max-width: 100%;

  background: #082a43;
}

@media (max-width: 640px) {

  .msp-detail__media-copy {
    padding: 14px;
  }

  .msp-detail__media-copy h3 {
    font-size: 16px;
  }

}






.msp-detail__media-group {
  margin-top: 10px;

  border: 1px solid #d8e6ee;
  border-radius: 13px;

  overflow: hidden;

  background: #fbfdfe;
}

.msp-detail__media-group-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  min-height: 66px;
  padding: 14px 18px;

  cursor: pointer;
  user-select: none;

  list-style: none;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbfd 100%
    );

  transition:
    background .18s ease,
    color .18s ease;
}

.msp-detail__media-group-summary::-webkit-details-marker {
  display: none;
}

.msp-detail__media-group-summary::marker {
  content: "";
}

.msp-detail__media-group-summary:hover {
  background: #f1f8fb;
}

.msp-detail__media-group-heading {
  min-width: 0;
}

.msp-detail__media-group-heading strong,
.msp-detail__media-group-heading span {
  display: block;
}

.msp-detail__media-group-heading strong {
  color: #082a43;

  font-size: 16px;
  line-height: 1.3;
}

.msp-detail__media-group-heading span {
  margin-top: 4px;

  color: #78909e;

  font-size: 11px;
  line-height: 1.3;
}

.msp-detail__media-group-toggle {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 1px solid #c8dce7;
  border-radius: 9px;

  color: #087fc8;
  background: #fff;

  font-size: 20px;
  line-height: 1;

  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.msp-detail__media-group[open]
  > .msp-detail__media-group-summary
  .msp-detail__media-group-toggle {
  transform: rotate(45deg);

  border-color: #9bcce4;
  background: #eaf6fb;
}

.msp-detail__media-group[open]
  > .msp-detail__media-group-summary {
  border-bottom: 1px solid #dce8ef;

  background: #f5fafc;
}

.msp-detail__media-group-content {
  padding: 18px;
}

.msp-detail__media-group-content
  .msp-detail__media-card {
  margin: 0;
}

@media (max-width: 640px) {

  .msp-detail__media-group-summary {
    min-height: 60px;

    padding: 12px 14px;
  }

  .msp-detail__media-group-heading strong {
    font-size: 14px;
  }

  .msp-detail__media-group-content {
    padding: 12px;
  }

}






.msp-detail__section--webinars {
  position: relative;
}

.msp-detail__webinar-groups {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.msp-detail__webinar-group {
  overflow: hidden;
  border: 1px solid rgba(23, 53, 92, .14);
  border-radius: 16px;
  background: #fff;
}

.msp-detail__webinar-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.msp-detail__webinar-summary::-webkit-details-marker {
  display: none;
}

.msp-detail__webinar-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.msp-detail__webinar-heading strong {
  font-size: 18px;
  line-height: 1.35;
}

.msp-detail__webinar-heading > span {
  font-size: 13px;
  opacity: .62;
}

.msp-detail__webinar-toggle {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(30, 93, 220, .08);
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
}

.msp-detail__webinar-group[open]
  .msp-detail__webinar-toggle {
  transform: rotate(45deg);
}

.msp-detail__webinar-content {
  padding: 0 22px 22px;
}

.msp-detail__webinar-description {
  margin: 0 0 16px;
}

.msp-detail__webinar-document {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(30, 93, 220, .05);
  text-decoration: none;
}

.msp-detail__webinar-document > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msp-detail__webinar-document small {
  opacity: .62;
}

@media (max-width: 640px) {
  .msp-detail__webinar-summary,
  .msp-detail__webinar-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .msp-detail__webinar-heading strong {
    font-size: 16px;
  }
}


