.forum-page-container {
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}
.forum-page-container .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.forum-first-section {
  margin-top: 10rem;
}
.forum-section {
  margin-top: 0;
}

#program,
#register {
  scroll-margin-top: 180px;
}

.forum-page-container .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-blue-200);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.forum-page-container .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-highlight);
  margin: 10px auto 0;
}

.forum-page-container .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-grey-400);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.forum-hero {
  position: relative;
  background-color: var(--color-blue-200);
  height: fit-content;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 9rem 0;
  text-align: center;
}

.forum-hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.forum-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin: 1rem 0;
  color: var(--color-highlight);
}

.forum-hero__date {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.forum-hero__cta {
  display: inline-block;
  background: var(--color-highlight);
  color: var(--color-blue-200);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.forum-hero__cta:hover {
  background: var(--color-white);
  color: var(--color-blue-200);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(var(--color-black--rgb), 0.2);
}

.forum-info {
  background: var(--color-grey-010);
  padding: 4rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(var(--color-black--rgb), 0.05);
}

.info-card__icon {
  margin-right: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-blue-100);
}

.info-highlight .info-card__icon svg {
  fill: var(--color-white);
  opacity: 0.8;
}

.info-card__content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue-100);
  margin: 0 0 0.5rem 0;
}

.info-card__content p {
  margin: 0;
  color: var(--color-grey-400);
  line-height: 1.5;
}

.forum-speakers {
  padding: 5rem 0;
}

.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.speakers-grid > * {
  flex: 0 0 320px;
}

.speaker-card {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(var(--color-black--rgb), 0.07);
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(var(--color-black--rgb), 0.12);
}

.speaker-card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--color-grey-010);
}

.speaker-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-blue-200);
  margin: 0 0 0.5rem 0;
}

.speaker-card__position {
  font-size: 0.9rem;
  color: var(--color-grey-400);
  line-height: 1.4;
  margin: 0;
}

.forum-program {
  padding: 3rem 0;
  background: var(--color-grey-010);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--color-grey-050);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  border: 4px solid var(--color-blue-100);
  border-radius: 50%;
  top: 2.2rem;
  left: 50%;
  margin-left: -10px;
  z-index: 1;
}

.timeline-time {
  position: absolute;
  top: 2rem;
  width: 50%;
  padding: 0 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue-200);
}

.timeline-content {
  width: 50%;
  padding: 0 2rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(var(--color-black--rgb), 0.05);
  padding: 1.5rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-time {
  text-align: right;
  left: 0;
  padding-right: 50px;
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 50%;
  padding: 25px;
  padding-left: 50px;
}

.timeline-item:nth-child(even) .timeline-time {
  text-align: left;
  left: 50%;
  padding: 25px;
  padding-left: 50px;
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  padding: 25px;
  padding-right: 50px;
  text-align: right;
}

.timeline-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-blue-100);
  margin: 0 0 1rem 0;
}
.timeline-content p {
  margin: 0 0 1rem 0;
  color: var(--color-grey-400);
}
.timeline-content .speaker-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}
.timeline-content .speaker-list li {
  margin-bottom: 0.5rem;
}

.timeline-item--break::after {
  border-color: var(--color-highlight);
}
.timeline-item--break .timeline-content h3 {
  color: var(--color-blue-200);
}
.timeline-item--discussion {
  border-top: 2px dashed var(--color-blue-100);
  border-bottom: 2px dashed var(--color-blue-100);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.timeline-item--discussion::after {
  border-color: var(--color-highlight);
  transform: scale(1.2);
}
.timeline-content .discussion-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-blue-200);
}

.panel-details {
  margin-top: 1.5rem;
  padding: 20px;
  text-align: right;
}
.panel-details summary {
  font-weight: 700;
  color: var(--color-blue-100);
  cursor: pointer;
}
.panel-details h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-top: 1rem;
}
.panel-details ol {
  padding-left: 20px;
  margin-top: 1rem;
}
.panel-details li {
  margin-bottom: 0.5rem;
  color: var(--color-grey-400);
}

.forum-register {
  padding: 5rem 0;
  text-align: center;
}
.register-text {
  font-size: 1.1rem;
  color: var(--color-grey-400);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.forum-register .forum-hero__cta {
  margin: 1rem 0 3rem 0;
}

.forum-supporters h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--color-grey-400);
  margin-bottom: 1.5rem;
}
.supporter-logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.supporter-item {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-grey-400);
}

@media (max-width: 992px) {
  .forum-hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .forum-page-container .section-title {
    font-size: 2rem;
  }
  .forum-hero__title {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 10px;
    margin-left: 0;
  }
  .timeline-item::after {
    left: 10px;
    margin-left: 0;
  }
  .timeline-time,
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-time,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-time,
  .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .timeline-time {
    position: static;
    padding-left: 40px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    top: auto;
  }
  .timeline-content {
    padding-left: 40px;
    padding-top: 0;
  }
  .timeline-item {
    padding-bottom: 2rem;
  }
  .timeline-item::after {
    top: 0.2rem;
  }
  .timeline-item:nth-child(odd) .timeline-time,
  .timeline-item:nth-child(even) .timeline-time {
    padding-left: 40px;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 40px;
    padding-right: 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .forum-hero__subtitle {
    font-size: 1.1rem;
  }
  .forum-hero__date {
    font-size: 1.2rem;
  }
  .forum-hero__cta {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
  .info-card__content h3 {
    font-size: 1.1rem;
  }
  .info-card__content p {
    font-size: 0.95rem;
  }
  .info-highlight .info-card__content p {
    font-size: 1rem;
  }
  .speaker-card__name {
    font-size: 1.15rem;
  }
  .speaker-card__position {
    font-size: 0.85rem;
  }
  .timeline-content h3 {
    font-size: 1.2rem;
  }
  .register-text {
    font-size: 1rem;
  }
  .supporter-item {
    font-size: 1rem;
  }
}

.info-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--color-blue-200);
  color: var(--color-white);
  padding: 2.5rem;
  border-radius: 8px;
  margin-top: 2.5rem;
}

.info-highlight .info-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.info-highlight .info-card__content h3 {
  color: var(--color-white);
  opacity: 0.7;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.info-highlight .info-card__content p {
  color: var(--color-white);
  font-size: 1.1rem;
  line-height: 1.5;
}

.info-highlight .info-card__icon {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .info-highlight {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.forum-hero__scroll-down {
  display: block;
  position: absolute;
  bottom: 80px;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s;
  transform: translateX(-50%);
}

.forum-hero__scroll-down:hover {
  opacity: 1;
}

.forum-hero__scroll-down::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: translate(-50%, -70%) rotate(45deg);
}

.forum-hero__scroll-down {
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -15px);
  }
  60% {
    transform: translate(-50%, -8px);
  }
}

@media (max-width: 768px) {
  .forum-first-section {
    margin-top: 5rem;
  }
  .forum-hero__scroll-down {
    bottom: 180px;
    width: 26px;
    height: 26px;
  }
  .forum-hero__scroll-down::after {
    width: 8px;
    height: 8px;
  }
}

.forum-hero .container,
.forum-hero .forum-hero__scroll-down {
  position: relative;
  z-index: 2;
}

.forum-hero__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;

  opacity: 0.1;
  pointer-events: none;
}

.forum-hero__bg-logo img {
  width: 450px;
  height: auto;
  max-width: 90vw;
}
