/* === PAGE MASTER === */
.page-master {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 0;
    pointer-events: none;

    background: var(--uiFaded);
    backdrop-filter: blur(20px);

    transition: all 0.5s cubic-bezier(1, 1.6, 0.55, 1);
}
.page-master-frame {
    position: relative;
    background: linear-gradient(to right, var(--dark), transparent);

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    overflow: hidden;

    width: 100%;
    height: 100%;
}

.page-display {
    position: relative;

    z-index: 2;
    display: flex;

    min-width: calc(50% - 1rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    width: calc(100% - 1rem);
    height: calc(100% - 2rem);
    border-radius: var(--r);
}
.page-area {
    z-index: 1;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    overflow-y: scroll;
    padding-bottom: 2rem;

    width: 100%;
    height: 100%;
}
.page-area-wrapper {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    transition: all 500ms ease-in-out;
}
.page {
    position: absolute;
    top: 0;
    left: 0;

    padding-right: 2rem;
    padding-left: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    opacity: 0;

    width: 100%;
    height: 100%;

    transition: opacity 1s cubic-bezier(1, 1.6, 0.55, 1);
}

.page-display-ui {
    z-index: 3;
    position: absolute;
    top: 1rem;
    left: 1rem;

    display: flex;
    flex-direction: column;

}
.page-display-ui-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;

    padding: 1rem;
    gap: 0.5rem;
}
.page-display-ui-group-icon {
    min-height: 1.5rem;
    width: 1.5rem;
}
.page-display-ui-group-title {
    font-size: 0.85rem;
}

.article-intro {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
}
.article-intro-details {
    z-index: 2;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;

    border-radius: var(--r);
    padding: 4rem 2rem;

    gap: 2rem;
    transition: all 300ms ease-in-out;
}
.article-intro-details-topic {
    z-index: 1;
    display: flex;

    max-width: max-content;
    font-size: 1rem;
    font-weight: 600;

    border-bottom: 1px solid white;
}
.article-intro-details-title {
    z-index: 1;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.5;
    transition: all 100ms ease-in-out;
    max-width: 75%;
}
.article-intro-details-icon {
    position: absolute;
    top: 2rem;
    right: 1rem;

    min-width: 2rem;
    height: 2rem;
}

.article-intro-cover {
    z-index: 1;
    cursor: pointer;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    border-radius: var(--r);

    text-decoration: none;
    -webkit-tap-highlight-color: transparent;

    height: 60vh;
    width: 100%;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}
.article-intro-cover-img {
    z-index: 2;

    height: 100%;
    width: 100%;

    border-radius: var(--r);

    transition: all 300ms ease-in-out;
}

.close_article {
    cursor: pointer;
    z-index: 99999;
    position: absolute;
    top: 1rem;
    left: 1rem;

    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;

    font-size: 0.8rem;

    border-radius: var(--r);

    transition: all 100ms ease-in-out;
}
.close_article:hover {

}

.article-content {
    display: flex;
    flex-direction: column;

    text-align: left;

    width: 100%;
    gap: 2rem;
}

.article-cover {
    cursor: pointer;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    border-radius: var(--r);

    text-decoration: none;
    -webkit-tap-highlight-color: transparent;

    width: 100%;

    overflow: hidden;
    transition: all 300ms ease-in-out;
}
.article-cover-img {
    z-index: 2;

    height: 60vh;
    width: 100%;

    border-radius: var(--r);

    transition: all 300ms ease-in-out;
}
.article-cover-credits {
    display: none;
}

.article-body {
    position: relative;
    padding-left: 2rem;

    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 2;

    max-width: 75%;
}
.article-body::first-letter {
    font-size: 170%;
    line-height: 1;
    font-weight: 900;
}

.article-social {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
    gap: 1rem;
}
.article-social-area {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;

    gap: 1rem;
}
.article-social-title {
    font-size: 0.85rem;
    opacity: 0.5;
}

.article-credits {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;

    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;

    width: 100%;
}
.article-credits2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;

    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;

    width: 100%;
}
.article-credits-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;

    gap: 2rem;
}
.article-credits-area-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;

    gap: 0.5rem;
}
.article-credits-area-a-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.article-credits-area-a-title2 {
    font-size: 0.75rem;
    font-weight: 400;

    opacity: 0.5;
}

.article-credits-area-a2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;

    gap: 2rem;
}
.article-credits-area-a-icon {
    cursor: pointer;

    min-width: 1.5rem;
    height: 1.5rem;
}





