@font-face {
  font-family: "Pharma";
  src: url("../fonts/Pharma-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #0F0A26;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  /*background: linear-gradient(to bottom, #F8F8F8 40%, #9E5BA64D 100%);*/
    background-image: url("../images/footer_bg.webp");
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size:1920px;
    background-color: #f7f7f7
    
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer
}
a.inactive {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5
}
img {
  display: block;
  max-width: 100%;
}
p {
  margin: 0 0 20px 0;
}
p:last-child {
  margin-bottom: 0;
}
.mobile-menu-toggle {
  display: none;
}
.container {
  width: 1230px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #F8F8F8;
  z-index: 200;
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  width: 183px;
  height: 38px;
  display: block;
}
.site-logo img {
  width: 183px;
  height: 38px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.latest-updates {
  position: relative;
}
.latest-updates-button {
  position: relative;
  height: 36px;
  padding: 0 25px;
  border: 1px solid #9E5BA6;
  border-radius: 10px;
  background: transparent;
  color: #0F0A26;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}
.latest-updates.is-open .latest-updates-button {
  background: #9E5BA6;
  color: #FFFFFF;
  border-color: #9E5BA6;
}
.latest-updates.is-open .latest-updates-button__count {
  background: #F8F8F8;
  color: #0F0A26;
}
.latest-updates-button__label {
  display: block;
}
.latest-updates-button__count {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #9E5BA6;
  color: #F7F5FF;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  border: 1px solid #9E5BA6;
}
.latest-updates-dropdown {
  position: absolute;
  top: 54px;
  right: -15px;
  width: 320px;
  padding: 20px;
  border: 1px solid #9E5BA6;
  border-radius: 10px;
  background: #F8F8F8;
  box-shadow: 0 8px 18px rgba(15, 10, 38, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  transform: translateY(15px);
  transition:
    opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.latest-updates.is-open .latest-updates-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0px);
  transition:
    opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.latest-updates-dropdown__close {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 6px;
  background: #9E5BA6;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background-image: url("../images/times_w.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center
}
.latest-updates-dropdown__item--image {
  display: flex;
  gap: 18px;
}
.latest-updates-dropdown__thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #D9D9D9;
  flex: 0 0 60px;
}
.latest-updates-dropdown__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.latest-updates .latest-updates-dropdown__thumb {
  overflow: hidden;
}

.latest-updates .latest-updates-dropdown__thumb img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  border-radius: 10px;
}
.latest-updates-dropdown__title {
  display: block;
  margin-bottom: 12px;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}
.latest-updates-dropdown__title:hover {
  color: #9E5BA6;
}
.latest-updates-dropdown__content {
  padding-top: 3px
}
.latest-updates-dropdown__content p {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
}
.latest-updates-dropdown__divider {
  height: 1px;
  background: #D1D1D1;
  margin: 25px 0;
}
.latest-updates-dropdown__view-all {
  display: inline-flex;
  align-items: center;
  margin-top: 35px;
  font-size: 10px;
  font-weight: 600;
  line-height: 100%;
  text-decoration: underline;
}
.latest-updates-dropdown__view-all img {
  width: 13px;
  height: 10px;
  margin-right: 8px;
}
.header-visit-button {
  height: 36px;
  padding: 0 20px;
  border-radius: 10px;
  background: #33C7CC;
  color: #0F0A26;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-visit-button img {
  width: 19px;
  height: 19px;
}
.site-main {
  min-height: calc(100vh - 90px);
  padding-top: 160px;
}
.page-shell {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.side-menu {
  width: 275px;
  margin-top: 55px
}
.side-menu-item {
  display: flex;
  align-items: stretch;
  margin-bottom: 10px;
}
.side-menu-item:last-child {
  margin-bottom: 0;
}
.side-menu-item__icon {
  width: 60px;
  height: 60px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.side-menu-item__icon img {
  max-width: 50px;
  max-height: 50px;
  position: absolute
}
.side-menu-item__icon-white {
  display: none;
}
.side-menu-item__text {
  width: 200px;
  height: 60px;
  margin-left: 15px;
  border: 1px solid #D1D1D1;
  border-radius: 10px;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.side-menu-item:hover .side-menu-item__icon, .side-menu-item:hover .side-menu-item__text {
  border-color: #0F0A26;
}
.side-menu-item.is-active .side-menu-item__icon, .side-menu-item.is-active .side-menu-item__text {
  border-color: #0F0A26;
  background: #0F0A26;
  color: #FFFFFF;
}
.side-menu-item.is-active .side-menu-item__icon-normal {
  display: none;
}
.side-menu-item.is-active .side-menu-item__icon-white {
  display: block;
}
.page-content {
  width: 890px;
}
.page-title {
  margin: 0;
  color: #9E5BA6;
  font-family: "Pharma", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding-left: 40px
}
.page-title--section {
  margin-top: 40px;
}
.content-box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px 40px;
  margin-top: 25px;
  margin-bottom: 20px
}
.content-box h2 {
  margin: 0 0 25px 0;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
.about-list {
  margin: 0 0 14px 0;
  padding-left: 18px;
}
.about-list li {
  margin-bottom: 6px;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.about-list li:last-child {
  margin-bottom: 0;
}
.site-footer {
  margin-top: 120px;
  padding-top: 0;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 55px
}
.footer-menus {
  display: flex;
  gap: 80px;
}
.footer-menu-column {
  display: flex;
  flex-direction: column;
}
.footer-menu-column a {
  margin-bottom: 20px;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.footer-menu-column a:last-child {
  margin-bottom: 0;
}
.footer-logo {
  width: 186px;
  height: 38px;
  margin-top: 4px;
}
.footer-logo img {
  width: 186px;
  height: 38px;
}
.site-info {
  height: 90px;
  border-top: 1px solid #0F0A26;
}
.site-info-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-info-left, .site-info-right {
  color: #0F0A26;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
}
.site-info-right span {
  display: inline-block;
  margin: 0 6px;
}
/*Team*/
.team-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  row-gap: 10px
}
.team-meta-row:last-of-type {
  margin-bottom: 20px
}
.team-meta-label {
  margin-right: 10px;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.team-person {
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.team-person:last-child {
  margin-right: 0;
}
.team-person-image {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 50%;
  background: #D9D9D9;
  overflow: hidden;
  flex: 0 0 30px;
}
.team-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-person-name {
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.team-group-text {
  margin-top: 25px;
}
.team-group-text p {
  margin: 0 0 25px 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.team-group-text p:last-child {
  margin-bottom: 0;
}
.team-leadership-list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.team-leadership-person {
  width: 125px;
}
.team-leadership-role {
  margin: 0 0 18px 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.team-leadership-image {
  width: 125px;
  height: 125px;
  margin: 0 0 15px 0;
  border-radius: 10px;
  background: #D9D9D9;
  overflow: hidden;
}
.team-leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-leadership-name {
  margin: 0 0 6px 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.team-leadership-position {
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
/* Supported problems*/
.icon-heading {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.icon-heading-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}
.icon-heading-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.icon-heading h2 {
  margin: 0;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
/* Contact*/
.contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.contact-main {
  width: 580px;
}
.content-box.email {
  padding: 15px 40px
}
.content-box.community {
  padding: 25px 40px
}
.contact-calendar-column {
  width: 275px;
  flex: 0 0 275px;
  padding-top: 55px;
}
.contact-item {
  width: 100%;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #0F0A26;
}
.contact-item__icon {
  width: 42px;
  height: 42px;
  border: 1px solid #D1D1D1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}
.contact-item__icon img {
  width: auto;
  max-height: 20px;
}
.contact-item__text {
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.contact-item__link-text {
  text-decoration: underline;
}
.contact-item:hover .contact-item__link-text {
  text-decoration: none;
}
/* Calendar */
.calendar-box {
  width: 275px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #FFFFFF;
}
.calendar-box:last-child {
  margin-bottom: 0;
}
.calendar-box h2 {
  margin: 0 0 18px 0;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-grid button, .calendar-grid span {
  width: 30px;
  height: 24px;
  border-radius: 6px;
}
.calendar-grid button {
  padding: 0;
  border: 1px solid #D1D1D1;
  background: #FFFFFF;
  color: #0F0A26;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}
.calendar-grid button:hover {
  border-color: #0F0A26;
}
.calendar-grid span {
  display: block;
  border: 1px solid #D1D1D1;
  background: transparent;
}
.calendar-day.has-event {
  border-color: #9E5BA6;
  border-width: 2px
}
.calendar-day.is-active {
  background: #9E5BA6;
  border-color: #9E5BA6;
  color: #FFFFFF;
}
.event-popup {
  position: absolute;
  z-index: 100;
  width: 320px;
  padding: 20px;
  border: 1px solid #9E5BA6;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 8px 18px rgba(15, 10, 38, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.event-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.event-popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: #9E5BA6;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.event-popup__inner {
  display: flex;
  gap: 15px;
}
.event-popup__image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #D9D9D9;
  flex: 0 0 60px;
}
.event-popup__content h2 {
  margin: 0 0 10px 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.event-popup__date {
  margin-bottom: 10px;
  color: #0F0A26;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
}
.event-popup__content p {
  margin: 0 0 16px 0;
  color: #0F0A26;
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
}
.event-popup__speakers {
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-speaker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0F0A26;
  font-size: 10px;
  font-weight: 400;
}
.event-speaker__image img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
/* Publications */
.publications-page {
  position: relative;
}
.publication-tools {
  position: absolute;
  top: -50px;
  right: 40px;
  z-index: 5;
  height: 50px;
  padding: 0 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #9E5BA6;
  display: flex;
  align-items: center;
  gap: 20px;
}
.publication-tool-button {
  width: 24px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.publication-tool-button img {
  width: auto;
  height: 20px;
  object-fit: contain;
}
.publication-filter-toggle.is-active img {
  content: url("../images/times_w.svg");
}
.publications-box {
  position: relative;
  padding: 30px 40px 35px 40px;
}
.publication-filter-panel {
  display: none;
  margin-bottom: 30px;
}
.publications-page.is-filter-open .publication-filter-panel {
  display: block;
}
.publication-filter-group {
  margin-bottom: 20px;
}
.publication-filter-group:last-child {
  margin-bottom: 0;
}
.publication-filter-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #0F0A26;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
}
.publication-filter-title:after {
  content: "";
  height: 1px;
  margin-left: 12px;
  background: #D1D1D1;
  flex: 1;
}
.publication-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.publication-filter-option {
  height: 30px;
  padding: 0 17px;
  border: 1px solid #0F0A26;
  border-radius: 8px;
  background: #FFFFFF;
  color: #0F0A26;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
}
.publication-filter-option.is-active {
  background: #0F0A26;
  color: #FFFFFF;
}
.publication-filter-option.is-disabled {
  border-color: #D1D1D1;
  color: #D1D1D1;
  cursor: not-allowed;
}
.publication-list {
  display: grid;
  gap: 25px;
}
.publication-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.publication-thumb {
  width: 240px;
  height: 167px;
  flex: 0 0 240px;
  border-radius: 10px;
  overflow: hidden;
  background: #D9D9D9;
}
.publication-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.publication-content {
  padding-top: 3px;
  flex: 1;
}
.publication-title {
  margin: 0 0 15px 0 !important;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
}
.publication-label {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 13px;
  border-radius: 8px;
  background: #9E5BA6;
  color: #F7F5FF;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  vertical-align: middle;
}
.publication-subtitle {
  margin-bottom: 18px;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 130%;
}
.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: -5px 0 12px 0;
  color: #6F6684;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}
.publication-content p {
  margin: 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.publication-content p a {
  color: #9E5BA6;
  font-weight: 500
}
/* Publications search */
.publication-search-box {
  position: absolute;
  top: 50px;
  right: 0;
  width: 280px;
  padding: 14px 18px;
  border-radius: 0 0 10px 10px;
  background: #9E5BA6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.publications-page.is-search-open .publication-search-box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.publication-search-input {
  width: 100%;
  height: 32px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #FFFFFF;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #FFFFFF;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.publication-search-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.publication-item.is-hidden {
  display: none;
}
/* Materials */
.materials-page {
  position: relative;
  margin-top: 25px;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 40px;
}
.material-card {
  position: relative;
  padding-top: 50px;
}
.material-card__tab {
  position: absolute;
  top: 0;
  left: 40px;
  width: 200px;
  height: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #9E5BA6;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
}
.material-card__box {
  min-height: 350px;
  padding: 35px 40px;
  border-radius: 10px;
  background: #FFFFFF;
}
.material-card__box h2 {
  margin: 0 0 14px 0;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
.material-card__meta, .material-modal__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #9E5BA6;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.material-card__meta .separator, .material-modal__meta .separator {
  color: #d1d1d1
}
.material-card__box p {
  margin: 0 0 18px 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.material-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.material-action {
  height: 30px;
  padding: 0 14px;
  border: 1px solid #0F0A26;
  border-radius: 8px;
  background: #FFFFFF;
  color: #0F0A26;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.material-action.black {
  background-color: #0F0A26;
  color: #fff
}
.material-action__icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex: 0 0 12px;
}
.material-action.is-disabled, .material-action:disabled {
  border-color: #D1D1D1;
  color: #D1D1D1;
  cursor: not-allowed;
  pointer-events: none;
}
.material-action.is-disabled .material-action__icon, .material-action:disabled .material-action__icon {
  opacity: 0.35;
}
.material-card__full-content {
  display: none;
}
/* Materials modal */
.material-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 200px 20px 80px 20px;
  overflow-y: auto;
}
.material-modal.is-open {
  display: flex;
}
.material-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 38, 0.78);
}
.material-modal__dialog {
  position: relative;
  z-index: 2;
  width: 720px;
  max-width: 100%;
  padding: 35px 40px 100px 40px;
  border: 1px solid #9E5BA6;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 14px 40px rgba(15, 10, 38, 0.24);
}
.material-modal__tab {
  position: absolute;
  top: -50px;
  left: 40px;
  width: 200px;
  height: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #9E5BA6;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
}
.material-modal__close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 8px;
  background: #9E5BA6;
  background-image: url("../images/times_w.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  cursor: pointer;
}
.material-modal__dialog h2 {
  margin: 0 0 14px 0;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}
.material-modal__content p {
  margin: 0 0 24px 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.material-modal__content p:last-child {
  margin-bottom: 0;
}
.modal_download_container {
  height: 70px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 40px;
  border-top: 1px solid #0F0A26;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center
}
body.material-modal-open {
  overflow: hidden;
}
/* View all events button */
.view-all-events-button {
  width: 275px;
  height: 40px;
  margin-top: 20px;
  border: 1px solid #0F0A26;
  border-radius: 8px;
  color: #0F0A26;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.view-all-events-button:hover {
  border-color: #9E5BA6;
  color: #9E5BA6;
}
/* All events */
.events-page {
  margin-top: 25px;
}
.events-list {
  display: grid;
  gap: 20px;
}
.event-list-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 35px 40px;
  border-radius: 10px;
  background: #FFFFFF;
}
.event-list-thumb {
  width: 95px;
  height: 95px;
  flex: 0 0 95px;
  border-radius: 10px;
  background: #D9D9D9;
  overflow: hidden;
  display: block;
}
.event-list-thumb--date {
  border: 1px solid #0F0A26;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-list-thumb--date span {
  color: #0F0A26;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}
.event-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-list-content {
  flex: 1;
}
.event-list-content h2 {
  margin: 0 0 12px 0;
  color: #0F0A26;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}
.event-list-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #9E5BA6;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.event-list-meta .separator {
  color: #d1d1d1
}
.event-list-speakers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.event-list-speaker {
  display: inline-flex;
  align-items: center;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.event-list-speaker__image {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 50%;
  background: #D9D9D9;
  flex: 0 0 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-list-speaker__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.event-list-content p {
  margin: 0;
  color: #0F0A26;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
/* Calendar popup behavior update */
.event-popup__close {
  display: none;
}
.event-popup__decor-arrow {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 21px;
  height: 21px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-popup__decor-arrow img {
  width: auto;
  height: auto;
}
.event-popup.is-position-below .event-popup__decor-arrow {
  top: 3px;
  bottom: auto;
}
.event-popup.is-position-below .event-popup__decor-arrow img {
  transform: rotate(-90deg);
}
.event-popup__mobile-link {
  display: none;
}
.event-list-card {
  scroll-margin-top: 130px;
}


.publication-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.publication-pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  background: #FFFFFF;
  color: #0F0A26;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.publication-pagination button:hover,
.publication-pagination button.is-active {
  border-color: #9E5BA6;
  background: #9E5BA6;
  color: #FFFFFF;
}

.publication-title a {
  color: inherit;
  text-decoration: none;
}

.publication-title a:hover {
  color: #9E5BA6;
}

.event-list-card {
  scroll-margin-top: 120px;
}
