@import url( 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap' );

@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

::-webkit-scrollbar {
    display: none;
}

html {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

body {
    color: #333333;
}

hr {
    display: block;
    border: none;
    background: rgba( 0, 0, 0, 0.03 );
    height: 1px;
}

a {
    text-transform: inherit;
    color: inherit;
    text-decoration: inherit;
}
a.color {
    color: #6c5ce7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/** font */
.font-14 {
    font-size: 14px;
}
.font-16 {
    font-size: 16px;
}
.font-500 {
    font-weight: 500;
}
.font-600 {
    font-weight: 600;
}
.font-hint {
    color: rgba( 0, 0, 0, 0.4 );
}
.font-center {
    text-align: center;
}
/** font */

/** font */
.spacer {
    flex-grow: 1;
}
/** font */

.layout {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.row {
    padding: 15px;
}

.nav-bar {
    position: sticky;
    /* position: -webkit-sticky; */
    top: 0;
}

.nav-bar .menu {
    background: #ffffff;
    color: #333333;
    padding: 15px 15px;
    border: 1px solid transparent;
    border-radius: 32px;
    box-shadow: rgba(100, 100, 111, 0.1) 0 8px 32px 0;

    display: flex;
    align-items: center;
}
.nav-bar .menu .title {
    line-height: 1.2;
    font-weight: 600;
}
.nav-bar .menu .subtitle {
    line-height: 1.2;
    font-size: 14px;
    color: rgba( 31, 31, 31, 0.5 );
    font-weight: 600;
}
.nav-bar .menu .logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 8px;
}
.nav-bar .menu .items {
    display: flex;
    gap: 15px;
}
.nav-bar .menu .items a {
    transition: 0.2s;
    opacity: 0.5;
}
.nav-bar .menu .items a:hover {
    opacity: 1;
}



.socials {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 30px;
}
.socials .socials-item {
    transition: 0.2s;
    cursor: pointer;
    font-size: 16px;
    /*filter: grayscale( 1 );*/
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba( 0, 0, 0, 0.05 );
    display: flex;
    column-gap: 10px;
    align-items: center;
    font-weight: 600;
}
.socials .socials-item img {
    width: 20px;
    height: 20px;
    /*opacity: 0.5;*/
    transition: 0.2s;
}
.socials .socials-item:hover img {
    opacity: 1;
}
.socials .socials-item:hover {
    filter: grayscale( 0 );
    /*
    background: rgba( 0, 0, 0, 0.05 );
    */
}
/*
.socials .socials-item .title {
    font-weight: 600;
    font-size: 14px;
}
.socials .socials-item .description {
    font-size: 12px;
    color: rgba( 0, 0, 0, 0.5 );
}
*/


.footer {
    display: flex;
}
.footer-section {
    width: 100%;
}


.article {

}
.article .article-content {
    font-family: 'Alegreya', serif;
    font-weight: 400;
}

.article .article-content p img {
    border-radius: 15px;
}
/* .article .article-content a {
    color: rgba(72, 52, 212, 1.0);
} */
.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
    margin-top: 45px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.article .article-content h1:first-child {
    margin-top: 0;
}

.article .article-content ul,
.article .article-content ol {
    font: inherit;
    list-style-position: inside;
}

.article .article-content p,
.article .article-content ul,
.article .article-content ol {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 22px;
    letter-spacing: 0.1px;
    word-spacing: 2px;
}
.article .article-content p:last-child,
.article .article-content ul:last-child,
.article .article-content ol:last-child {
    margin: 0;
}



.articles-list {

}
.articles-list .articles-list-item-wrapper {
    display: block;
    margin-bottom: 30px;
}
.articles-list .articles-list-item-wrapper:last-child {
    margin-bottom: 0;
}
.articles-list .articles-list-item {
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid rgba( 0, 0, 0, 0.06 );
    transition: 0.4s;
}
.articles-list .articles-list-item .title {
    margin: 10px 0;
}
.articles-list .articles-list-item .description {
    color: rgba( 0, 0, 0, 0.6 );
    font-size: 16px;
    margin-bottom: 10px;
}
.articles-list .articles-list-item .additional {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.articles-list .articles-list-item .additional .author-image {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    object-fit: cover;
}
.articles-list .articles-list-item:hover {
    border: 1px solid rgba( 0, 0, 0, 0.26 );
}


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.tags .tags-item {
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    background: rgba( 0, 0, 0, 0.03 );
    color: rgba( 0, 0, 0, 0.5 );
    border: 1px solid rgba( 0, 0, 0, 0.01 );
    cursor: pointer;
}
.tags .tags-item.outlined {
    border: 1px solid rgba( 0, 0, 0, 0.05 );
}
.tags .tags-item.transparent {
    background: transparent;
}

/** card */
.card {
    border-radius: 10px;
    overflow: hidden;
}
.card.outlined {
    border: 1px solid rgba( 0, 0, 0, 0.1 );
}
/** card */

/** follow card */
.newsletter-card {
    background: #ecebff;
    color: #333333;
}
.newsletter-card .title {
    margin-bottom: 5px;
}
.newsletter-card .description {
    font-size: 16px;
    margin-bottom: 15px;
    color: rgba( 0, 0, 0, 0.5 );
}
.newsletter-card .content {
    display: flex;
    gap: 15px;
}
.newsletter-card .alert {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
    color: rgba( 214, 48, 49, 1 );
}
@media ( max-width: 500px ) {
    .newsletter-card .content {
        flex-direction: column;
    }
}
/** follow card */

.article-author-card {
    display: flex;
    align-items: center;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
}
.article-author-card .username {
    font-weight: 600;
}
.article-author-card .description {
    font-size: 14px;
    color: rgba( 0, 0, 0, 0.5 );
}
.article-author-card .image {
    width: 40px;
    height: 40px;
    background: rgba( 0, 0, 0, 0.1 );
    border-radius: 10px;
    overflow: hidden;
}
.article-author-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


input {
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font: inherit;
    font-size: 16px;
    width: 100%;
}
button {
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: #6c5ce7;
    color: #ffffff;
}
button:active {
    opacity: 0.8;
}
button:disabled {
    opacity: 0.5;
}
