.content .newsroomApp-files {
  padding-top: 1em;
  display: grid;
  grid-template-columns: 1fr;
  width: calc(100% + var(--newsroomApp-spacing-level-4) * 2);
  max-width: calc(100% + var(--newsroomApp-spacing-level-4) * 2);
  margin: 0px calc(0px - var(--newsroomApp-spacing-level-4));
}

.content .title + .newsroomApp-files {
  margin-top: calc(0px - var(--newsroomApp-spacing-level-4));
}

.content.wide .newsroomApp-files {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content .text-wrapper .newsroomApp-files {
  padding-top: 0;
}

.content
  .title
  ~ .newsroomApp-files:not(
    .newsroomApp-section > .content .title ~ * ~ .newsroomApp-files
  ) {
  padding-top: 0 !important;
}

.content .newsroomApp-files > .file {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: var(--newsroomApp-spacing-level-4);
  text-decoration: none;
  background: rgb(var(--newsroomApp-color-bg-white));
  gap: calc(var(--newsroomApp-spacing-level-5) * 2);
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.content .newsroomApp-files > .file:hover {
  background: rgb(var(--newsroomApp-color-bg-dark), 0.05);
}

.content .newsroomApp-files > .file > .content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: calc(var(--newsroomApp-spacing-level-5) * 2) 0;
  margin: calc(0px - var(--newsroomApp-spacing-level-5) * 2) 0;
}

.content .newsroomApp-files > .file > .content > .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-size: var(--newsroomApp-text-size-text-medium);
  color: rgb(var(--text-color));
  font-weight: 500;
}

.content .newsroomApp-files > .file:hover > .content > .title {
  text-decoration: underline;
}

.content .newsroomApp-files > .file:hover > .content > .title {
  overflow: visible;
}

.content .newsroomApp-files > .file:hover > .content::after {
  content: attr(data-title);
  position: absolute;
  -webkit-box-shadow: 0 0 0 100px rgb(var(--newsroomApp-color-bg-light));
  -moz-box-shadow: 0 0 0 100px rgb(var(--newsroomApp-color-bg-light));
  box-shadow: 0 0 0 100px rgb(var(--newsroomApp-color-bg-light));
  left: 0;
  right: 0;
  white-space: initial;
  background: rgb(var(--newsroomApp-color-bg-light));
  z-index: 2;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--newsroomApp-text-size-text-small);
  font-weight: 500;
  color: rgb(var(--text-color));
  line-height: 1.15;
}

.content .newsroomApp-files > .file > .content > .description {
  color: rgb(var(--text-color), var(--newsroomApp-color-text-transparency));
  font-size: var(--newsroomApp-text-size-text-small);
}

.file > .icon {
  height: var(--newsroomApp-text-size-header-large);
  width: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.file > .icon > svg.v1 {
  height: calc(100% + 4px);
  width: auto;
  margin: 0 -5.5px;
}

.file > .icon > svg.v2 {
  height: calc(100% + 8px);
  width: auto;
  margin: 0 -7.5px;
}

.file > .icon > svg.v3 {
  height: 100%;
  width: auto;
  margin: 0 -0.25px;
}

.file > .icon > svg.v1 > * {
  fill: rgb(var(--newsroomApp-color-accent-light));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: rgb(var(--newsroomApp-color-accent-light));
  stroke-width: 0;
}

@media (max-width: 950px) {
  .content .newsroomApp-files {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
