nav.menu {
  left: 250px;
}

p {
  font-size: 2rem;
  line-height: 3rem;
  color: var(--text-color-light);
}

.dark-mode p {
  color: #d8d8d8;
}

.article a {
  text-decoration: underline;
}

.article a:hover {
  text-decoration: underline;
}

.m-btn,
.m-btn-big {
  text-decoration: none!important;
}

.cta-button {
  width: unset;
  padding: 0 25px;
}

.m-btn-big.arrow {
  font-size: 1.8rem;
  padding: 0 15px 0 20px;
}

.arrow-animated {
  margin-left: 10px;
}

.dark-mode .arrow-animated {
  filter: invert(0);
}

.dark-mode .cta-button .arrow-animated {
  filter: invert(1);
}

.microcopy {
  font-size: 1.5rem;
}

ul.bullet-list {
  list-style: none;
}

.bullet-list li {
  font-size: 2rem;
}

.bullet-list li::before {
  display: none;
}

strong {
  font-weight: 500;
  color: var(--black);
}

.section-bold {
  display: block;
  font-weight: 500;
  color: var(--black);
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 2.5rem;
}

main.container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  padding-top: 110px;
  width: calc(100% - 300px);
  max-width: 1200px;
}

footer {
  margin: 0;
}

.container.media-assets {
  margin-top: 130px;
}

.blog-badge {
  display: inline-block;
  background: var(--silicon);
  color: var(--black);
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 1.3rem;
  margin-right: 7px;
  margin-top: 7px;
  line-height: normal;
}

.article-container {
  padding-bottom: 50px;
}

.article-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding: 25px 0;
  cursor: pointer;
  border-radius: 1px;
  min-height: 250px;
}

@media (hover: hover) {
  .article-card:hover .image-article-card {
    transform: scale(1.03);
  }
}

.image-article-card {
  margin-right: 50px;
  min-width: 50%;
  max-width: 50%;
  transition: transform .5s ease;
  border-radius: 15px;
  border: 1px solid var(--silicon);
}

.article-card-title {
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 15px!important;
}

.article-card-date {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--text-color-light);
  margin-bottom: 15px;
  margin-right: 15px;
}

.article-card-author {
  display: block;
  color: var(--text-color);
  font-size: 1.6rem;
}

.article-card-preview {
  display: block;
  display: -webkit-box;
  margin: 15px 0 0 0;
  font-size: 2rem;
  color: var(--text-color-light);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-body-meta {
  transition: opacity .2s ease;
}

.links-social {
  position: fixed;
  top: 120px;
  height: 190px;
  justify-content: space-between;
}

.links-social a {
  opacity: .5;
  transform: scale(1.4);
  transition: opacity .2s ease;
}

.links-social a:hover {
  opacity: 1;
}

.dark-mode .links-social img {
  filter: invert(1);
}

.article-container .article-card:first-child {
  padding-right: 35px;
}

.article-container .article-card:last-child {
  padding-left: 35px;
}

.article-card p {
  text-align: justify;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

html.dark-mode .invert {
  filter: invert(1);
}

.container-suggested {
  background-color: var(--white);
  outline: 25px solid var(--white);
  padding-bottom: 100px;
  z-index: 1;
}

.article-suggested-row {
  display: flex;
  justify-content: space-between;
}

.article-suggested {
  width: calc(25% - 25px);
  transition: opacity .2s ease;
}

.article-suggested:hover {
  opacity: .7;
}

.article-suggested-title {
  font-size: 2.2rem;
  margin-bottom: 10px!important;
}

.article-suggested-image {
  margin-bottom: 15px!important;
}

.article-suggested-preview {
  display: -webkit-box;
  font-size: 1.6rem;
  color: var(--text-color-light);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.container.blog a {
  -webkit-user-select: text;
  -moz-select: text;
  -ms-select: text;
  user-select: text;
}

.container.blog a:last-of-type {
  margin-bottom: 100px;
}

/* Article */

.article {
  display: block;
  width: 650px;
  margin: 0 auto 60px auto;
}

.article p {
  margin-bottom: 2.5rem;
}

.article-body {
  margin-top: 20px;
  display: block;
  font-size: 1.5rem;
}

.article-date {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--text-color);
  margin-bottom: 20px;
  margin-right: 1.4rem;
}

.article-title {
  font-size: 4rem;
  line-height: 4.2rem;
  margin-bottom: 30px!important;
}

.article-end {
  display: block;
  text-align: center;
  margin-top: 25px;
}

.image-article {
  margin: 30px 0;
}

.image-article.border {
  border: 1px solid var(--black);
}

.light-mode-only,
.dark-mode-only {
  display: none;
}

.light-mode .light-mode-only,
.dark-mode .dark-mode-only {
  display: block;
}

/* Media Assets */

.media-assets .divider {
  margin: 25px 0 55px 0;
}

#toggle-desktop,
#toggle-mobile {
  display: block;
  margin: 25px 0 15px 0;
}

#toggle-desktop h2,
#toggle-mobile h2 {
  font-size: 2rem;
}

