.soro-page {
  --brass-dark: #6f552d;
  overflow: hidden;
  background: var(--paper);
}

.soro-page-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 82px;
  color: var(--white);
  background: var(--ink);
}

.soro-page-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000, transparent 100%);
}

.soro-page-hero__glow {
  position: absolute;
  width: 700px;
  height: 470px;
  top: -290px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 145, 162, 0.35), transparent 68%);
  filter: blur(24px);
}

.soro-page-hero__inner {
  position: relative;
  z-index: 1;
}

.soro-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 66px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.soro-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.soro-breadcrumb a:hover {
  color: var(--brass-light);
}

.soro-page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 90px;
}

.soro-page-hero h1 {
  max-width: 850px;
  font-size: clamp(53px, 5.6vw, 84px);
  letter-spacing: -0.045em;
}

.soro-page-hero__layout > p {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 17px;
  line-height: 1.72;
}

.soro-feed {
  padding: 108px 0 118px;
}

.soro-feed__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}

.soro-feed__heading h2 {
  font-size: clamp(42px, 4.4vw, 64px);
  letter-spacing: -0.038em;
}

.soro-feed__heading > a {
  margin-bottom: 8px;
  color: var(--brass-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.soro-feed__heading > a span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.soro-feed__heading > a:hover span {
  transform: translateX(4px);
}

.soro-widget-shell {
  min-height: 280px;
}

.soro-connect-state {
  min-height: 280px;
  display: grid;
  place-content: center;
  padding: 55px;
  border: 1px solid var(--line);
  background: var(--ivory);
  text-align: center;
}

.soro-connect-state span {
  color: var(--brass-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.soro-connect-state strong {
  margin-top: 15px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.soro-connect-state p {
  max-width: 520px;
  margin: 12px auto 0;
  color: #65727a;
  font-size: 14px;
}

.soro-connect-state a {
  color: var(--brass-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#soro-blog .soro-blog {
  max-width: none;
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
}

#soro-blog .soro-blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

#soro-blog .soro-blog-card {
  min-width: 0;
  min-height: 475px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 31px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
  transition: background 180ms ease, transform 180ms ease;
}

#soro-blog .soro-blog-card:hover {
  border-color: transparent;
  background: var(--white);
  box-shadow: none;
  transform: translateY(-2px);
}

#soro-blog .soro-blog-card-image {
  width: 100%;
  height: 270px;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.03);
}

#soro-blog .soro-blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 29px 30px 0;
}

#soro-blog h2.soro-blog-card-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

#soro-blog .soro-blog-card-excerpt {
  display: -webkit-box;
  margin: 15px 0 24px;
  overflow: hidden;
  color: #5f6d75;
  font-size: 14px;
  line-height: 1.66;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#soro-blog .soro-blog-card-date {
  display: block;
  margin-top: auto;
  color: var(--brass-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#soro-blog .soro-blog-header {
  max-width: 860px;
  margin: 0 auto 30px;
}

#soro-blog .soro-blog-back {
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: #53616a;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#soro-blog .soro-blog-back:hover {
  border-color: var(--brass);
  color: var(--ink);
  background: var(--ivory);
}

#soro-blog .soro-blog-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 66px 66px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(13, 25, 32, 0.09);
}

#soro-blog .soro-blog-article-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

#soro-blog .soro-blog-article-date {
  display: block;
  margin: 21px 0 36px;
  color: var(--brass-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#soro-blog .soro-blog-article-image {
  width: calc(100% + 132px);
  max-height: 500px;
  margin: 0 -66px 42px;
  border-radius: 0;
  object-fit: cover;
}

#soro-blog .soro-blog-article-content {
  color: #35464f;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

#soro-blog .soro-blog-article-content h1,
#soro-blog .soro-blog-article-content h2,
#soro-blog .soro-blog-article-content h3 {
  margin-top: 45px;
  margin-bottom: 17px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.14;
}

#soro-blog .soro-blog-article-content h2 {
  font-size: 36px;
}

#soro-blog .soro-blog-article-content h3 {
  font-size: 28px;
}

#soro-blog .soro-blog-article-content p {
  margin: 0 0 21px;
}

#soro-blog .soro-blog-article-content ul,
#soro-blog .soro-blog-article-content ol {
  margin: 0 0 24px;
  padding-left: 25px;
}

#soro-blog .soro-blog-article-content li {
  margin-bottom: 10px;
}

#soro-blog .soro-blog-article-content a {
  color: var(--brass-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

#soro-blog .soro-blog-article-content blockquote {
  margin: 34px 0;
  padding: 5px 0 5px 27px;
  border-left: 2px solid var(--brass);
  color: #53616a;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.45;
}

#soro-blog .soro-blog-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

#soro-blog .soro-blog-article-content table,
#soro-blog .soro-blog-article-content pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

#soro-blog .soro-blog-article-content table {
  width: 100%;
  border-collapse: collapse;
}

#soro-blog .soro-blog-empty,
#soro-blog .soro-blog-loading,
#soro-blog .soro-blog-error {
  min-height: 260px;
  padding: 55px 28px;
  border: 1px solid var(--line);
  color: #5f6d75;
  background: var(--ivory);
}

#soro-blog .soro-blog-spinner {
  border-color: rgba(11, 17, 22, 0.13);
  border-top-color: var(--brass-dark);
}

.soro-editorial-note {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  background: var(--warm);
}

.soro-editorial-note__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.soro-editorial-note h2 {
  font-size: 35px;
}

.soro-editorial-note p {
  color: #4f606a;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .soro-page-hero__layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .soro-page-hero__layout > p {
    max-width: 650px;
  }

  .soro-feed__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .soro-feed__heading > a {
    margin-bottom: 0;
  }

  .soro-editorial-note__inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .soro-editorial-note__inner .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .soro-page-hero {
    padding-top: 24px;
    padding-bottom: 66px;
  }

  .soro-breadcrumb {
    margin-bottom: 50px;
  }

  .soro-page-hero h1 {
    font-size: clamp(44px, 12vw, 60px);
  }

  .soro-feed {
    padding: 80px 0 88px;
  }

  .soro-feed__heading h2 {
    font-size: 42px;
  }

  #soro-blog .soro-blog-list {
    grid-template-columns: 1fr;
  }

  #soro-blog .soro-blog-card {
    min-height: 0;
  }

  #soro-blog .soro-blog-card-image {
    height: 220px;
  }

  #soro-blog .soro-blog-article {
    padding: 38px 25px 43px;
  }

  #soro-blog .soro-blog-article-title {
    font-size: 41px;
  }

  #soro-blog .soro-blog-article-image {
    width: calc(100% + 50px);
    margin-right: -25px;
    margin-left: -25px;
  }

  #soro-blog .soro-blog-article-content {
    font-size: 16px;
  }

  .soro-connect-state {
    padding: 45px 24px;
  }
}
