/* stylelint-disable selector-list-comma-newline-after */

.blog-header {
  border-bottom: 1px solid #e5e5e5;
}
.blog-header-logo {
  display: inline;
}
.blog-header-logo a {
  border: none;
}
.blog-header-logo-a a {
	border-bottom: none;
}
.blog-header-logo-b a {
	border-bottom: none;
}
.blog-header-logo-a {
  font-family: "Hanken Grotesk", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
  font-size: 24px;
  letter-spacing: -.75px;
  color: #333;
  background-color: #ffcf01;
  padding: 5px;
  font-weight: 600;
  display: inline-block;
  transform: skew(-6deg);
}
.blog-header-logo-b {
  font-family: "Hanken Grotesk", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
  font-size: 24px;
  letter-spacing: -.75px;
  color: #ffcf01;
  background-color: #333;
  padding: 5px;
  font-weight: 400;
  display: inline-block;
  transform: skew(-6deg);	
}
.blog-header-logo:hover .blog-header-logo-b {
  color: #333;
  background-color: #ffcf01;
  transition: all 0.5s ease;
}

.blog-header-logo:hover .blog-header-logo-a {
  color: #ffcf01;
  background-color: #333;
  transition: all 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Hanken Grotesk", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
}

.display-4 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 { height: 250px; }
@media (min-width: 768px) {
  .h-md-250 { height: 250px; }
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

/*
 * Blog posts
 */
.blog-post {
  margin-bottom: 4rem;
}
.blog-post p {
  font-size: 18px;
  font-weight: 300;
}
.blog-post ul {
  list-style: none;
  margin: 20px 0px;
}
.blog-post ul li::before {
  content: "\2023";
  color: #ffcf01;
  font-weight: 900;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
.blog-post ol {
  counter-reset: item;
  margin: 20px 0px;
}
.blog-post ol li {
  display: block;
}
.blog-post ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #ffcf01;
  font-weight: 500;
  width: 1em;
  margin-left: -1em;
}
.blog-post-title {
  font-size: 48px;
  margin: 40px 0px;
}
.blog-post-author {
  transform: skewX(-6deg);
}
.blog-post-author a {
  background-color: #ffcf01;
  color:#333;
  text-decoration: none;
  transform: skewX(-6deg);
  padding: 0px 5px;
}
.blog-post-author a:hover {
  background-color: #333333;
  color:#ffcf01;
}
.blog-post-sub {
  margin-bottom: 40px;
  line-height: 35px;
  letter-spacing: -1px;
}
.blog-post h3 {
  margin: 40px 0px 20px 0px;
  letter-spacing: -1px;
  font-size: 28px;
}
.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #999999;
}
.blog-post table {
	margin: 20px 0px;
}
.blog-article-hero-image {
  background-color: #cccccc; /* Used if the image is unavailable */
  height: 500px; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.blog-post-readon {
  padding:0px 5px;
  transform: skewX(-6deg);
  text-decoration: none;
  color: #333;
  background-color: #ffcf01;
  display: inline-block;
}
.blog-post-readon:hover {
  color: #ffcf01;
  background-color: #333;
}
.blog-post-btn {
  display: block;
  font-weight: 400;
  line-height: 22px;
  color: #333;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #ffcf01;
  border: 1px solid transparent;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 100px;
  margin: 20px 0px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.blog-post-btn:hover {
  color: #333;
  background-color: rgb(255, 185, 56);
  border: 1px solid rgb(255, 185, 56);
}
blockquote {
	background-color: #333;
	padding: 40px 20px 30px 40px;
	margin: 60px 0px;
}
blockquote h1 {
	font-size: 30px;
	color: #ffcf01;
	font-style: italic;
	margin-bottom: 40px;
}
blockquote h2 {
	font-size: 20px;
	font-weight: 300;
	color: #ccc;
	font-style: normal;
}

/*
 * Footer
 */
.blog-footer {
  padding-top: 100px;
  color: #ccc;
  text-align: left;
  background-color: #333333;
  line-height: 20px;
}
.blog-footer h4 {
  font-size: 18px;
}
.blog-footer p:last-child {
  margin-bottom: 0;
}