.info-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #ccced1;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
@media (max-width: 1200px) {
  .info-card {
    padding: 1.5rem;
  }
}
.info-card:hover {
  outline: 2px solid #cb1512;
  outline-offset: -1px;
}

.info-card__title {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: #111827;
}
.info-card__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #cb1512;
  border-radius: 2px;
  margin-top: 0.75rem;
}

.info-card__description {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.info-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cb1512;
  letter-spacing: 0.02em;
}

.info-card__cta-icon {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.25s ease;
}

.news-card {
  padding: 48px;
  border-bottom: 1px solid #cb1512;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .news-card {
    padding: 24px;
  }
}
.news-card:hover {
  opacity: 0.8;
}
.news-card:last-child {
  border: none;
}
.news-card:nth-child(odd) {
  border-left: 1px solid #cb1512;
}
.news-card:nth-child(even):nth-last-of-type(2) {
  border-bottom: none;
}
.news-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 16px;
}
.news-card__title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
}
.news-card__title-row .news-card__title {
  margin-top: 0;
}
.news-card__description {
  margin-top: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  height: 290px;
  display: flex;
}

.news-card__player {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.news-card__media img.news-card__player {
  display: block;
  width: 100%;
  height: auto;
}

.news-card__player-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__player-icon {
  width: 32px;
  height: 32px;
}

.faq-item {
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s ease;
  padding-bottom: 0.75rem;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-item__summary-title {
  font-size: 20px;
  font-weight: 500;
}

.faq-item__summary:hover {
  opacity: 0.8;
}

.faq-item__icon {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke-width: 3.5;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item[open] {
  background: #ccced1;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.5rem;
  padding-bottom: 0;
  padding-left: 4rem;
  color: #4b5563;
  line-height: 1.5;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  margin: 0;
  overflow: hidden;
  min-height: 0;
}

.welcome__banner {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  max-height: 90vh;
  height: 100%;
}
@media (max-width: 992px) {
  .welcome__banner {
    min-height: 85vh;
    max-height: 85vh;
  }
}
.welcome__banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.welcome__banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.welcome__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
}
.welcome__content {
  max-width: 1276px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 0;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.welcome__title {
  font-weight: 400;
}
.welcome__title-highlight {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}
.welcome__title-main {
  display: block;
  letter-spacing: 0.02em;
  font-size: clamp(15px, 10vw, 92px);
}
.welcome__title-main::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: #cb1512;
  border-radius: 2px;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.welcome__subtitle-container {
  max-width: 520px;
}
.welcome__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  margin: 0;
}
.welcome__scroll-indicator {
  cursor: pointer;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.welcome__scroll-indicator:hover {
  opacity: 1;
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
.welcome__scroll-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.welcome__scroll-icon {
  width: 20px;
  color: #ffffff;
}
.welcome__example-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .welcome__example-row {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
.welcome__section-title {
  font-size: clamp(15px, 10vw, 72px);
  font-weight: 500;
  color: #111827;
  margin: 0 0 2rem;
}
.welcome__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.welcome__section-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.welcome__section-title-bordered {
  border: 1px solid #cb1512;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 2rem;
  margin: 0;
}
.welcome__section-title-bordered .welcome__section-title {
  margin: 0;
}
.welcome__section-title-highlight {
  color: #cb1512;
}
.welcome__general-section {
  margin: 2rem auto 0;
  scroll-margin-top: 6rem;
}
.welcome__section {
  max-width: 1276px;
  margin-inline: auto;
  margin-top: 5rem;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}
.welcome__history-section {
  background-color: #cb1512;
  max-width: 100%;
  padding-top: 3rem;
  padding-bottom: 5rem;
  margin-bottom: 0;
}
.welcome__history-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  flex: 1;
}
.welcome__history-inner .welcome__section-header {
  width: 100%;
  max-width: 1276px;
  margin-inline: auto;
  padding: 0 1.5rem;
}
.welcome__history-inner .welcome__section-header .welcome__section-title {
  color: #ffffff !important;
  margin: 0;
}
.welcome__history-section--spotlight-open .welcome__history-timeline-scroll,
.welcome__history-section--spotlight-open .welcome__section-header {
  pointer-events: none;
  filter: blur(5px);
  opacity: 0.6;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.welcome__history-spotlight {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1200px;
  width: calc(100% - 3rem);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(-50% + 1.5rem)) scale(0.96);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.welcome__history-spotlight--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
@media (max-width: 992px) {
  .welcome__history-spotlight {
    width: 100%;
    max-width: 550px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
  }
}
.welcome__history-spotlight-close {
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  z-index: 3;
}
.welcome__history-spotlight-close-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #cb1512;
  color: #ffffff;
  transition: all 0.3s ease;
}
.welcome__history-spotlight-close-button:hover {
  background-color: #ffffff;
  color: #cb1512;
}
.welcome__history-years {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .welcome__history-years {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .welcome__history-years {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.welcome__history-year {
  z-index: 1;
  display: flex;
  background-color: #ffffff;
  padding: 0.75rem 1rem;
  padding-right: 4rem;
  border: none;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: translateX(3rem);
}
.welcome__history-year span {
  font-size: 20px;
  font-weight: 600;
}
.welcome__history-year:hover {
  transform: translateX(1px);
}
.welcome__history-year--active span {
  color: #cb1512;
}
@media (max-width: 992px) {
  .welcome__history-year {
    transform: translateX(0);
    border-radius: 9999px;
  }
}
.welcome__history-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .welcome__history-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
.welcome__history-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 550px;
  max-height: 550px;
  width: 100%;
}
@media (max-width: 992px) {
  .welcome__history-card-image {
    max-width: 100%;
    height: 250px;
  }
}
.welcome__history-card-image img {
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.welcome__history-card-body {
  width: 100%;
  height: 100%;
  padding: 48px;
  max-height: 550px;
  overflow: auto;
}
@media (max-width: 992px) {
  .welcome__history-card-body {
    padding: 24px;
    max-height: 350px;
    overflow: auto;
  }
}
.welcome__history-card-title {
  font-size: clamp(15px, 10vw, 42px);
  font-weight: 600;
}
.welcome__history-card-subtitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 500;
  color: #9ca3af;
  margin-top: 0.5rem;
}
.welcome__history-card-text {
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
  line-height: 28px;
}
.welcome__history-card-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  color: #9ca3af;
}
.welcome__history-card-link {
  margin-top: 24px;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #cb1512;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.welcome__history-timeline-scroll {
  flex: 1;
  width: 100%;
  overflow: auto;
  transition: filter 0.35s ease, opacity 0.35s ease;
  display: flex;
  align-items: flex-start;
  min-height: min(55dvh, 600px);
}
@media (max-width: 992px) {
  .welcome__history-timeline-scroll {
    min-height: 70dvh;
  }
}
@media (max-width: 768px) {
  .welcome__history-timeline-scroll {
    min-height: auto;
    overflow: visible;
  }
}
.welcome__history-timeline {
  position: relative;
  display: grid;
  align-content: start;
  align-self: flex-start;
  justify-content: center;
  margin-inline: auto;
  padding: 1rem 1.5rem;
  grid-template-rows: auto-fit 20px auto-fit;
}
.welcome__history-timeline-line {
  grid-row: 2/3;
  grid-column: 1/54;
  height: 0.125rem;
  background-color: #ffffff;
}
.welcome__history-timeline-item {
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: flex-start;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-top: 4rem;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.25s ease;
  transition: transform 0.25s ease;
  max-width: 550px;
}
.welcome__history-timeline-item:hover * {
  opacity: 0.6;
}
.welcome__history-timeline-item--active {
  opacity: 1;
}
.welcome__history-timeline-item::before {
  content: "";
  position: absolute;
  top: -0.6875rem;
  left: 0.9375rem;
  z-index: 1;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #ffffff;
  background-color: #ef4444;
  border-radius: 12px;
}
.welcome__history-timeline-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  z-index: 0;
  width: 0.125rem;
  height: 3rem;
  background-color: #ffffff;
}
.welcome__history-timeline-title {
  width: 100%;
  margin-bottom: 0.25rem;
  font-size: clamp(24px, 10vw, 28px);
  font-weight: 600;
  color: #ffffff;
  border-radius: 12px;
}
.welcome__history-timeline-subtitle {
  font-size: clamp(20px, 10vw, 22px);
  font-weight: 500;
  color: #ccced1;
  margin-bottom: 0.75rem;
}
.welcome__history-timeline-text {
  font-size: clamp(15px, 10vw, 16px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.welcome__history-timeline-item--row-1 {
  grid-row: 1/2;
}
.welcome__history-timeline-item--row-2 {
  grid-row: 3/4;
}
.welcome__history-timeline-item--top {
  align-self: flex-end;
  padding-bottom: 4rem;
}
.welcome__history-timeline-item--top::before {
  top: auto;
  bottom: -0.6875rem;
}
.welcome__history-timeline-item--top::after {
  top: auto;
  bottom: 0;
}
@media (max-width: 768px) {
  .welcome__history-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 1rem 1rem 1rem 0.75rem;
  }
  .welcome__history-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.25rem;
    width: 0.125rem;
    height: auto;
    grid-row: unset;
    grid-column: unset;
  }
  .welcome__history-timeline-item {
    max-width: none;
    width: 100%;
    align-self: stretch;
    padding: 1rem;
    padding-left: 1.9375rem;
  }
  .welcome__history-timeline-item::before {
    top: 1rem;
    bottom: auto;
    left: 0.5625rem;
    transform: translateX(-50%);
  }
  .welcome__history-timeline-item::after {
    content: none;
  }
  .welcome__history-timeline-item--row-1, .welcome__history-timeline-item--row-2 {
    grid-row: unset;
    grid-column: unset;
  }
  .welcome__history-timeline-item--top {
    align-self: stretch;
    padding-bottom: 1rem;
  }
  .welcome__history-timeline-item--top::before {
    top: 1rem;
    bottom: auto;
    transform: translateX(-50%);
  }
  .welcome__history-timeline-item--top::after {
    content: none;
  }
}
.welcome__news-container {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #cb1512;
  border-top: none;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
@media (min-width: 768px) {
  .welcome__news-container {
    grid-template-columns: 1fr 1fr;
  }
}
.welcome__faq-container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 0.75rem;
  align-items: start;
}
@media (min-width: 576px) {
  .welcome__faq-container {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
.welcome__faq-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.welcome__section-empty {
  text-align: center;
  margin-top: 1rem;
  color: #4b5563;
}
.welcome__admin-link {
  color: #cb1512;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: end;
  display: inline-block !important;
  padding-top: 0.5rem;
}

/*# sourceMappingURL=hero.css.map */
