.titleNews {
  text-align: center;
}
.article-title {
  margin-top: 30px;
  margin-bottom: 30px;
}
.article-title h1 {
  margin: 0.5em 0.3em 0.1em;
}
.article-item .fusion-imageframe {
  display: grid;
}
.article-item-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0.4em 0em;
}
.article-item-content .fusion-column-wrapper {
  gap: 5px 20px;
}

.article-wrapper {
  flex-grow: 1;
  margin-bottom: 1em;
}
.article-item-image {
  /* flex-basis: 300px; */
  width: 300px;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
  gap: 5px;
}

.article-item-text {
  flex-shrink: 1;
  width: calc(100% - 320px);
  min-width: 300px;
  flex-grow: 1;
}
.article-item-video {
  /* max-width: 560px; */
  flex-grow: 1;
  text-align: center;
}

.article-item-video iframe {
  width: 100%;
  /* aspect-ratio: 560 / 320; */
  max-height: 80vh;
  max-width: 80vw;
}

.article-preview {
  flex-grow: 1;
  min-width: 200px;
  max-width: 400px;
  padding: 10px 0px;
  border-radius: 5px;
  box-shadow: 0px 0px 12px -5px #00000073;
  transition: 100ms;
  margin: 10px !important;
}
.article-preview:hover {
  box-shadow: 0px 0px 36px -6px rgb(0 0 0 / 50%);
  transform: rotate(-2deg) scale(1.03);
  z-index: 12;
}
.article-preview h4 {
  color: var(--h1_typography-color) !important;
}

.article-preview .article-title {
  color: var(--primary_color) !important;
}
.article-preview .fusion-imageframe img {
  object-fit: cover;
}
.article-preview .fusion-imageframe a {
  aspect-ratio: 4/3;
  display: inline-flex;
}

.tag-container {
  display: flex;
  flex-direction: row;
  gap: 3px;
  padding: 5px;
  border-radius: 2px;
  border: 1px solid #80808024;
}
.article-title .tag-container {
  border: none;
}
.tag-container-bg {
  background-color: #374c8612;
}
.tag-container-left {
  justify-content: left;
}
.tag-container-center {
  justify-content: center;
}
.tag-container-right {
  justify-content: right;
}
.tag {
  --highlight-color: var(--link_color);
  --normal-color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tag.tag-article-type {
  --highlight-color: var(--primary_color);
}
a.tag {
  background-color: var(--highlight-color);
  color: var(--normal-color);
  border: none;
}
a.tag:hover {
  background-color: var(--primary_color);
  color: var(--normal-color);
}
.tag:not(a) {
  border: 1px solid var(--highlight-color);
  color: var(--highlight-color) !important;
  background-color: var(--normal-color);
}
.tag:not(a) i {
  color: var(--highlight-color) !important;
}
.no-article {
  margin: 20px 5px;
  background-color: #f7f7f7;
  padding: 30px;
  border-left: 3px solid var(--primary_color);
}

.article-item-block .article-item-wrapper {
  flex-direction: column;
}

.article-item-block .fusion-layout-column {
  flex: 1 1 300px; /* Default size is 300px, but can grow or shrink */
  min-width: 200px; /* Smallest size */
  max-width: 400px; /* Largest size */
}

.article-item-block .article-item-image {
  flex-basis: auto;
  width: auto;
}

.article-item-block .article-item-text {
  width: auto;
  text-align: center;
  padding: 0 2em;
}
.article-item-block .fusion-row {
  justify-content: center;
}
