/* ARTICLE + READ NEXT LAYOUT */

/* No max-width here on purpose: this element is also a .wrap, so it inherits
   the site container width (--container). That keeps the article text lined up
   with the masthead, nav and footer instead of sitting 10px to their left. */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 45px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.read-next {
    width: 100%;
    margin-top: 95px;
}

.read-next h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.read-next a {
    display: block;
    color: #666;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.read-next a:hover {
    color: #111;
}


/* MOBILE */

@media (max-width: 900px) {

    .article-layout {
        display: block;
        max-width: 820px !important;
    }

    .read-next {
        margin-top: 50px;
    }

    .read-next h2 {
        font-size: 28px;
    }

    .read-next a {
        font-size: 17px;
    }

}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    gap: 20px;
}

.article-info {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.article-info strong {
    font-weight: 700;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share a {
    width: 62px;
    height: 62px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.article-share a:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .article-info {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .article-share {
        gap: 8px;
    }

    .article-share a {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

}