.mobile {
    display: none;
}

.breadcrumbs-bx {
    position: relative;
}

.article-page {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

article {
    width: 100%;
    max-width: 800px;
}

aside {
    display: none;
    position: sticky;
    top: 100px;
    width: 420px;
    min-width: 420px;
    height: 147px;
    /* height: 1000px; */
}

article .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

article .post-category {
    text-transform: capitalize;   
}

article h1,
article h2,
article h3 {
    font-family: "Barlow", sans-serif;
}

article h1 {
    font-size: 44px;
    line-height: 1.15;
}

article h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: calc(var(--spacing) / 2);
}

article h2:not(:first-child) {
    margin-top: var(--spacing);
}

article img {
    max-width: 100%;
}

.img.skeleton {
    width: 100%;
    max-width: 100%;
    height: 300px;
}

.post-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: var(--spacing);
    border-bottom: 1px solid var(--color-snow-gray);
}

.post-share a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-sky-blue);
    font-weight: 600;
}

.post-share a img {
    height: 14px;
    width: 14px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) / 2);
}

.post-author-img.skeleton {
    width: 50px;
    height: 50px;
}

.post-author-data {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) / 4);
}

.post-author-name {
    line-height: 1;
}

.post-date-and-time {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) / 3);
    color: var(--color-text-gray);
    font-weight: 400;
    font-size: 14px;
}

.bullet-seperator {
    background: var(--color-text-gray);
    width: 4px;
    height: 4px;
    border-radius: 100%;
}

.article-content {
    border-bottom: 1px solid var(--color-snow-gray);
}

.article-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.article-content ul li {
    margin-bottom: var(--spacing);
}

/* ASIDE */

aside .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.aside-box {
    background-color: var(--color-snow-gray);
    padding: var(--spacing);
}

.aside-box h5 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.aside-box:not(.newsletter-box) h5 {
    padding-bottom: calc(var(--spacing) / 2);
    border-bottom: 1px solid var(--color-very-dark-blue);
}

.recent-posts-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) / 1.5);
}

.recent-post {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) / 2);
}

.recent-post-img.skeleton {
    width: 100px;
    min-width: 100px;
    height: 100px;
}

.recent-post-data {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) / 3);
}

.recent-post-title {
    font-weight: 500;
}

.recent-post-date-time {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: calc(var(--spacing) / 4);
}

.newsletter-box p {
    text-align: center;
}

.newsletter-box form {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) / 2);
}

.newsletter-box form input {
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 13px;
    color: var(--color-very-dark-blue);
    padding: 15px 20px;
    background: #FFF;
    height: 50px;
    outline: 0;
}

.newsletter-box form button {
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    color: var(--color-light-blue);
    background-color: var(--color-selective-yellow);
    border: 3px solid var(--color-selective-yellow);
    height: 50px;
    cursor: pointer;
}

.newsletter-box form button:hover {
    background-color: transparent;
    color: var(--color-selective-yellow);
}

aside .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing) / 2);
}

@media only screen and (max-width: 1200px) {
    .article-page {
        flex-direction: column;
        gap: var(--spacing);
    }
    aside {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        min-width: auto;
    }
}

@media only screen and (max-width: 800px) {
    .post-category {
        font-size: 16px;
    }
    article h1 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 0;
    }
    article h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 700px) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
    .post-info {
        flex-direction: column;
        gap: calc(var(--spacing) / 2);
        align-items: flex-start;
        font-size: 16px;
    }
    .post-data-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--spacing);
    }
    .post-data-right {
        width: 100%;
        justify-content: space-between;
        gap: var(--spacing);
    }
    .post-data-right > div:not(:last-child):after {
        content: none;
    }
}

@media only screen and (max-width: 600px) {
    article h1 {
        font-size: 32px;
    }
    .breadcrumbs-bx {
        margin-bottom: 0;
    }
}