.content {
 
}
.post-container {
    /* padding: 20px 0; */
    color: #1c1c1c;
    font-weight: 400;
}

.post-container article a {
    text-decoration: underline;
}

.post-container article p {
    margin-top: 1rem;
}

.post-container .post-header .post-header__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.post-container article .post {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    width: 100%;
}

.post-container article .post aside {
    display: flex;
    width: 100%;
    border-radius: 3px;
    background: rgb(241, 241, 239);
    padding: 16px 16px 16px 12px;
    margin-top: 1.3em;
}

.post-container article .post *:not(img, th, td) {
    text-align: justify;
}

table {
    border-spacing: 0;
    font-size: 16px;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

td, th {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: top;
}

.post-container article .post h2,
.post-container article .post h3,
.post-container article .post h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

/* .post-container .post h2 {
    font-size: 1.8rem;
}

.post-container .post h3 {
    font-size: 1.4rem;
}

.post-container .post h4 {} */
.content article {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

article img {
    max-width: 100%;
    margin: 0 auto;
}
.content article img:not(.main-img) {
    max-width: 100%;
    max-height: 600px;
    overflow-wrap: break-word;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


article a:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

.post-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-info.post-info__top {
    margin-bottom: 0.5rem;
}

 .post-info__tags a,
 .post-info__share a {
    color: var(--grey);
}

 .post-info__tags a:hover,
 .post-info__share a:hover {
    color: var(--grey-darker);
    text-decoration: none;
}

.post-info__share.post-info__share-mobile {
    display: none;
}

.post-info .post-info__tags a {
    margin-right: 10px;
}

.post-info .post-info__share a {
    font-size: 24px;
}

.main-img {
    margin-bottom: 1rem;
    width: 100%;
}

.main-img img {
    max-width: 100%;
    width: 100%;
}

.post-container .post>img {
    max-width: 100%;
    max-height: 600px;
    margin: 1rem auto;
    display: block;
}

.post-container article>.post>p:first-of-type::first-letter {
    float: left;
    font-size: 4.5em;
    line-height: 32px;
    padding: 0 8px 0 0;
    margin-top: 12px;
}

.post-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.post-info__date {
    color: var(--grey);
    font-size: 14px;
    font-weight: 400;
    cursor: default;
}

.post-info__share {
    display: inline-flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    left: 100%;
    align-self: flex-start;
    width: 0px;
}

.post-info__share a {
    font-size: 22px;
    margin: 6px 0 6px 16px;
}

.additional {
    margin: 24px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.additional .additional__text {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 12px;
    width: 100%;
}

.additional .additional__post {
    width: 30%;
    min-height: 110px;
    position: relative;
}

.additional .additional__post-pic {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 130px;
}

.additional .additional__post-pic::after {
    display: block;
    background: #333;
    opacity: .17;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
}

.additional .additional__post-title .title-text {
    background-color: #fff;
    bottom: 0;
    margin: 0;
    padding: 0 5px;
    left: 0;
    display: inline;
    box-decoration-break: clone;
}

.additional .additional__post-title {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;
    font-size: 20px;
    font-weight: 800;
    padding: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: #333;
    opacity: .92;
    background-size: 1px 200px;
    text-align: center;
}

.buy_me_coffee {
    padding: 8px 16px;
    /* border: 2px solid var(--grey); */
    cursor: pointer;
    align-items: center;
    display: flex;
    font-size: 14px;
    color: #000;
    transition: all 300ms;
}

.buy_me_coffee:hover {
    transform: scale(1.1);
    transition: all 300ms;

   /* background-color: #fffb0440 ;
   box-shadow: 2px 2px #000000;
   border-color: #000000; */
}
.buy_me_coffee img {
    width: 18px;
    margin-right: 8px;
    animation: wiggle 3s infinite;
}
blockquote {
    margin: 12px 0;
    padding-left: 20px;
    border-left: 5px solid #e6e6e6;
    font-style: italic;
}

.video-container {
    text-align: center;
    margin-top: 1rem;
    max-width: 100%;
}

.post-container article .post code:not(pre code) {
    font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace;
    line-height: normal;
    background: rgba(135,131,120,.15);
    color: #EB5757;
    border-radius: 3px;
    font-size: 85%;
    padding: 0.2em 0.4em;
}

@keyframes wiggle {
    0% {
      transform: rotate(0) scale(1);
    }
  
    60% {
      transform: rotate(0) scale(1);
    }
  
    75% {
      transform: rotate(0) scale(1.12);
    }
  
    80% {
      transform: rotate(0) scale(1.1);
    }
  
    84% {
      transform: rotate(-10deg) scale(1.1);
    }
  
    88% {
      transform: rotate(10deg) scale(1.1);
    }
  
    92% {
      transform: rotate(-10deg) scale(1.1);
    }
  
    96% {
      transform: rotate(10deg) scale(1.1);
    }
  
    100% {
      transform: rotate(0) scale(1);
    }
  }

  @media (max-width: 800px) {
    .content {
        padding: 0 8px
    }
    .post-info__share-desktop {
        display: none;
    }
    .post-info__share.post-info__share-mobile {
        position: relative;
        display: flex;
        width: 100%;
        left: 0;
        justify-content: flex-end;
        flex-direction: row;
        margin-top: 8px;
    }
    .post-info__share-mobile a {
        margin: 6px 0;
    }    
    
    .post-info__share-mobile a:not(:last-of-type) {
        margin-right: 12px;
    }

    .additional .additional__post {
        width: 100%;
        margin-bottom: 12px;
    }
  }

 