#toggle-desktop i,
#toggle-mobile i {
  margin-left: 5px;
  transition: transform .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#toggle-desktop.rotated i,
#toggle-mobile.rotated i {
  transform: rotate(180deg);
}

.media-assets-gallery {
  display: none;
}

.media-box img.fullscreen {
  position: fixed;
  height: 100%;
}

.media-assets-gallery.on {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

.media-asset-row {
  position: relative;
  width: 100%;
}

.media-asset-row h1 {
  font-size: 3rem;
  margin-bottom: 25px!important;
}

.media-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  max-height: 600px;
  margin-bottom: 30px;
  width: calc(50% - 15px);
  border: 1px solid var(--silicon);
  padding: 20px 20px 70px 20px;
}

.media-box img {
  height: 50px;
}

.media-box a {
  display: flex;
  transform: translateY(0);
  transition: transform .2s;
}

.media-box a i {
  margin: 0;
}

@media (hover: hover) {
  .media-box a:hover {
    transform: translateY(2px);
  }
}

.media-box.mobile {
  min-height: 470px;
  max-height: 620px;
  width: calc(25% - 20px);
}

.media-box.mobile img {
  position: absolute;
  max-height: 78%;
}

.media-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  padding: 0 15px;
  border-top: 1px solid var(--silicon);
}

.media-box-footer span {
  font-size: 1.5rem;
  color: var(--black);
}

.divider {
  display: block;
  width: 100%;
  margin: 35px 0;
  border-bottom: 1px solid var(--silicon);
}

.blog-container-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 55px;
  margin: 50px 0 70px 0;
}

.blog-container-logos a {
  width: 50%;
  margin-bottom: 50px;
}

.blog-container-logos a:last-of-type {
  margin-bottom: 0;
}

.blog-container-logos span {
  position: absolute;
  top: 0;
  font-size: 14px;
}

.dark-mode .logo-teachable,
.logo-kajabi {
  filter: invert(1);
}

.dark-mode .logo-kajabi {
  filter: invert(0);
}

/* Embedded collection */

.container-collection {
  background-color: var(--white);
  outline: 10px solid var(--white);
}

#muse-videos-grid {
  height: 550px;
  overflow: auto;
}

.muse-results-toolbar {
  margin: 0!important;
}

.muse-search-container .muse-search-input {
  background-color: var(--silicon)!important;
  border: 1px solid var(--silicon)!important;
}

.dark-mode .muse-search-container::after {
  filter: invert(1);
}

.dark-mode .muse-search-info-trigger {
  filter: invert(1);
}

.muse-results-toolbar-status {
  font-size: 1.5rem;
}

.muse-search-player.muse-lightbox {
  z-index: 224!important;
}

.muse-search-info {
  top: 49px!important;
  width: 215px!important;
  background: var(--white)!important;
  padding: 15px 15px 11px 15px!important;
  border: 1px solid var(--silicon)!important;
  box-shadow: none!important;
}

