#block-views-block-all-news-block-all-news > h2 {
  text-align: center;
}
.all-news-tile {
  margin: 0 0 2rem 0;
}
/* Article type area - top of tile */
.all-news-tile .views-field-field-article-type {
  border: solid 1px var(--greyLight);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  line-height: var(--line-height-ui-tight);
  padding: var(--space-lg) var(--space-lg) var(--space-lg);
}
.all-news-tile .views-field-field-article-type .field-content,
.all-news-tile .views-field-field-article-type .taxonomy-term {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.all-news-tile .views-field-field-article-type h2 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--textColor);
  margin: 0;
  line-height: 1;
}
.all-news-tile .views-field-field-article-type .bi {
  color: var(--qridaOrange);
  font-size: 1rem;
  flex-shrink: 0;
}
.all-news-tile .views-field-field-article-type .taxonomy-term__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--textColor);
  line-height: 1;
}
/* Title area */
.all-news-tile .views-field-title {
  border: solid 1px var(--greyLight);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 0 var(--space-lg) var(--space-lg);
}
/* When date follows title, remove title's bottom border */
.all-news-tile .views-field-title:has(+ .views-field-created) {
  border-bottom: none;
  border-radius: 0;
  padding-bottom: 0;
}
.all-news-tile .views-field-title a {
  color: var(--textColor);
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}
/* Date area - continues the card border chain */
.all-news-tile .views-field-created {
  border: solid 1px var(--greyLight);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 0.5rem var(--space-lg) var(--space-lg);
}
.news-tile__date {
  color: var(--greyDarker);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-xs);
  margin: 0;
}
.news-tile__date::before {
  content: "\f1e4";
  font-family: "bootstrap-icons";
  font-size: 0.9em;
  opacity: 0.6;
}
/* Mobile - Increase font size for better readability */
@media screen and (max-width: 767px) {
  .all-news-tile .views-field-title a {
    font-size: var(--font-size-base);
  }
}
/* Tablet */
@media screen and (min-width: 768px) {
  .all-news-tile {
    display: flex;
    flex-direction: column;
  }
  .all-news-tile .views-field-title {
    flex-grow: 1;
  }
}
/* Medium desktop */
@media screen and (min-width: 992px) {
}
/* Large desktop */
@media screen and (min-width: 1200px) {
  .all-news-tile {
    position: relative;
    z-index: 0;
  }
  .all-news-tile::after {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0);
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 27px);
    z-index: -10;
  }
  .all-news-tile .views-field-title {
    padding: 0 2rem 2rem;
  }
  .all-news-tile .views-field-created {
    padding: 0.5rem 2rem 2rem;
  }
  .all-news-tile .views-field-field-article-type {
    padding: 2rem 2rem 1rem;
  }
}
/* XLarge desktop */
@media screen and (min-width: 1400px) {
}
@media (pointer: fine) {
  .all-news-tile:hover::after {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  }
}
