/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: defaults,not ie 11
*/

.news {
    display: grid;
    justify-content: center;
}
.news-title {
    background-image: url('https://static.minatoaqua.info/svg/title_news.svg');
}

.article-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    margin: 2rem 0;
    padding: 2rem 0;
    color: black;
    max-width: 1000px;
    -webkit-filter: drop-shadow(0 0 20px black);
            filter: drop-shadow(0 0 20px black);
}
.article-wrapper h2 {
    font-size: 1.4rem;
}
.article-wrapper a {
    color: var(--link-color);
}
.article-wrapper > article {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
    margin-top: -6rem;
}
.article-wrapper > article:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: dotted 1px var(--pink-color);
    margin-bottom: 3rem;
}
.article-date {
    font-size: 2rem;
    font-family: 'Luckiest Guy', cursive;
    color: var(--blue-color);
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.yt-frame-wrapper {
    position: relative;
    width: 480px;
    max-width: 100%;
    height: 270px;
    /*padding-bottom: 56.25%;*/
    /*margin-bottom: 2rem;*/
}
.yt-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 700px) {
    .article-wrapper > article {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 530px) {
    .yt-frame-wrapper {
        display: none;
    }
}