.content .container {
  margin-bottom: 96px;
}

.header {
  position: relative !important;
}

.breadcrumbs {
  background-color: transparent;
  padding-left: 80px;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    padding-left: 0;
  }
}

.post {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 48px 0;
}
.post .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 768px;
}
.post .date {
  color: var(--Gray-600, #475467);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}
.post .title {
  color: var(--Primary-700, #032eff);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}
@media (max-width: 834px) {
  .post .title {
    font-size: 36px;
    line-height: 48px;
  }
}
.post .note {
  margin-top: 24px;
  margin-bottom: 64px;
  color: var(--Gray-500, #667085);
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}
.post .content {
  max-width: 720px;
}
.post .content p {
  color: var(--Gray-500, #667085);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
.post .content h2 {
  color: var(--Gray-900, #101828);
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  margin-top: 48px;
  margin-bottom: 24px;
}
.post .content ul {
  list-style-type: decimal;
  margin-left: 22px;
}
.post .content ul li {
  color: var(--Gray-500, #667085);
  font-size: 18px;
  font-style: normal;
  line-height: 28px;
}
.post .content ul li a {
  color: var(--Gray-500, #667085);
  font-size: 18px;
  line-height: 28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.divider {
  padding: 0 100px;
  height: 1px;
  width: 100%;
  background-color: #eaecf0;
}

.support {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
.support > span {
  color: var(--Primary-600, #0d3aff);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.support > h1 {
  color: var(--Gray-900, #101828);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin-top: 12px;
}
@media (max-width: 834px) {
  .support > h1 {
    font-size: 36px;
    line-height: 48px;
  }
}
.support > p {
  color: var(--Gray-500, #667085);
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}
.support .list {
  margin-top: 48px;
  display: flex;
  gap: 32px;
}
@media (max-width: 834px) {
  .support .list {
    flex-direction: column;
  }
}
.support .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support .list .item > p {
  margin-top: 16px;
  color: var(--Gray-900, #101828);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.support .list .item > span {
  color: var(--Gray-500, #667085);
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
}
.support .list .item > a {
  color: var(--Primary-700, #032eff);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.support .list .item .icon {
  width: 56px;
  height: 56px;
  border-radius: 100rem;
  background-color: #e8f5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.support .list .item .icon img {
  width: 24px;
  height: 24px;
}
.support .list .item .icon::before {
  content: "";
  width: 40px;
  border-radius: 100rem;
  height: 40px;
  background: #d5ebff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.support .list .item .button {
  margin-top: 20px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.support .list .item .button > span {
  font-size: 16px;
  line-height: 24px;
}