@charset "UTF-8";

/* 

    YDITS Site

    Copyright (C) よね/Yone

    No modification or reproduction of any kind is permitted.
    改変や複製を一切禁じます。

*/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
}

.article {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1024px;
    gap: 2rem;
}

.article__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.article__date {
    width: 100%;
}

.article__text {
    line-height: 1.7em;
}

.article__link {
    font-size: 1.3rem;
}

.article__link .material-symbols-outlined {
    font-size: 1em;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}