/* Views/www_webpack/news/one_news/one_news_mobile.css */
#oneNews {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 100px);
  padding: 20px clamp(20px, 5vw, 10vw);
}
.one_news__data {
  width: 100%;
}
.one_news__main_img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  margin: 0 20px 20px 0;
  object-fit: cover;
}
.one_news__title {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 2em;
  line-height: 1;
  text-transform: uppercase;
}
.one_news__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.one_news__aside_title {
  font-weight: normal;
  font-size: clamp(1em, 1.8vw, 1.5em);
  text-transform: uppercase;
}
.one_news__mini {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  transition: all 200ms;
}
.one_news__mini:hover {
  border: 2px solid var(--color-green);
  transform: scale(1.02);
}
.one_news__mini img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}
.one_news__mini h3 {
  font-weight: normal;
  font-size: 1em;
}
.no_article {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.edit_img_container {
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
}
.edit_img_container img {
  margin: 0;
}
.edit_img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ffffff3d;
}
.edit_img span {
  padding: 5px 0.5em;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
}
@media screen and (min-width: 600px) {
  #oneNews {
    flex-direction: column;
  }
  .one_news__aside {
    flex-direction: row;
  }
}
