@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url("../po-defaults.css");
@import url("po-docs-sidebar.css");

#po-docs {
  font-size: 100%;
  box-sizing: border-box;
  font: 100% / 1.5 Inter, Arial, Helvetica, sans-serif;
}

#po-docs-container {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 2fr 5fr;
  grid-template-areas:
  "sidebar main";
  height: 100vh;
}

#po-docs-sidebar {
  grid-area: sidebar;
}

#po-docs-main {
  grid-area: main;
}

#po-brain-footer {
  grid-area: footer;
  display: none;
}


/******
HOME
*******/

#po-guides-home article header {
  text-align: center;
  padding: 10vh 0;
  max-width: 800px;
  margin: 0 auto;
}

#po-guides-home article header h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}
#po-guides-home article header p {
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: #666;
}

#po-guides-home .po-brain-card-post-list {
  max-width: 1400px;
  margin: 0 auto;
}

.po-brain-card-post-list nav {
  display: block;
  margin-bottom: 50px;
}

.po-brain-card-post-list nav h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.po-brain-card-post-list nav h2 a {
  color: #000;
  text-decoration: none;
}

.po-brain-card-post-list nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.po-brain-card-post-list li {
  border: 1px solid rgba(0, 0, 0, .1);
  flex: 0 1 325px;
  border-radius: 5px;
  list-style: none;
  padding: 0;
  overflow: hidden;
}

.po-brain-card-post-list li a {
  /* padding: 15px; */
  display: block;
  padding-bottom: 15px;
  height: 100%;
  text-decoration: none;
  color: #000;
  transition: all .15s linear;
}

.po-brain-card-post-list li a:hover {
  background: #F1F3F4;
}

.po-brain-card-post-list h3,
.po-brain-card-post-list p {
  padding-left: 15px;
  padding-right: 15px;
}
.po-brain-card-post-list h3 {
  padding-top: 15px;
  font-size: 1.2rem;
}

.po-brain-card-post-list p {
  font-size: 1rem;
  padding-top: 7px;
}

.po-brain-card-post-list nav ul figcaption {display: none;}

.po-brain-card-post-list li figure {
  max-height: 200px;
  overflow: hidden;
}

.po-brain-card-post-list img {
  margin: 0;
  padding: 0;
  max-width: 100%;
}


/********
PAGES
********/
#po-docs-main {
  padding: 0 50px;
}
.po-docs-header {
  padding: 10vh 0;
}

.po-docs-header h1 {
  font-size: 4rem;
  /* font-size: 4vw; */
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}

.po-docs-header p {
  /* font-size: 2vw; */
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: #666;
}

.po-docs-article {
  max-width: 1000px;
  margin: 0 auto;
}

.po-docs-article img {
  max-width: 100%;
}


.po-docs-content {
  max-width: 800px;
  margin-bottom: 50px;
}

.po-docs-content p,
.po-docs-content ul,
.po-docs-content ol {
  margin-bottom: 25px;
}
.po-docs-content p {
  font-size: 1.1rem;
  color: #555;
}

.po-docs-content li {
  margin-left:20px;
  margin-bottom: 5px;
}
