@import url("news.css?v=2026.05.10");

.page-content-home {
  padding-top: 3em;
}

.page-content-home {
    background-color: transparent;
    background-image: url("../images/home_background.jpg");
    background-repeat: repeat-y;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.navbar-home {
  margin-bottom: 0;
}

#carousel-home {
  border: solid 10px rgba(255, 255, 255, 0.5);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

#carousel-home .item a {
  color: white;
}

#carousel {
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  padding-bottom: 3em;
}

#news {
  max-width: 646px;
  margin: 0 auto;
}

#news h4 {
  padding-top: 1em;
  color: white;
}

#news .news-item {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: white;
  color: white;
}

#news .news-info {
  border-bottom-color: white;
  color: white;
}

.carousel-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: min(340px, 40vw);
  color: white;
  background: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.carousel-item__background {
  position: absolute;
  inset: 0;
  background-image: var(--carousel-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.18);
  filter: blur(18px);
  opacity: 0.75;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.65)
    );
}

.carousel-item__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18px;
  box-sizing: border-box;
  padding-bottom: 58px;
}

.carousel-item__logo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  object-fit: contain;
  z-index: 2;
}

.carousel-item__image {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 76px);
  object-fit: contain;
  z-index: 1;
}

.carousel-item__text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 34px;
  z-index: 3;

  width: auto;
  text-align: center;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.85);
}

.carousel-item__text h3 {
  margin-top: 0;
}

.carousel-item__text p {
  margin-bottom: 0;
}

#carousel-home .carousel-indicators {
  bottom: 4px;
  margin-bottom: 0;
}