/*
  This file is used due to missing build script for our sass files.
  Rather than reverse engineer the build process/config, we're just going to override the styles here in the interest of time and cost.
*/

.dto-news-type-badge {
  background-color: var(--dto-palette--primary);
  color: var(--dto-palette--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  max-width: fit-content;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.dto-page-news__carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
  background-color: var(--dto-palette--primary);
  color: var(--dto-palette--white);
  padding: 2rem 0;
  margin-bottom: 2rem;
}
.dto-page-news__carousel-item-left-button {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.dto-button-arrow-left {
  color: var(--dto-palette--white);
  cursor: pointer;
}

.dto-page-news__carousel-item-right-button {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.dto-button-arrow-right__icon {
  color: var(--dto-palette--white);
  cursor: pointer;
}

.dto-page-news__carousel-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: center;
}