.muse-search-info h6,
.muse-search-info .key,
.muse-search-info .key-query {
  color: var(--black)!important;
}

/* Academia */

.quote {
  font-style: italic;
}

.circle-box {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 15px 0 0;
}

.label-img {
  font-size: 1.6rem;
}

/* Player */

.muse-video-player,
#your-container {
  border-radius: 10px;
  overflow: hidden;
}

/* Table */

.article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
}

.article table th,
.article table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--silicon);
}

.article table th {
  font-weight: 500;
  color: var(--black);
}

.dark-mode .article table th {
  color: #d8d8d8;
}

/* Code highlighting */

pre mark {
  background: none;
  color: #1e6bb8;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.dark-mode pre mark {
  color: #79c0ff;
}

/* Code and result example */

code {
  font-size: 16px;
  line-height: normal;
}

pre > code {
  padding: 30px!important;
}

.code-and-result {
  display: flex;
  margin-bottom: 2.5rem;
}

.part-code,
.part-result {
  width: 50%;
}

.code {
  padding-right: 15px;
  color: var(--text-color-light);
}

.code div {
  padding-bottom: 12px;
  line-height: 18px;
  font-family: monospace;
  font-size: 12px;
}

.part-result div {
  max-height: 190px;
  overflow-y: scroll;
}

/* Cards */

.container-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card {
  background-color: var(--ghost);
  border: 1px solid var(--silicon);
  width: 100%;
  margin-bottom: 10px;
  padding: 25px;
  border-radius: 15px;
}


.dark-mode .card {
  background-color: var(--black-10);
  border: 1px solid var(--black-10);
}

.card p {
  margin: 0;
}

@media (max-width: 1340px) {
  main.container {
    width: calc(100% - 100px);
  }

  .container.media-assets {
    margin-top: 90px;
  }
}

@media (min-width: 1000px) {
  .switch-color i {
    margin: 7px 10px 0 0!important;
  }
}

@media (max-width: 1000px) {

  .nav-links,
  .logged-in .nav-links {
    display: none!important;
  }

  #mobile-menu-btn-blog {
    display: block!important;
  }

  main.container {
    width: 100%;
    padding: 70px 0 100px 0;
  }

  .article-card {
    flex-direction: column;
  }
  .image-article-card {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin: 0 20px 15px 20px;
  }

  .article-body-meta {
    padding: 0 20px;
  }

  .article {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 70px;
  }

  .article-suggested-row {
    flex-direction: column;
  }

  .article-suggested {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--silicon);
  }

  .article-suggested:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .article-suggested-image {
    margin-bottom: 20px!important;
  }

  .article-suggested-title {
    margin-bottom: 10px!important;
    padding: 0 20px;
  }

  .article-suggested-preview {
    padding: 0 20px;
    line-height: 24px;
  }

  .header-more-articles {
    padding: 0 20px;
  }
}

@media (max-width: 864px) {

  main.container-article {
    width: 100%!important;
  }

  .container.blog {
    width: 100%;
  }

  .container {
    padding: 20px;
  }

  .media-box {
    width: 100%;
    min-height: 300px;
    margin: 15px 0;
  }
}


@media (max-width: 1200px) {
  .topbar.blog {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 100px);
  }

  .media-box.mobile {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 1000px) {
  .links-social {
    display: none;
  }
}

@media (max-width: 874px) {
  .topbar.blog {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 50px);
  }

  main.container {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .nav-links.blog {
    display: none;
  }

  .article-card {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .media-box.mobile {
    width: calc(100% - 20px);
  }

  .container {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .container.media-assets {
    padding-bottom: 0;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  img.mobile-only {
    padding: 0 0 25px 0;
  }

  .article-container {
    display: block;
    padding-bottom: 0;
  }

  .hero-article {
    display: block;
  }

  .article-container .article-card:first-child {
    padding-right: 0;
  }

  .article-container .article-card:last-child {
    padding-left: 0;
  }
}
