@import url("vars.css");
@import url("header.css");
@import url("footer.css");
/* @import url("home.css"); */
/* @import url("single.css"); */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font: 100% var(--fontSansSerif);
}

a {
  color: #000;
  text-decoration: none;
  transition: all linear .1s;
}

a:hover {
  color: var(--colorRed);
  text-decoration: underline;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {text-decoration: none;}

.po-site {
  padding: 0 20px 70px;
}

.po-limit {
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  height: auto;
}

.po-page hr,
.po-article-content hr {
  display: block;
  border: none;
  background: none;
  height: 1px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 25px;
}

/*****
DEFAULTS
*****/
.po-with-bg-red .po-btn {
  background-color: #fff;
  color: #000;
}

.po-btn {
  font: 600 .8rem/1.2 var(--fontDefault);
  background: var(--colorRed);
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  text-decoration: none !important;
  border: 1px solid transparent;
  display: inline-block;
  cursor: pointer;
}

.po-btn:hover {
  border: 1px solid black;
  background: white;
  color: #000;
}

.po-head-menu .po-btn {
  padding: 5px 10px;
}

.po-section-title {
  align-items: center;
  display: flex;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--fontMono);
  color: var(--colorRed);
  cursor: default;
}

.po-section-title:first-child {
  margin-bottom: 20px;
}


.po-section-title:after {
  background-color: var(--colorGrayLight);
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: 1rem;
}

.kg-callout-card {
  margin: 30px 0;
}

.kg-button-card {
  padding: 30px 0;
}


/****
FORMS HOME SIGNUP
****/
.po-form-signupfree,
.po-paid-signup {
	/* margin-top: 20px; */
	background: #000;
	padding: 20px;
	border-radius: 5px;
}
.po-article-sidebar .po-form-signupfree {margin-bottom: 25px; }
.po-article-sidebar .po-form-signupfree p {display: none;}

.po-form-signupfree form .success,
.po-form-signupfree form .error,
.po-form-signupfree form .loader {
	display: none;
	/* color: black !important; */
	width: 100%;
	padding: 5px;
	text-align: center;
	font-size: 1.5rem;
}

.po-form-signupfree form.success .success,
.po-form-signupfree form.error .error,
.po-form-signupfree form.loading .loader {display: block;}

.po-form-signupfree form.success .success {background: rgb(108,212,159);/* flex: 1; */width: 100%;}
.po-form-signupfree form.error .error {background: rgb(0,150,220);color: #fff;display: block;flex: 0;margin-top: 10px;}

form.loading .loader {
	max-width: 50px;
	margin: 0 auto;
	color: red;
}

.po-form-signupfree form.loading button,
.po-form-signupfree form.loading [type="email"],
.po-form-signupfree form.success button,
.po-form-signupfree form.success [type="email"] {display: none;}

.po-form-signupfree h4,
.po-paid-signup h4 {margin-bottom: 10px;color: #fff;}

.post-template .po-form-signupfree h4,
.post-template .po-paid-signup h4 {margin-top: 0;font-size: 1.6rem;}

.po-form-signupfree p,
.po-paid-signup p {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 20px !important;
}
.po-form-signupfree form > * {flex: 1;}

.po-form-signupfree input[type="email"] {padding: 7px;height: 30px;}

.po-form-signupfree button.po-btn {
	padding: 6px;
	width: 40%;
	letter-spacing: initial;
	margin-left: 10px;
	align-self: self-end;
}

.po-paid-signup {
  background-color: #000;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.po-form-signupfree [data-members-form="signup"] div {
  display: flex;
  flex-direction: row;
  align-items: center;
}


/**** 
GENERIC LIST PAGE
used in tag, authors, author list posts
****/
.po-list {
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 90px 0;
}

.po-list > * {
  flex: 1 0 200px;
}

.po-list-info {
  padding-bottom: 0;
  margin-bottom: 100px;
}

.po-list-info h2 {
  padding-bottom: 20px;
  padding-top: 5px;
  font-size: 2.8rem;
  color: var(--colorRed);
}

.po-list-info p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  max-width: 80%;
}

.po-list-info .po-list-count {
  border-radius: 5px;
  font-size: .7rem;
  padding-top: 20px;
  display: inline-block;
}

/** author page post list **/
.po-author-info .po-limit {
  display: flex;
  flex-wrap: wrap;
}

.po-author-info .po-limit > * {
  flex: 1 0 300px;
}

.po-author-info .po-author-avatar {
  max-width: 265px;
  max-height: 265px;
  margin-right: 25px;
}

.po-author-list-item img {
  margin-right: 50px;
  border-radius: 3px;
  width: 270px;
  height: 270px;
  object-fit: cover;
  object-position: center;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all linear .1s;
}

.po-author-list-item:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  transform: scale(1.05);
}

.po-list .po-author-meta:empty {display: none;}

.po-author-meta {
  padding: 20px 0 0;
}

.po-author-meta li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.po-author-meta li:hover path {
  fill: black;
}

.po-author-list-item img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

.po-list-posts {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.po-list-posts li {
  padding: 15px 20px 40px;
  list-style: none;
  flex: 1 0 300px;
}

.po-list-posts h2 {
  font-size: 1.3rem;
  padding-bottom: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.po-list-posts p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.po-list-posts a:hover {text-decoration: none;}

.po-list-posts .po-author-name {
  font-weight: 400;
  font-size: .8rem;
}

.po-list-posts .po-author-name a {color: var(--colorRed)}
.po-list-posts .po-author-name a:hover {color: var(--colorBlack); text-decoration: underline;}

.po-list-posts .po-date {
  display: block;
  font-weight: 300;
  font-size: .8rem;
  padding-bottom: 5px;
  color: rgba(0, 0, 0, .6);
}

.po-pagination {
  text-align: center;
  padding: 150px 0 100px;
}

.po-pagination .page-number {
  display: inline-block;
  padding: 0 20px;
  font-size: .8rem;
}