.home-page{display:flex;flex-direction:column;gap:26px}@media screen and (max-width:760px){.home-page{gap:20px}}.home-article {
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;
  display: grid;
  gap: var(--space-4);
}

.home-article > p,
.home-article li,
.home-article figcaption,
.home-article td,
.home-article th {
  font-size: 17px;
  line-height: 1.56;
}

.home-article > p {
  margin: 0;
  padding: 0;
}

.home-article > h2,
.home-article > h3,
.home-article > h4,
.home-article > hr,
.home-article > figure,
.home-article > table,
.home-article > ul,
.home-article > ol,
.home-article > div {
  margin: 0;
}

.home-article > h2 {
  margin-top: var(--space-2);
}

.home-article > h3 {
  margin-top: var(--space-1);
}

.home-article > ul,
.home-article > ol {
  padding-left: 22px;
}

.home-article hr {
  width: 100%;
  border: none;
  height: 1px;
  background: #76a2e838;
}

.home-figure {
  margin: 0;
}

.home-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(118, 162, 232, 0.28);
  box-shadow: 0 14px 32px #070e1c6b;
}

.home-figure figcaption {
  margin-top: var(--space-2);
  color: #e9f1ffc7;
  font-size: 14px;
  line-height: 1.45;
}

.home-asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-asset {
  margin: 0;
  background: #132542;
  border: 1px solid rgba(118, 161, 228, 0.34);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px #060c1847;
}

.home-asset img {
  width: 100%;
  height: auto;
  display: block;
}

.home-asset figcaption {
  padding: 10px 12px 12px;
  font-size: 13px;
  color: #e9f1ffdb;
  line-height: 1.4;
}

.home-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 12px;
  align-items: center;
}

.home-logo-grid img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: center;
  background: #142746;
  border: 1px solid rgba(122, 171, 247, 0.34);
  border-radius: 14px;
  padding: 12px 14px;
}

.home-article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(118, 162, 232, 0.26);
  border-radius: 14px;
  overflow: hidden;
  background: #0f1a308c;
}

.home-article thead th {
  background: #142b4ebf;
  color: #f7fbff;
  font-weight: 700;
}

.home-article th,
.home-article td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(118, 162, 232, 0.18);
  vertical-align: top;
  text-align: left;
}

.home-article tr:last-child td,
.home-article tr:last-child th {
  border-bottom: none;
}

@media screen and (max-width: 900px) {
  .home-article {
    gap: 16px;
  }

  .home-asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-logo-grid img {
    height: 54px;
    padding: 10px 12px;
  }

  .home-article table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 640px) {
  .home-article > p,
  .home-article li,
  .home-article figcaption,
  .home-article td,
  .home-article th {
    font-size: 15px;
    line-height: 1.48;
  }

  .home-article > ul,
  .home-article > ol {
    padding-left: 20px;
  }
}

@media screen and (max-width: 520px) {
  .home-asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-asset {
    max-width: 180px;
    width: 100%;
    justify-self: center;
  }

  .home-asset figcaption {
    padding: 8px 10px 10px;
    font-size: 12px;
  }

  .home-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-logo-grid img {
    height: 50px;
  }
}
