/*
 * These hold the theme styles that take precedence over the tailwind stylesheet.
 *
 */

@media (min-width: 1024px) {
  /* Helpers */
  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }
}

  /* Blog Listing */
.page-layout-2columns-left .page-main .columns {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .page-layout-2columns-left .page-main .columns .column.main {
    border-left-width: 1px
  }
}

.page-layout-2columns-right .page-main .columns {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.pagination {
  justify-content: center;
  order: 2;
  grid-column: span 4/span 4;
}

.pagination ul li.active a {
  font-weight: bold;
}

.sidebar.sidebar-main .widget {
  margin-bottom: 50px;
}

.sidebar.sidebar-main .widget .widget-title {
  color: rgba(17,24,39,1);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.sidebar.sidebar-main .widget ul {
  padding-left: 18px;
  list-style: disc;
}

.sidebar.sidebar-main .widget ul li {
  margin-bottom: 5px;
}

.sidebar.sidebar-main .widget ul li a {
  font-size: .875rem;
  line-height: 1.25rem;
  opacity: 0.8;
}

.sidebar.sidebar-main .widget ul li a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Blog Post */
.single .blog-post p {
  margin: 0 0 1.5em;
  color: rgba(0,0,0,0.8);
}

.single .blog-post .post-thumbnail {
  float: none;
  width: 100%;
}

.single .blog-post .post-thumbnail img {
  width: 100%;
  height: auto;
}

.single .blog-post img.alignleft,
.single .blog-post img.alignright,
.single .blog-post img.aligncenter {
  margin: 30px auto;
}

.single .blog-post .nav-links .nav-next {
  margin-top: 20px;
  text-align: right;
}

@media (min-width: 640px) {
  .single .blog-post img.alignleft {
    float: left;
    margin: 30px;
    margin-left: 0;
  }

  .single .blog-post img.alignright {
    float: right;
    margin: 30px;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .single .blog-post p {
    line-height: 2.2rem;
  }

  .single .blog-post .post-thumbnail {
    width: auto;
    max-width: calc(100% + 250px);
    margin-left: calc(-125px);
    margin-right: calc(-125px)
  }

  .single .blog-post img.alignleft {
    margin-left: -25%
  }

  .single .blog-post img.alignright {
    margin-right: -25%
  }

  .single .blog-post .nav-links {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .single .blog-post .nav-links .nav-next {
    margin-top: 0;
  }
}

.single .blog-post .iframe {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden
}

.single .blog-post .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}