/* =============================================================
   UTILITIES — helpers.css | Typography, Layout, Borders & Backgrounds
   Extracted from aspwebinar theme – do not edit the original
   ============================================================= */

/* ============================================================
   UTILITIES & GLOBAL COMPONENTS
   Merged from newstyle-v25.css
   ============================================================ */

/* ==========================================
   TYPOGRAPHY & TEXT STYLES
   ========================================== */

/* Text Colors */
.white-text {
  color: var(--white);
  font-weight: 500;
}
.black-text {
  color: var(--dark-text);
  font-weight: 500;
}
.color-dark {
  color: var(--color-dark);
  font-weight: bold;
}
.color-dark-text {
  color: var(--dark-text);
  font-weight: bold;
}
.color-mid-text {
  color: var(--color-mid);
  font-weight: bold;
}
.color-mid-summit-s26 {
  color: var(--color-mid-summit-s26);
  font-weight: bold;
}
.color-light-text {
  color: var(--color-light);
  font-weight: bold;
}
.light-green {
  color: var(--light-green);
}

/* Text Sizes */
.big-text {
  font-size: var(--font-big);
  line-height: 1;
}
.medium-text {
  font-size: var(--font-medium);
}
.normal-text {
  font-size: var(--font-normal);
  line-height: 1.3;
}
.small-text {
  font-size: var(--font-small);
}

/* Text Alignment */
.center-text {
  text-align: center;
}

/* Links */
a {
  color: var(--color-green-light);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

/* Flexbox */
.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Roundtable 2026: even grid cards without hard widths */
.webinar-series-2-v2-main-topics-block .flex-row {
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}

.webinar-series-2-v2-main-topics-block .grid-webinar {
  flex: 1 1 20%;
  max-width: 20%;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 6 items: 3 per row */
.webinar-series-2-v2-main-topics-block .grid-count-6 .grid-webinar {
  flex: 1 1 33.33%;
  max-width: 33.33%;
}

/* Tablet: 2 per row */
@media (max-width: 900px) {
  .webinar-series-2-v2-main-topics-block .grid-webinar,
  .webinar-series-2-v2-main-topics-block .grid-count-6 .grid-webinar {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* Mobile: single column */
@media (max-width: 600px) {
  .webinar-series-2-v2-main-topics-block .grid-webinar,
  .webinar-series-2-v2-main-topics-block .grid-count-6 .grid-webinar {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Margins */
.mrg-auto {
  margin: 10px auto !important;
}

/* ==========================================
   BORDERS & BACKGROUNDS
   ========================================== */

.border-v25-block {
  border-radius: 25px;
  background-color: var(--BG-light);
  padding: 25px 25px;
}

.text-border-block-v25 {
  border: 1px solid teal;
  border-radius: 25px;
  padding: 20px;
}

.border-block-big {
  padding: 40px 40px;
}

.border-padding-v25 {
  border-radius: 25px;
  padding: 20px 30px;
  margin: 20px auto;
}

.radius-v25 {
  border-radius: 25px;
}

.border-unpadding {
  padding: 0 40px;
}

.border-duo-column {
  border-radius: 25px;
  background-color: var(--BG-light);
}

/* =============================================================
   COMPONENTS — buttons.css | Buttons, Breadcrumbs, Image utilities
   Extracted from aspwebinar theme – do not edit the original
   ============================================================= */

/* ==========================================
   BUTTONS
   ========================================== */

/* Border Button */
.arrow-border-button {
  border-radius: 25px;
  padding: 5px 5px 5px 21px;
  background-position: right center;
  background-size: 100% 100%;
  color: black;
  /* border: solid 2px black; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: fit-content;
  min-width: 200px;
  align-items: center;
  font-size: var(--font-normal);
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  gap: 5px;
}

/* Gradient Background Button */
.arrow-bg-button {
  border-radius: 25px;
  padding: 5px 5px 5px 21px;
  background: linear-gradient(to right, #5f1778, #3a2d4c, #04d0a6);
  background-position: right center;
  background-size: 100% 100%;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: fit-content;
  min-width: 200px;
  align-items: center;
  font-size: var(--font-normal);
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  gap: 5px;
}

.arrow-bg-button-summit {
  background: var(--summit-gradient);
}

.arrow-bg-button:hover,
.arrow-bg-button:active,
.arrow-bg-button:focus {
  background-position: right center;
  background-size: 170% 100%;
  transition: all 0.3s ease-in-out;
  color: white;
}

/* Line Button */
.btn-line {
  border-radius: 25px;
  padding: 10px 20px;
  border: 2px solid black;
  color: black;
  background: transparent;
}

/* Arrow Link */
.arrow-link {
  border-radius: 50%;
  color: black;
  font-size: 20px;
  background-color: white;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-family: 'INDEPENENT_MEDIUM';
  padding: 10px;
}

.arrow-link-border {
  border-radius: 36px;
  padding: 10px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.arrow-link-border-bg {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: var(--new-gradient);
  background-position: center center;
  border-radius: 33px;
  display: flex;
  width: 43px;
  height: 43px;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
}

.arrow-link-border-bg:hover {
  background-position: top left;
  background-size: 200%;
  transition: all 0.3s ease-in-out;
}

.arrow-link-nobg {
  background: none;
}

/* ==========================================
   BreadCrumbs
   ========================================== */
.fbc-items {
  padding: 10px !important;
}
.fbc-page .fbc-wrap .fbc-items li {
  padding: 0 2px !important;
}
/* ==========================================
   IMAGES
   ========================================== */

.center-image {
  margin: 10px auto;
  display: block;
}

.unmargin-image {
  margin: -10px auto;
  display: block;
}

/* =============================================================
   COMPONENTS — webinar-banner.css | Banner components + per-series overrides
   Extracted from aspwebinar theme – do not edit the original
   ============================================================= */

/* ==========================================
   COMPONENTS
   ========================================== */

/* Webinar Banner */
.webinar-banner-bg-container {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px 50px 25px;
  border-radius: 25px;
  aspect-ratio: 4 / 3;
  align-items: flex-start;
  justify-content: space-between;
}

/* Mobile: smaller padding */
@media (max-width: 768px) {
  .webinar-banner-bg-container {
    padding: 20px 20px 25px;
  }
}

.webinar-banner-text-block {
  align-self: flex-start;

  margin-bottom: 25px;
}

.page-template-page-multi-synopse-series7-v25
  .webinar-banner-bg-container
  .webinar-banner-text-block
  p {
  color: white;
}

.webinar-banner-text-block p {
  color: #c6ddf3;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

/* Mobile: smaller font size */
@media (max-width: 768px) {
  .webinar-banner-text-block p {
    font-size: 2.5rem;
  }
}

.page-template-page-homepage-v25-php .webinar-banner-bg-container .big-text {
  color: var(--color-mid);
  font-weight: 600;
}

.page-template-page-summit-v25-php .webinar-banner-text-block p {
  color: var(--color-dark);
}
.page-template-page-summit-v25-php .webinar-banner-text-block p strong {
  color: var(--color-light);
}

.page-template-page-summit-v25-php .webinar-banner-bg-container {
  align-items: flex-start;
  justify-content: space-between;
}

/* Multi Synopse Series 6 specific: smaller text sizes */
.page-template-page-multi-synopse-series6-v25-php .webinar-banner-series-title {
  font-size: 1.5rem;
}

/* Big block series title base styles */
.big-block .webinar-banner-series-title {
  margin-top: 20%;
  color: var(--color-light);
  max-width: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 2.4rem;
  line-height: 1;
}

/* Mobile: smaller margin-top and font-size */
@media (max-width: 768px) {
  .big-block .webinar-banner-series-title {
    margin-top: 75px;
    font-size: 1.5rem;
  }
}

.big-block .webinar-banner-series-title p {
  line-height: 1;
  font-weight: 300;
}
.page-template-page-multi-synopse-series7-v25-php
  .big-block
  .webinar-banner-series-title
  p
  strong {
  color: var(--color-green-light);
}
.page-template-page-multi-synopse-series6-v25-php .webinar-banner-text-block p {
  font-size: 3rem;
}

/* Mobile: smaller font size */
@media (max-width: 768px) {
  .page-template-page-multi-synopse-series6-v25-php
    .webinar-banner-text-block
    p {
    font-size: 1.5rem;
  }
}

.page-template-page-multi-synopse-series6-v25-php .webinar-banner-year-block {
  font-size: 1.5rem;
}

/* Mobile: smaller font size */
@media (max-width: 768px) {
  .page-template-page-multi-synopse-series6-v25-php .webinar-banner-year-block {
    font-size: 1rem;
  }
}

.page-template-page-multi-synopse-series6-v25-php .webinar-banner-info-block p {
  font-size: 1.5rem;
}

/* Mobile: smaller font size */
@media (max-width: 768px) {
  .page-template-page-multi-synopse-series6-v25-php
    .webinar-banner-info-block
    p {
    font-size: 1rem;
  }
  .round-table-col-text .webinar-banner-text-block p {
    font-size: 2.5rem;
  }
}

/* Top block two specific: flex layout with text on top and bottom row on bottom */
.top-block-two {
  display: flex;
  flex-direction: column;
}

.top-block-two .webinar-banner-text-block {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: auto;
  color: var(--color-dark);
  max-width: 400px;
  font-family: 'Akkurat-bold', 'Roboto', sans-serif;
}

.page-template-page-multi-synopse-series7-v25
  .top-block-two
  .webinar-banner-text-block {
  padding-top: 30%;
}
.round-table-col-text .webinar-banner-text-block,
.round-table-col-date .webinar-banner-text-block {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: auto;
  color: var(--color-dark);
}

.top-block-two .webinar-banner-text-block p,
.round-table-col-text .webinar-banner-text-block p,
.round-table-col-date .webinar-banner-text-block p {
  color: var(--color-dark);
}
.top-block-two .webinar-banner-text-block p strong,
.round-table-col-text .webinar-banner-text-block p strong,
.round-table-col-date .webinar-banner-text-block p strong {
  color: var(--color-light);
}

.round-table-banner {
  align-items: center;
  background: #f1f3fb;
  border-radius: 20px;
  margin-bottom: 30px;
}
.page-template-page-emodules-synopse3-v25 .round-table-banner,
.page-template-page-multi-synopse-series3 .round-table-banner {
  background: #d0e2f6;
}

.page-template-page-emodules-synopse5-v25 .round-table-banner,
.page-template-page-multi-synopse-series5 .round-table-banner {
  background: #072d5d;
}
.page-template-page-emodules-synopse4-v25 .webinar-banner-text-block,
.page-template-page-multi-synopse-series4 .webinar-banner-text-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
  justify-content: center;
  align-items: unset;
  line-height: 1;
  font-size: 3.2rem;
  text-align: right;
}

.page-template-page-emodules-synopse3-v25.link-block,
.page-template-page-multi-synopse-series3 .link-block {
  background-color: #04d0a6;
}
.page-template-page-emodules-synopse3-v25 .webinar-banner-text-round-table p,
.page-template-page-multi-synopse-series3 .webinar-banner-text-round-table p {
  color: white;
}
.page-template-page-emodules-synopse3-v25 .webinar-banner-text-block p,
.page-template-page-multi-synopse-series3 .webinar-banner-text-block p {
  font-size: 2rem;
  color: white;
}
.page-template-page-emodules-synopse3-v25 .webinar-banner-text-block p strong,
.page-template-page-multi-synopse-series3 .webinar-banner-text-block p strong {
  color: #4c78c3;
  font-size: 2.5rem;
}
.page-template-page-emodules-synopse3-v25 .webinar-banner-text-block p em,
.page-template-page-multi-synopse-series3 .webinar-banner-text-block p em {
  color: #63ccb0;
  font-size: 2.5rem;
  font-style: normal;
}

.page-template-page-emodules-synopse4-v25 .webinar-banner-text-block div,
.page-template-page-multi-synopse-series4 .webinar-banner-text-block div {
  line-height: 1;
}

.page-template-page-emodules-synopse4-v25 .webinar-banner-text-block div em,
.page-template-page-multi-synopse-series4 .webinar-banner-text-block div em {
  font-size: 4rem;
  color: #604f8a;
  font-style: normal;
}

.page-template-page-emodules-synopse4-v25 .webinar-banner-text-block div strong,
.page-template-page-multi-synopse-series4
  .webinar-banner-text-block
  div
  strong {
  color: #3a2d4c;
}
.page-template-page-emodules-synopse4-v25 .webinar-banner-text-block div small,
.page-template-page-multi-synopse-series4 .webinar-banner-text-block div small {
  font-size: 2rem;
  color: #7acfa8;
}
.page-template-page-emodules-synopse5-v25 .webinar-banner-text-block,
.page-template-page-multi-synopse-series5 .webinar-banner-text-block {
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-weight: 700;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.page-template-page-emodules-synopse5-v25 .webinar-banner-text-block div,
.page-template-page-multi-synopse-series5 .webinar-banner-text-block div {
  font-size: 34px;
  color: #f1f03f;
  text-align: right;
}
.page-template-page-emodules-synopse5-v25 .webinar-banner-text-block div em,
.page-template-page-multi-synopse-series5 .webinar-banner-text-block div em {
  font-size: 34px;
  color: #cb753c;
  font-style: normal;
}

.round-table-col-image {
  text-align: center;
}

.round-table-col-date {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.webinar-banner-text-round-table p {
  color: #3a2d4c;
  font-weight: 700;
  line-height: 1;
  font-size: 5rem;
}

.page-template-page-multi-synopse-series7-v25
  .webinar-banner-text-round-table
  p {
  text-align: right;
}

.page-template-page-emodules-synopse5-v25 .webinar-banner-text-round-table p,
.page-template-page-multi-synopse-series5 .webinar-banner-text-round-table p {
  color: #5676d1;
}

.page-template-page-webinar-round-table_2026 .roundtable-2025-title,
.page-template-page-webinar-round-table_2026 .section1-title {
  color: var(--color-mid);
  font-family: 'Roboto';
  text-align: center;
  font-size: 35px;
  font-weight: bold;
}

.page-template-page-webinar-round-table_2026 .section1-text p {
  color: var(--dark-text);
}

@media (max-width: 980px) {
  .webinar-banner-text-round-table {
    text-align: center;
  }
  .page-template-page-emodules-synopse3-v25 .webinar-banner-text-block,
  .page-template-page-emodules-synopse4-v25 .webinar-banner-text-block,
  .page-template-page-multi-synopse-series3 .webinar-banner-text-block,
  .page-template-page-multi-synopse-series4 .webinar-banner-text-block {
    text-align: center;
  }
  .round-table-col-image {
    margin: 10px auto;
    text-align: center;
  }
}

.top-block-two .webinar-banner-bottom-row {
  margin-top: auto;
  align-self: flex-end;
}

.webinar-banner-bottom-row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.webinar-banner-date-block {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50px;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-date-block {
  background: var(--color-mid-summit-s26);
}
.page-template-page-multi-synopse-series7-v25 .webinar-banner-month {
  color: white;
}

/* Mobile: smaller padding and font size */
@media (max-width: 768px) {
  .webinar-banner-date-block {
    padding: 5px 5px;
    font-size: 1.5rem;
  }
}

.webinar-banner-date-block sup {
  font-size: 1rem;
}

.webinar-banner-day-circle {
  background: var(--summit-gradient);
  color: white;
  border-radius: 50%;
  padding: 0px 10px;
  margin-right: 10px;
}
.webinar-banner-month {
  padding: 0 10px;
}
.webinar-banner-right-group {
  display: flex;
  gap: 10px;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-text-block p {
  color: var(--color-dark);
}
.page-template-page-multi-synopse-series7-v25 .webinar-banner-text-block p em {
  color: var(--color-dark);
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1;
}
.page-template-page-multi-synopse-series7-v25
  .webinar-banner-text-block
  p
  strong {
  color: var(--color-green-light);
  font-weight: 500;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-right-group {
  /* flex-direction: column; */
}

.webinar-banner-year-block {
  background-color: var(--color-green-light);
  color: white;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 10px;
  border-radius: 15px;
}
.page-template-page-multi-synopse-series7-v25 .round-table-banner,
.page-template-page-multi-synopse-series7-v25 .border-v25-block {
  background-color: #f9f9f9;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-year-block {
  border-radius: 30px;
  font-size: 1.5rem;
  padding: 10px 30px;
}

.webinar-banner-info-block {
  background: var(--summit-gradient);
  padding: 10px;
  border-radius: 15px;
  max-width: 260px;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-info-block {
  background: var(--color-mid-summit-s26);
  border-radius: 30px;
  padding: 10px 30px;
  max-width: fit-content;
}

.webinar-banner-info-block p {
  font-size: 2rem;
  font-size: 1.1rem;
  font-weight: 100;
  line-height: 1;
  color: white;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-info-block p {
  font-size: 1.1rem;
  text-align: center;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-text-block p {
  color: #2d1e42;
  letter-spacing: -2px;
}

.page-template-page-multi-synopse-series7-v25 .webinar-banner-series-title {
  color: white;
}

.page-template-page-multi-synopse-series7-v25 .arrow-bg-button-summit {
  /* border: 2px solid var(--color-green-light); */
  background: var(--gradient-s7);
  color: var(--color-dark);
  text-align: center;
  color: white;
}

.page-template-page-webinar-series7-v25 .webinar-number,
.page-template-page-webinar-series7-v25 .webinar-dot {
  color: var(--color-mid-summit-s26);
}
.page-template-page-webinar-series7-v25 .webinar-date {
  color: var(--color-green-light);
}

.page-template-page-multi-synopse-series7-v25 .webinar-number,
.page-template-page-multi-synopse-series7-v25 .webinar-dot {
  color: var(--color-mid);
}

.page-template-page-multi-synopse-series7-v25 .webinar-speaker-name {
  color: var(--color-green-light);
  font-size: var(--font-normal);
  line-height: 1.2;
  min-height: 65px;
}

.page-template-page-multi-synopse-series7-v25 .emodules-block-three {
  background: var(--gradient-s7);
  color: white;
}

.page-template-page-multi-synopse-series7-v25
  .emodules-block-three
  .arrow-bg-button {
  background: white;
  color: var(--color-dark);
}

.page-template-page-multi-synopse-series7-v25 .emodules-block-three div {
  color: white;
}

.page-template-page-multi-synopse-series7-v25 .summit-gradient-down-bg {
  background: var(--gradient-s7);
}

/* ==========================================
   MEDIA QUERIES
   ========================================== */

@media only screen and (max-width: 768px) {
  .flex-row {
    display: flex;
    flex-direction: column;
  }

  .big-text {
    font-size: 34px;
  }
  .medium-text {
    font-size: 20px;
    line-height: 1.4;
  }
  .normal-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .page-template-page-multi-synopse-series7-v25 .webinar-information {
    text-align: center;
  }
  .page-template-page-multi-synopse-series7-v25 .webinar-title {
    text-align: center;
  }
  .page-template-page-multi-synopse-series7-v25 .webinar-number,
  .page-template-page-multi-synopse-series7-v25 .webinar-dot {
    text-align: center;
  }
}

/* =============================================================
   css/style-v25.css — VIDEO, PAGE STYLES & FEATURE COMPONENTS
   Sections extracted to dedicated module files:
     Utilities  → css/utilities/helpers.css
     Buttons    → css/components/buttons.css
     Banners    → css/components/webinar-banner.css
   ============================================================= */

/* ==========================================
   VIDEO CONTENT LISTING PAGE
   ========================================== */

/* Main Title Section */
.video-content-header {
  padding: 60px 0 40px;
  text-align: center;
}
.video-content-wrapper {
  padding-top: 100px;
}
.video-content-main-title {
  font-size: var(--font-medium);
  color: var(--color-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

/* Video Content Item Container */
.video-content-item {
  margin-bottom: 80px;
}

.video-content-item:last-child {
  margin-bottom: 60px;
}

/* Title with Purple Bar */
.video-content-title-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.video-content-title {
  width: 100%;
  font-size: var(--font-normal);
  color: var(--dark-text);
  font-weight: 700;
  margin: 0;
  padding: 15px 20px;
  line-height: 1.2;
  background: linear-gradient(
    90deg,
    var(--color-dark) 0%,
    var(--color-dark) 100%
  );
  color: white;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.video-content-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--color-dark);
  z-index: 2;
}

/* Content Grid */
.video-content-grid {
  align-items: flex-start;
}

/* Video Column */
.video-column {
  padding-right: 20px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Description Column */
.description-column {
  padding-left: 20px;
}

.video-description {
  font-size: var(--font-normal);
  color: var(--dark-text);
  line-height: 1.6;
}

.video-description p {
  margin-bottom: 15px;
}

.video-description p:last-child {
  margin-bottom: 0;
}

.video-description ul,
.video-description ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.video-description li {
  margin-bottom: 8px;
}

.video-description strong {
  color: var(--color-mid);
  font-weight: 700;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  .video-content-header {
    padding: 40px 0 30px;
  }

  .video-content-main-title {
    font-size: 34px;
  }

  .video-content-item {
    margin-bottom: 50px;
  }

  .video-content-title {
    font-size: 22px;
    padding: 12px 15px;
  }

  .video-column,
  .description-column {
    padding-left: 0;
    padding-right: 0;
  }

  .description-column {
    margin-top: 25px;
  }

  .video-description {
    font-size: 16px;
  }
}

/* ============================================================
   PAGE & FEATURE STYLES
   Merged from homepage-v25.css
   ============================================================ */

/* Multiple use */
.grid-item-title {
  font-family: var(--font-family);
  color: var(--color-dark);
  font-size: var(--font-default);
  font-weight: bold;
  text-align: center;
  padding: 30px 0 10px;
  line-height: 1.2;
  min-height: 120px;
}
.grid-item-title p {
  line-height: 1.2;
}

/* ------------------------------------------
TOP GRID SECTION (HOMEPAGE V25 AND SUMMIT V25
------------------------------------------ */
.homepage-wrapper,
.summit-wrapper {
  padding-top: 100px;
}
.home-top-grid,
.summit-top-grid {
  margin: 40px 0;
}

.home-top-grid .container,
.summit-top-grid .container {
  display: flex;
  gap: 20px;
}

.home-top-grid .big-block,
.summit-top-grid .big-block {
  width: 62%;
  background: var(--background-light);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  border-radius: 50px;
}

.contained-text {
  /* max-width: 355px; */
}

.duo-block {
  width: 38%;
  gap: 20px;
}
.home-top-grid .top-block-two,
.home-top-grid .emodules-block-three {
  width: 100%;
  background-color: var(--BG-light);
}

.emodules-block-three .center-text {
  line-height: 1;
}
.emodules-block-three a:focus img,
.emodules-block-three a:focus-visible img {
  outline: 3px dotted rgb(57 43 77);
  border-radius: 2rem;
}

.summit-gradient-bg {
  background: var(--summit-gradient);
  color: white;
  padding: 45px;
}
.summit-gradient-down-bg {
  background: var(--summit-gradient-down);
  color: white;
  padding: 45px;
}

.page-template-page-webinar-series7-v25 .summit-gradient-down-bg {
  background: var(--gradient-s7);
}

.summit-white-logo {
  margin-bottom: 15px;
}
.summit-next-webinar-number {
  font-size: 30px;
  color: white;
}
.summit-next-webinar-date {
  width: fit-content;
  background: white;
  padding: 7px 16px;
  border-radius: 12px;
  color: var(--color-green-light);
  font-size: 30px;
  margin: 10px 0;
  line-height: 1;
}
.summit-next-webinar-title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: white;
}

/* ------------------------------------------
PILLARS
------------------------------------------ */
.homepage-pillars .flex-row {
  gap: 20px;
}
.pillar-link {
  flex: 1;
}
.homepage-pillars .pillar {
  position: relative;
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}

.homepage-pillars .pillar:hover,
.pillar-link:active .pillar,
.pillar-link:focus .pillar {
  background-size: 110%;
  transition: all 0.3s ease-in-out;
}

.homepage-pillars .pillar-1::before,
.homepage-pillars .pillar-2::before,
.homepage-pillars .pillar-3::before,
.homepage-pillars .pillar-4::before,
.homepage-pillars .pillar-5::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-size: 100% 100%;
}

.homepage-pillars .pillar-1::before,
.homepage-pillars .pillar-3::before,
.homepage-pillars .pillar-5::before {
  background: linear-gradient(0deg, #5f1778, transparent);
}
.homepage-pillars .pillar-2::before,
.homepage-pillars .pillar-4::before {
  background: linear-gradient(0deg, #00d2a8, transparent);
}

.pillar .normal-text {
  position: absolute;
  bottom: 25px;
  z-index: 1;
  max-width: 220px;
}
/* ------------------------------------------
WELCOME
------------------------------------------ */
.welcome-section .container {
  padding: 50px;
}

/* Featured News
------------------ */
.featured-news {
  display: flex;
  width: 100%;
}
.featured-news .border-v25-block {
  display: flex;
  flex-direction: column;
  min-height: 475px;
  justify-content: space-between;
  flex: 1;
}
.news-img {
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  flex: 1;
}

.news-slider {
  margin: 10px 0 50px;
}
.news-slider .news-block {
  padding: 0 0 40px;
  text-align: left;
  position: relative;
  border-radius: 50px;
}
.news-block .medium-text,
.news-block .small-text,
.news-block .normal-text {
  padding: 0 40px 0;
  line-height: 1;
}

.news-block .small-text {
  min-height: 175px;
}
.news-block .normal-text {
  margin-bottom: 10px;
}
.news-block:hover {
  box-shadow: 2px 2px 10px var(--color-dark);
  transition: all 0.3s ease-in-out;
}
.news-block .arrow-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
/* the slides */
.news-slider .brand_new {
  position: absolute;
  max-width: 65px;
}

.news-slider .slick-slide {
  margin: 0 10px;
}
.news-img-small {
  background-color: var(--BG-dark);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  min-height: 207px;
  padding: 40px;
  border-radius: 50px;
  margin-bottom: 25px;
}
.news-slider .news-block {
  box-shadow: unset;
}
/* Resources Section
--------------------- */
.resources-section {
  margin: 75px auto;
}
.resources-grid {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
}
.resources-grid .resource {
  width: 49.5%;
  display: flex;
  position: relative;
}
.resource-icon {
  width: 70px;
  height: fit-content;
  padding-right: 20px;
}
.resource-content {
  line-height: 1;
}
.resource-content .light-green {
  line-height: 1;
}
.resource {
  transition: all 0.1s ease-in-out;
}
.resource:hover {
  background: var(--BG-dark);
  transition: all 0.1s ease-in-out;
}

.resource .arrow-link {
  position: absolute;
  right: 4px;
  bottom: 4px;
}

/* Schedule Section
--------------------- */
.schedule-section {
  margin: 0 auto 50px;
}
.schedule-section .event-grid {
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.schedule-section .event {
  max-width: 32%;
  width: 100%;
  min-height: 230px;
  border-radius: 25px;
}

.event-top {
  display: flex;
  gap: 7px;
}
.event-number {
  font-size: 50px;
  padding: 10px;
  background: var(--color-green-lightest);
  display: flex;
  color: white;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 25px;
  line-height: 1;
  min-width: 100px;
}
.event-date-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding: 15px 10px 10px 20px;
  gap: 0px;
  min-height: 115px;
  background: #f1f3fb;
  border-radius: 25px 25px 0 0;
}
.event-date {
  font-size: 24px;
  font-weight: bold;
}
.event-date sup {
  font-size: 55%;
}
.event-title {
  font-size: var(--font-default);
  color: var(--dark-text);
  background: #f1f3fb;
}
.event-bottom {
  font-size: var(--font-small);
  padding: 5px 10px 15px 10px;
  display: flex;
  align-items: end;
  border-top: 3px solid white;
  margin-top: 3px;
  background: #f1f3fb;
  border-radius: 14px 0 25px 25px;
}
.event-bottom .small-text {
  padding: 10px;
  line-height: 1.3;
  text-align: justify;
  font-weight: 400;
}
.event-bottom .arrow-link {
  background-color: var(--color-mid);
  color: var(--white);
}

.event:hover .event-number {
  background: var(--color-green-light);
  transition: all 0.3s ease-in-out;
}

/* Webinar Series 6 Page
--------------------- */
.multi-synopse-s6-block,
.multi-synopse-s7-block {
  display: flex;
  flex-direction: column;
}
.multi-synopse-s7-block .webinar-dual-speaker-photos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
}
.multi-synopse-s7-block .webinar-dual-speaker-photos .webinar-speaker-photo {
  flex: 1 1 0;
}

.page-template-page-multi-synopse-series6-v25 .page-synopse h3,
.page-template-page-multi-synopse-series7-v25 .page-synopse h3 {
  font-size: var(--font-medium);
  color: var(--color-mid);
  font-family: var(--font-default);
}

.webinar-s6-list,
.webinar-s7-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}
.webinar-s6-block,
.webinar-s7-block {
  flex: 1;
}
.webinar-flex-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  margin: 10px 0;
}
.webinar-speaker-photo {
  display: block;
  margin: 0 auto;
  z-index: 1;
}

.webinar-s7-block .webinar-speaker-photo {
  max-width: 138px;
}

.webinar-s6-pilar,
.webinar-s7-pilar {
  background: #f1f3fb;
  padding: 75px 18px 20px;
  margin-top: -65px;
  z-index: 0;
  border-radius: 25px;
}

.webinar-s7-pilar {
  background-color: #f9f9f9;
}
.webinar-number {
  color: var(--summit-purple);
  font-size: var(--font-normal);
  font-weight: 600;
  line-height: 1;
}

.webinar-dot {
  color: var(--summit-pink);
  font-size: 30px;
  line-height: 1;
}
.webinar-date {
  color: var(--color-green-light);
  font-size: var(--font-normal);
  font-weight: 600;
  line-height: 1;
}

.webinar-title {
  min-height: 130px;
  color: var(--color-dark);
  font-size: var(--font-normal);
  line-height: 1.2;
  font-weight: 600;
}
.webinar-speaker-name {
  color: var(--summit-pink);
  font-weight: 600;
  font-size: var(--font-small);
}
.webinar-speaker-name span {
  font-weight: 400;
}
.webinar-s6-organizer-block .speaker-block {
  background-color: var(--BG-light);
  padding: 35px 40px 35px 120px;
  margin-left: -125px;
  border-radius: 25px;
  z-index: 0;
}
.organizer-s6-desc,
.organizer-s7-desc {
  margin: 40px 0;
}
.webinar-s6-organizer-block .organizer-image,
.webinar-s7-organizer-block .organizer-image {
  z-index: 1;
  display: block;
}
.webinar-s6-organizer-block .organizer-name {
  color: var(--summit-pink);
  font-size: var(--font-medium-summit);
}
.webinar-s7-organizer-block .organizer-name {
  color: var(--color-dark);
  font-size: var(--font-medium-summit);
}
.webinar-s6-organizer-block .organizer-role,
.webinar-s7-organizer-block .organizer-role {
  color: var(--color-green-light);
  font-size: var(--font-medium-summit);
  font-weight: bold;
}
.webinar-s6-organizer-block .organizer-institution,
.webinar-s7-organizer-block .organizer-institution {
  font-weight: bold;
  border: none;
  padding: 0;
  color: var(--color-dark);
  font-size: var(--font-normal);
  max-width: 375px;
  line-height: 1.2;
  margin-top: 20px;
}
.webinar-s6-organizer-block .organizer-place,
.webinar-s7-organizer-block .organizer-place {
  font-weight: bold;
  padding: 0;
  color: var(--summit-purple);
  font-size: var(--font-medium-summit);
  max-width: 375px;
}
.webinar-s7-organizer-block .organizer-place {
  color: var(--color-green-light);
}

.organizer-description-text {
  margin: 20px auto;
  color: var(--color-dark);
  font-size: var(--font-normal);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.organizer-description-text p {
  line-height: 1.2;
}

.webinar-s6-description,
.webinar-s7-description {
  flex: 0 0 33%;
}
.webinar-s6-description .webinar-title,
.webinar-s7-description .webinar-title {
  min-height: fit-content;
  font-size: var(--font-medium-summit);
  line-height: 1;
}
.webinar-s7-description .webinar-title {
  margin: 20px 10px;
}
.webinar-s7-description .webinar-number,
.webinar-s7-description .webinar-date {
  font-size: 1.5rem;
}
.webinar-s6-description .webinar-speaker-information,
.webinar-s7-description .webinar-speaker-information {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 45px 20px 15px;
  min-height: 285px;
}
/* Dual speaker two-column layout (Series 7) */
.webinar-s7-description .webinar-dual-speaker-columns {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}
.webinar-s7-description .webinar-dual-speaker-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
}
.webinar-dual-speaker-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
  align-self: stretch;
  margin: 5px 0;
}
.webinar-s6-description .webinar-speaker-photo img,
.webinar-s7-description .webinar-speaker-photo img {
  margin: -95px auto 0;
  max-width: 109px;
  width: 100%;
  display: block;
}
.webinar-s7-description .webinar-dual-speaker-col .webinar-speaker-photo img {
  margin: -95px auto 0;
  max-width: 109px;
  width: 100%;
  display: block;
}
.webinar-s6-description .webinar-speaker-name,
.webinar-s7-description .webinar-speaker-name {
  text-align: center;
  color: white;
  font-size: var(--font-medium);
}
.webinar-s6-description .webinar-speaker-title,
.webinar-s6-description .webinar-speaker-role,
.webinar-s6-description .webinar-speaker-institution,
.webinar-s7-description .webinar-speaker-title,
.webinar-s7-description .webinar-speaker-role,
.webinar-s7-description .webinar-speaker-institution {
  text-align: center;
  color: white;
  font-size: 18px;
  line-height: 1.2;
}

.webinar-s6-synopse-block {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.webinar-topics-section-title {
  color: var(--color-green-light);
  margin-top: 20px;
  font-weight: 600;
}
.webinar-topics-s6,
.webinar-topics-s7 {
  margin-top: 10px;
}
.webinar-synopse-s6 p,
.webinar-synopse-s7 p {
  color: var(--color-dark);
}

.webinar-synopse-s6 p strong em,
.webinar-synopse-s6 p em strong,
.webinar-synopse-s7 p strong em,
.webinar-synopse-s7 p em strong {
  color: var(--color-green-light);
  font-style: normal !important;
}
.webinar-topics-s6 .webinar-main-topics-text1,
.webinar-topics-s7 .webinar-main-topics-text1 {
  color: var(--color-dark);
}

.page-template-page-multi-synopse-series6-v25 .webinar-questions,
.page-template-page-multi-synopse-series7-v25 .webinar-questions {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-template-page-multi-synopse-series6-v25
  .section-webinarslist-block
  .arrow-bg-button,
.page-template-page-multi-synopse-series7-v25
  .section-webinarslist-block
  .arrow-bg-button {
  margin: 20px auto;
}

/* S6 explicit overrides for shared synopse components
   (re-declared here at higher specificity to ensure they win over
   any .page-template-page-multi-synopse-series6-v25 rules above) */
.page-template-page-multi-synopse-series6-v25-php .synopse h4,
.page-template-page-multi-synopse-series6-v25 .synopse h4 {
  color: #00ceab;
  font-size: 20px;
}

.page-template-page-multi-synopse-series6-v25-php .questions-icon,
.page-template-page-multi-synopse-series6-v25 .questions-icon {
  max-width: 140px;
  margin: 0 auto;
  display: block;
}

.page-template-page-multi-synopse-series6-v25-php .main-topics,
.page-template-page-multi-synopse-series6-v25 .main-topics {
  display: grid;
  grid-template-columns: 50% 50%;
}

.page-template-page-multi-synopse-series6-v25-php .webinar-main-topics-icon,
.page-template-page-multi-synopse-series6-v25 .webinar-main-topics-icon {
  padding: 5px;
}

.page-template-page-multi-synopse-series6-v25-php .webinar-main-topics,
.page-template-page-multi-synopse-series6-v25 .webinar-main-topics {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-flow: column;
  padding-left: 10px;
}

.page-template-page-multi-synopse-series6-v25-php .webinar-questions h4,
.page-template-page-multi-synopse-series6-v25 .webinar-questions h4 {
  color: #00ceab;
  font-size: 20px;
  font-weight: bold;
}

.page-template-page-multi-synopse-series6-v25-php .webinar-questions ul li,
.page-template-page-multi-synopse-series6-v25 .webinar-questions ul li {
  font-size: 16px;
  color: #392d4c;
  text-align: left;
  max-width: 750px;
  margin: 0 auto;
  list-style-position: inside;
  font-weight: 500;
}

.page-template-page-multi-synopse-series6-v25-php .webinar-synopse-intro,
.page-template-page-multi-synopse-series6-v25 .webinar-synopse-intro {
  margin: 25px 0;
  border-left: 5px solid #00ceab;
  padding: 5px 20px;
}

.page-template-page-multi-synopse-series6-v25-php
  .webinar-synopse-intro
  .webinar-synapse-text,
.page-template-page-multi-synopse-series6-v25
  .webinar-synopse-intro
  .webinar-synapse-text {
  font-family: INDEPENENT_MEDIUM;
  line-height: 1.2;
  font-size: 16px;
}

.page-template-page-multi-synopse-series6-v25-php .page-synopse h2,
.page-template-page-multi-synopse-series6-v25 .page-synopse h2 {
  font-family: INDEPENENT_MEDIUM;
  font-size: 23px;
  font-weight: bold;
  color: #392d4c;
}

.page-template-page-multi-synopse-series6-v25-php .page-synopse p,
.page-template-page-multi-synopse-series6-v25 .page-synopse p {
  font-size: 17px;
  color: #392d4c;
}

/* S5 explicit overrides for shared synopse components
   (series5 color palette: #507ae2 accent, #072d5d body, #ef7522 borders) */
.page-template-page-multi-synopse-series5 .banner-flex {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.page-template-page-multi-synopse-series5 .main-topics,
.page-template-page-emodules-synopse5-v25 .main-topics {
  display: grid;
  grid-template-columns: 50% 50%;
}

.page-template-page-multi-synopse-series5 .webinar-main-topics-icon,
.page-template-page-emodules-synopse5-v25 .webinar-main-topics-icon {
  padding: 5px;
}

.page-template-page-multi-synopse-series5 .webinar-main-topics,
.page-template-page-emodules-synopse5-v25 .webinar-main-topics {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-flow: column;
  padding-left: 10px;
}

.page-template-page-multi-synopse-series5 .questions-icon,
.page-template-page-emodules-synopse5-v25 .questions-icon {
  max-width: 140px;
  margin: 0 auto;
  display: block;
}

.page-template-page-multi-synopse-series5 .synopse h4,
.page-template-page-emodules-synopse5-v25 .synopse h4 {
  color: #507ae2;
  font-size: 20px;
  font-family: 'Akkurat';
}

.page-template-page-multi-synopse-series5 .synopse p,
.page-template-page-emodules-synopse5-v25 .synopse p {
  font-size: 16px;
  color: #072d5d;
}

.page-template-page-multi-synopse-series5 .webinar-main-topics-text1,
.page-template-page-emodules-synopse5-v25 .webinar-main-topics-text1 {
  color: #507ae2;
  font-family: 'Akkurat';
  font-weight: bold;
}

.page-template-page-multi-synopse-series5 .webinar-main-topics-text2,
.page-template-page-emodules-synopse5-v25 .webinar-main-topics-text2 {
  color: #072d5d;
}

.page-template-page-multi-synopse-series5 .webinar-questions h4,
.page-template-page-emodules-synopse5-v25 .webinar-questions h4 {
  color: #507ae2;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Akkurat';
}

.page-template-page-multi-synopse-series5 .webinar-questions ul li,
.page-template-page-emodules-synopse5-v25 .webinar-questions ul li {
  font-size: 16px;
  color: #072d5d;
  text-align: left;
  max-width: 750px;
  margin: 0 auto;
  list-style-position: inside;
  font-weight: 500;
}

.page-template-page-multi-synopse-series5 .webinar-questions ul,
.page-template-page-emodules-synopse5-v25 .webinar-questions ul {
  margin: 0 0 1.5em 0;
}

.page-template-page-multi-synopse-series5 .webinar-synopse-intro,
.page-template-page-emodules-synopse5-v25 .webinar-synopse-intro {
  margin: 25px 0;
  border-left: 5px solid #ef7522;
  padding: 5px 20px;
}

.page-template-page-multi-synopse-series5
  .webinar-synopse-intro
  .webinar-synapse-text,
.page-template-page-emodules-synopse5-v25
  .webinar-synopse-intro
  .webinar-synapse-text {
  font-family: INDEPENENT_MEDIUM;
  line-height: 1.2;
  color: #072d5d;
  font-size: 16px;
}

.page-template-page-multi-synopse-series5 .feature-line,
.page-template-page-emodules-synopse5-v25 .feature-line {
  border-top: 4px solid #ef7522;
}

.page-template-page-multi-synopse-series5 .page-synopse h2,
.page-template-page-emodules-synopse5-v25 .page-synopse h2 {
  color: #507ae2;
}

.page-template-page-multi-synopse-series5 .page-synopse h3,
.page-template-page-emodules-synopse5-v25 .page-synopse h3 {
  color: #507ae2;
  font-family: 'Akkurat';
}

.page-template-page-multi-synopse-series5 .page-synopse p,
.page-template-page-emodules-synopse5-v25 .page-synopse p {
  font-size: 17px;
  color: #072d5d;
}

.multi-synopse-s7-subtitle {
  color: var(--summit-pink);
  font-size: 47px;
  line-height: 1;
}
.multi-synopse-s7-subtitle {
  color: var(--color-dark);
}
.multi-synopse-s6-text,
.multi-synopse-s7-text {
  font-size: var(--font-small);
  color: var(--color-dark);
}
.multi-synopse-s6-bigtext,
.multi-synopse-s7-bigtext {
  color: var(--summit-purple);
  margin: 20px auto;
}
.multi-synopse-s7-bigtext {
  color: var(--color-green-light);
}

.speaker-column-2 {
  display: flex;
  align-items: center;
}

/*Center of Excelence STYLES
---------------------------- */

.page-template-page-center-v25 .center-s1-block {
  background: var(--new-gradient);
  background-size: cover;
  padding: 50px 0 35px;
  font-size: var(--font-normal);
  color: #ffffff;
  text-align: center;
}

.page-template-page-center-v25 .center-s1-text {
  font-size: var(--font-medium);
  font-weight: 100;
  margin: 0 5px 0 15px;
  padding-left: 10px;
  border-left: 3px solid var(--color-mid);
}
.page-template-page-center-v25 .center-s2-row {
  margin: auto;
}
.page-template-page-center-v25 .center-s2-row p {
  font-size: var(--font-normal);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.3;
}

.page-template-page-center-v25 .center-s2-row h4 {
  font-size: var(--font-medium);
  color: var(--color-dark);
  line-height: 1.2;
  font-family: 'Roboto';
}

.page-template-page-center-v25 .quote-big p {
  color: var(--color-dark);
}

.page-template-page-center-v25 .text-visit {
  color: var(--color-dark);
  font-size: var(--font-normal);
  padding-right: 38px;
  text-align: justify;
}

.page-template-page-center-v25 .center-section-link {
  background: var(--color-mid);
}

.page-template-page-center-v25 .center-s4 h4 {
  font-family: var(--font-family);
  font-size: var(--font-medium);
  color: var(--color-dark);
  line-height: 1;
}
.page-template-page-center-v25 .quote-big {
  background: unset;
  margin: 25px 0;
  font-weight: 400;
  font-size: var(--font-normal);
}
.page-template-page-center-v25 .quote-big {
  color: var(--color-dark);
}

/* HSPA STYLES
------------------- */
.page-template-page-hspa-v25 .hspa-s1-logo {
  border-right: 3px solid white;
}
.page-template-page-hspa-v25 .hspa-s1-bold {
  border-left: 3px solid white;
}
.page-template-page-hspa-v25 .hspa-s2-text-1,
.page-template-page-hspa-v25 .hspa-s2-text-1-thin {
  color: var(--color-dark);
  font-size: var(--font-normal);
}
.page-template-page-hspa-v25 .hspa-feature {
  background-color: var(--color-dark);
}

.page-template-page-hspa-v25 .hspa-btn,
.page-template-page-hspa-v25 .hspa-btn-emodule {
  background: var(--color-mid);
}
.page-template-page-hspa-v25 .hspa-s3-title,
.page-template-page-hspa-v25 .hspa-s3-text,
.page-template-page-hspa-v25 .hspa-s4-title {
  color: var(--color-dark);
}

.page-template-page-hspa-v25 .hspa-s5-title h4 strong,
.page-template-page-hspa-v25 .hspa-s5-title p {
  color: var(--color-dark);
}

.page-template-page-hspa-v25 .hspa-s5-list-2 {
  color: var(--color-dark);
}

/* HSPA emodules
------------------------ */
.page-template-page-hspa-v25 .hspa-accreditation-block {
  text-align: center;
  margin: 10px auto 0px;
  font-size: 20px;
  color: var(--color-dark);
  line-height: 1.2;
  box-shadow: none;
}

.page-template-page-hspa-v25 .hspa-s3-block .ukcpd-acreditation {
  text-align: center;
  margin: 0px auto 0px;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.2;
  text-transform: uppercase;
}
/* Emodules Buttons
--------------------- */
.page-template-page-emodules-synopse4-v25 .talentlms-btn,
.page-template-page-emodules-hspa-v25 .talentlms-btn,
.page-template-page-emodules-synopse3-v25 .talentlms-btn,
.page-template-page-emodules-synopse-v25 .talentlms-btn,
.page-template-page-emodules-synopse5-v25 .talentlms-btn {
  border-radius: 25px;
  padding: 5px 5px 5px 21px;
  background: linear-gradient(to right, #5f1778, #3a2d4c, #04d0a6);
  background-position: right center;
  background-size: 100% 100%;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: fit-content;
  min-width: 200px;
  align-items: center;
  font-size: var(--font-normal);
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  gap: 5px;
  padding: 10px 20px;
  border: none;
}
/* Emodules STYLES
--------------------- */
.page-template-page-emodules-v25 .emodules-banner-title {
  color: var(--color-mid);
  font-family: var(--font-family);
  font-weight: bold;
}
.page-template-page-emodules-v25 .emodules-s1-block {
  background: var(--new-gradient);
  padding: 50px 0 35px;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.page-template-page-emodules-v25 .emodules-s2-text h3 {
  font-family: var(--font-family);
  font-size: 24px;
  color: var(--color-mid);
}

.page-template-page-emodules-v25 .asp-links .arrow-bg-button {
  max-width: 97%;
  width: 97%;
  min-width: unset;
  line-height: 1;
}
.page-template-page-emodules-v25 .arrow-bg-button {
  font-size: var(--font-default);
}
.emodule-pilar {
  /*   flex:1;
  margin: 0 10px; */
}
.emodule-pillar-image {
  position: relative;
}
.emodule-pillar-image {
  background-color: var(--BG-light);
}

.documents-s-img img,
.pagefactsheets-photo,
.emodule-pillar-image-file {
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
  max-height: 200px;
  overflow: hidden;
}
.border-emodules-block {
  background: var(--background-light);
  padding: 0 15px 25px;
  border-radius: 0 0 25px 25px;
}

.page-template-page-emodules-v25 .emodules-s2-block {
  font-family: var(--font-family);
  padding: 40px 0;
  font-size: var(--font-normal);
  color: var(--color-dark);
}

.page-template-page-emodules-v25 .emodules-s2-block .flex-row {
  flex-wrap: wrap;
  gap: 30px 15px;
  align-items: center;
  justify-content: center;
}
.page-template-page-emodules-v25 .emodules-s2-block .flex-row .emodule-pilar {
  max-width: calc(33% - 7px);
}
.page-template-page-emodules-v25 .stamp-ce,
.page-template-page-emodules-v25 .stamp-lang {
  top: 165px;
}

.page-template-page-emodules-v25 .emodules-s-text p {
  font-family: var(--font-family);
  color: var(--color-dark);
  font-size: var(--font-default);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
/* Documents STYLES
--------------------- */
.page-template-page-documentacao-v25 .documents-s2-title {
  color: var(--color-mid);
  font-family: var(--font-family);
  font-weight: bold;
}
.page-template-page-documentacao-v25 .documents-s-text p {
  padding: 20px 0 0;
  font-family: var(--font-family);
  font-size: var(--font-normal);
  color: var(--color-mid);
  line-height: 1;
  height: fit-content;
  text-align: center;
  min-height: 100px;
}

/* Factsheets STYLES
--------------------- */
.page-template-page-factsheets-list-v25
  .pagefactsheets-banner
  .webinars-title-banner {
  font-family: var(--font-family);
  font-size: var(--font-medium);
  font-weight: bold;
}

.page-template-page-factsheets-list-v25 .pagefactsheets-text {
  font-family: var(--font-family);
  color: var(--color-dark);
  font-size: var(--font-default);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.page-template-page-factsheets-list-v25 .pagefactsheets-text2 {
  font-size: 15px;
  color: var(--color-dark);
}
/* About Us STYLES
-------------------- */
.page-template-page-about-us1-v25 .landing-2022-v1-ls1-text1,
.page-template-page-about-us1-v25 .landing-2022-v1-ls4-text1,
.page-template-page-about-us1-v25 .landing-2022-v1-ls4-text3,
.page-template-page-about-us1-v25 .landing-2022-v1-ls6-text1,
.page-template-page-about-us1-v25 .landing-2022-v1-ls7-text1,
.page-template-page-about-us1-v25 .ls4-name {
  color: var(--color-mid);
}

.page-template-page-about-us1-v25 .landing-2022-v1-ls1-text2,
.page-template-page-about-us1-v25 .landing-2022-v1-ls1-text3,
.page-template-page-about-us1-v25 .landing-2022-v1-ls4-text2,
.page-template-page-about-us1-v25 .landing-2022-v1-ls4-text4,
.page-template-page-about-us1-v25
  .landing-2022-v1-ls4-text5
  .page-template-page-about-us1-v25
  .landing-2022-v1-ls6-text2,
.page-template-page-about-us1-v25 .landing-2022-v1-ls6-text3,
.page-template-page-about-us1-v25 .landing-2022-v1-ls6-text4,
.page-template-page-about-us1-v25 .ls4-title,
.page-template-page-about-us1-v25 .ls4-title-2,
.page-template-page-about-us1-v25 .ls4-profession,
.page-template-page-about-us1-v25 .ls4-place,
.page-template-page-about-us1-v25 .ls4-text,
.page-template-page-about-us1-v25 .landing-2022-v1-ls2-text1,
.page-template-page-about-us1-v25 .landing-2022-v1-ls2-text2,
.page-template-page-about-us1-v25 .landing-2022-v1-ls4-text5,
.page-template-page-about-us1-v25 .landing-2022-v1-ls7-text2,
.page-template-page-about-us1-v25 .landing-2022-v1-ls7-text3,
.page-template-page-about-us1-v25 .landing-2022-v1-ls7-text4 {
  color: var(--dark-text);
}

.page-template-page-about-us1-v25 .landing-2022-v1-feature {
  background: var(--color-mid);
}
.page-template-page-about-us1-v25
  .landing-2022-v2-banner
  .landing-2022-v1-feature,
.page-template-page-about-us1-v25
  .landing-2022-v1-section-5
  .landing-2022-v1-feature {
  background: white;
}

.page-template-page-about-us1-v25 .landing-2022-v1-section-3 .arrow-bg-button {
  background: var(--color-green-light);
}
.page-template-page-about-us1-v25 .formulario-text-1 {
  color: var(--color-mid);
  font-size: var(--font-medium);
  font-family: var(--font-family);
  font-weight: bold;
}
.page-template-page-about-us1-v25 .formulario-text-1 p {
  line-height: 1.2;
}
/* Multipage STYLES
--------------------- */
.header-v25 .login-top-menu,
#site-navigation2 {
  /* background: var(--new-gradient); */
}

.page-template-page-center-v25 .center-banner-logo {
  max-width: 450px;
}

.page-template-page-forms-v25 .pagevideos-banner {
  background: none;
}
.page-template-page-forms-v25 h1 {
  color: var(--color-mid);
}

/* EMODULES
----------------*/
.page-template-page-podcast-videos-php .documents-banner-title,
.page-template-page-emodules-hspa-v25 .emodules-banner-title,
.page-template-page-emodules-synopse-v25 .emodules-banner-title,
.page-template-page-emodules-synopse3-v25 .emodules-banner-title,
.page-template-page-emodules-synopse4-v25 .emodules-banner-title,
.page-template-page-emodules-synopse5-v25 .emodules-banner-title,
.page-template-page-all-factsheets-v25 .documents-banner-title,
.page-template-page-all-factsheets .documents-banner-title {
  color: var(--color-mid);
  font-family: var(--font-family);
  font-weight: bold;
}

.page-template-page-multi-synopse-v25 .organizer-name,
.page-template-page-emodules-synopse-v25 .organizer-name,
.page-template-page-emodules-synopse4-v25 .organizer-name,
.page-template-page-multi-synopse-v25 .organizer-role,
.page-template-page-emodules-synopse-v25 .organizer-role,
.page-template-page-emodules-synopse4-v25 .organizer-role {
  color: #3a274b;
}

.page-template-page-emodules-synopse-v25 .organizer-institution,
.page-template-page-emodules-synopse4-v25 .organizer-institution {
  color: #00ceab;
}
.page-template-page-multi-synopse-v25 .organizer-institution,
.page-template-page-emodules-synopse-v25 .organizer-institution {
  border-color: #00ceab;
}
.page-template-page-emodules-synopse-v25 .how-to-section,
.page-template-page-emodules-synopse-v25 .accreditation-block,
.page-template-page-emodules-synopse3-v25 .how-to-section,
.page-template-page-emodules-synopse3-v25 .accreditation-block,
.page-template-page-emodules-synopse4-v25 .how-to-section,
.page-template-page-emodules-synopse4-v25 .accreditation-block,
.page-template-page-emodules-synopse5-v25 .accreditation-block,
.page-template-page-emodules-synopse5-v25 .how-to-section,
.page-template-page-emodules-hspa-v25 .how-to-section,
.page-template-page-emodules-hspa-v25 .accreditation-block {
  border-radius: 25px;
  padding: 20px;
  box-shadow: none;
}
.page-template-page-emodules-synopse-v25 .shadow-block,
.page-template-page-emodules-synopse3-v25 .shadow-block,
.page-template-page-emodules-synopse4-v25 .shadow-block,
.page-template-page-emodules-synopse5-v25 .shadow-block,
.page-template-page-emodules-hspa-v25 .shadow-block {
  box-shadow: none;
}

/* EMODULES SYNOPSE S3 */
.page-template-page-multi-synopse-series3-v25 .webinar-synopse-block,
.page-template-page-emodules-synopse3-v25 .webinar-synopse-block {
  background: #cfe3f6;
}
.page-template-page-multi-synopse-series3-v25 .webinar-bg-silver-1,
.page-template-page-emodules-synopse3-v25 .webinar-bg-silver-1,
.page-template-page-emodules-synopse3-v25
  .webinar-bg-silver-1
  .webinar-synopse-block-2 {
  background: #cfe3f6;
}

.page-template-page-multi-synopse-series3-v25 .organizer-name,
.page-template-page-emodules-synopse3-v25 .organizer-name,
.page-template-page-multi-synopse-series3-v25 .organizer-role,
.page-template-page-emodules-synopse3-v25 .organizer-role {
  color: #4c78c3;
}

.page-template-page-multi-synopse-series3-v25 .organizer-by,
.page-template-page-multi-synopse-series3-v25 .organizer-institution,
.page-template-page-emodules-synopse3-v25 .organizer-by,
.page-template-page-emodules-synopse3-v25 .organizer-institution {
  color: #00ceab;
}
.page-template-page-emodules-synopse3-v25 .webinar-main-topics-text1 {
  color: #ffffff;
  text-shadow: 0 1px 2px #888888;
  font-size: 18px;
  font-weight: bold;
}

/* EMODULES HSPA */
.page-template-page-emodules-hspa-v25 .emodules-banner-title {
  margin-top: 10px;
}

/* .page-template-page-events-webinars-v25  */
.page-template-page-events-webinars-v25 .multiple-other-title {
  color: var(--color-mid);
  font-family: var(--font-family);
  font-weight: bold;
}

.page-template-page-events-webinars-v25 .documents-others-title {
  font-family: var(--font-family);
  font-weight: bold;
  min-height: 85px;
}

.page-template-page-events-webinars-v25 .documents-others-text {
  font-family: var(--font-family);
}
/* page-articles-v25 */
.page-template-page-factsheet-resources-v25 .documents-banner-title,
.page-template-page-documentacao-v25 .documents-banner-title,
.page-template-page-case-studies-v25 .documents-banner-title,
.page-template-page-events-webinars-v25 .documents-banner-title,
.page-template-page-articles-v25 .documents-banner-title {
  color: var(--color-mid);
  font-family: var(--font-family);
  font-weight: bold;
}
.page-template-page-articles-v25 .documents-others-title {
  font-family: var(--font-family);
  color: var(--color-mid);
  font-weight: bold;
}

.page-template-page-articles-v25 .documents-others-text a {
  color: var(--color-dark);
  font-size: var(--font-normal);
  font-weight: bold;
  font-family: var(--font-family);
  font-size: var(--font-default);
}
.page-template-page-articles-v25 .section-helpful-resources {
  color: var(--dark-text);
}
.page-template-page-articles-v25 .section-helpful-resources a {
  color: var(--color-dark);
}

.resource-row {
  display: flex;
  margin: 5px auto;
  font-size: var(--font-default);
  color: var(--color-dark);
  position: relative;
  justify-content: space-between;
}
.resource-row-title {
  font-size: var(--font-default);
  color: var(--color-dark);
  font-weight: bold;
}

/* Webinar S6 Page */
.videos-register-link {
  justify-content: center;
  width: 100%;
}

.page-template-page-webinar-series6-v25 .webinar-information {
  text-align: center;
}

.webinar-series-6-bg,
.webinar-series-7-bg {
  aspect-ratio: 1176 / 347;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 50px;
}

.webinar-series-7-bg {
  aspect-ratio: unset;
  background-size: cover;
}

.webinar-series-6-title {
  padding: 50px 15px 0 60px;
  max-width: 825px;
}
.webinar-series-7-title {
  padding: 50px 20px 60px;
  max-width: unset;
  text-align: center;
  font-weight: 600;
}
.webinar-series-6-title p {
  color: var(--color-dark);
  font-size: 5rem;
  font-weight: bold;
  line-height: 0.8;
}
.webinar-series-7-title p {
  font-size: 3rem;
  color: white;
  line-height: 1;
}
.webinar-series-7-title p em {
  font-size: 1.5rem;
  font-style: normal;
}
.webinar-series-7-title p strong {
  color: var(--color-green-light);
}
.webinar-series-6-title p strong {
  color: var(--color-light);
}
.webinar-s6-title,
.webinar-s7-title {
  color: var(--color-dark);
  font-size: var(--font-large);
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.webinar-s6-grid-content,
.webinar-s7-grid-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin: 20px auto;
  align-items: start;
}
.webinar-s7-grid-content {
  max-width: 49%;
}
.main-topics-title {
  color: var(--color-green-light);
  font-size: var(--font-medium);
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
}

.webinar-icon-topics {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.webinar-s6-grid-content .webinar-main-topics-icon,
.webinar-s7-grid-content .webinar-main-topics-icon {
  width: 75px;
  height: 75px;
  aspect-ratio: 1/1;
  background: var(--color-mid-summit-s26);
  border-radius: 50%;
  padding: 0;
}
.webinar-topics-s7 .webinar-main-topics-icon {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  background: var(--color-mid-summit-s26);
  border-radius: 50%;
  padding: 0;
}

.webinar-s6-grid-content .webinar-main-topics-text,
.webinar-s7-grid-content .webinar-main-topics-text {
  color: var(--color-dark);
  line-height: 1.2;
  padding: 0 20px;
}
.webinar-s6-grid-content .webinar-main-topics-text p,
.webinar-s7-grid-content .webinar-main-topics-text p {
  font-size: var(--font-default);
  line-height: 1.6;
}
.webinar-main-topics-title {
  color: var(--color-dark);
  font-size: var(--font-normal);
  font-weight: 600;
  line-height: 1.2;
}
.webinar-main-topics-subtitle {
  color: var(--color-dark);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.2;
}

.webinar-speaker-information {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.speaker-column-1 {
  /* max-width: 320px; */
}
/* Dual speaker — shared photo centered above two info columns (Series 7 webinar) */
.page-template-page-webinar-series7-v25 .webinar-s7-speaker-block-dual {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
}
.page-template-page-webinar-series7-v25
  .webinar-s7-speaker-block-dual
  .webinar-s7-speaker-block {
  flex: 1 1 0;
  min-width: 0;
}
.page-template-page-webinar-series7-v25 .webinar-s7-dual-photo {
  display: block;
  text-align: center;
  margin: -80px auto 15px;
  z-index: 1;
}
.page-template-page-webinar-series7-v25 .webinar-s7-dual-photo img {
  max-width: 260px;
  width: 100%;
}
.page-template-page-webinar-series7-v25 .webinar-s7-dual-speakers {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.page-template-page-webinar-series7-v25
  .webinar-s7-dual-speakers
  .webinar-dual-speaker-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
}
.page-template-page-webinar-series7-v25
  .webinar-s7-dual-speakers
  .webinar-speaker-title {
  min-width: unset;
}
.page-template-page-webinar-series6-v25
  .webinar-speaker-information
  .webinar-speaker-photo,
.page-template-page-webinar-series7-v25
  .webinar-speaker-information
  .webinar-speaker-photo {
  display: block;
  margin: -80px auto 0;
  z-index: 1;
  text-align: center;
}
.webinar-speaker-information .webinar-speaker-name {
  color: white;
  font-size: var(--font-medium);
  text-align: center;
  line-height: 1;
}

.page-template-page-webinar-series7-v25
  .webinar-speaker-information
  .webinar-speaker-photo {
  max-width: 150px;
}

.webinar-speaker-information .webinar-speaker-title {
  font-size: var(--font-normal);
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  min-width: 200px;
}
.page-template-page-webinar-series7-v25
  .webinar-speaker-information
  .webinar-speaker-title {
  color: #05d0a6;
  line-height: 1.1;
}
.webinar-speaker-information .webinar-speaker-role p {
  font-size: var(--font-normal);
  text-align: center;
  line-height: 1.2;
}
.feature-white-bar {
  background: white;
  border-radius: 50px;
  height: 5px;
  width: 50px;
  margin: 10px auto;
}
.webinar-speaker-information .webinar-speaker-institution {
  font-size: var(--font-normal);
  text-align: center;
}

.webinar-speaker-text p {
  font-weight: 500;
  line-height: 1.4;
}

.section-teaser-video {
  margin: 20px auto;
  display: block;
}

.statistics-feedback-block {
  text-align: center;
}
.statistics-feedback-title {
  font-family: var(--font-family);
  color: var(--color-green-light);
  font-size: var(--font-medium);
}
.webinar-feedback-slider {
  margin: 20px auto 40px !important;
}

.webinar-feedback-slider .slick-list {
  margin: 20px 0;
}

.webinar-feedback-slider .slick-slide {
  margin: 0 10px;
}

.webinar-feedback-slider .slick-dots {
  bottom: -45px;
}

.feedback-padding {
  min-height: 200px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.section-quote-block {
  margin: 100px auto 50px;
  text-align: center;
  position: relative;
}
.section-quote-feature {
  position: absolute;
  top: -17%;
  max-width: 135px;
  left: 7%;
}
.section-quote-name {
  font-size: 34px;
  font-weight: bold;
}
.section-quote-text {
  margin: 10px auto;
}
.section-quote-text p {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}
.section-question-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 20px 15px;
}
.section-question-title {
  font-family: var(--font-family);
  color: var(--color-dark);
  font-size: var(--font-medium);
  font-weight: bold;
}
.section-question-text {
  font-family: var(--font-family);
  color: var(--color-dark);
  font-size: var(--font-normal);
  font-weight: bold;
}
.factsheet-webinar-block {
  position: relative;
  align-items: anchor-center;
  justify-content: space-between;
  /* height: 150px; */
  background-color: var(--BG-light);
  border: 20px solid var(--BG-light);
  border-radius: 200px;
  gap: 25px;
}
.factsheet-webinar-grid {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: stretch;
  justify-content: space-evenly;
  margin: 50px auto;
  flex-wrap: wrap;
}

.factsheet-webinar-icon {
  z-index: 1;
  max-width: 100px;
  background: var(--color-mid-summit-s26);
  border-radius: 50%;
  padding: 0;
}
.factsheet-webinar-links {
  background: var(--BG-light);
  display: flex;
  flex-direction: column;
  z-index: 0;
}
.factsheet-webinar-text {
  font-size: var(--font-medium);
  color: var(--color-dark);
  font-weight: bold;
  line-height: 1;
}
.factsheet-webinar-link {
  font-size: var(--font-normal);
  color: var(--color-green-light);
  font-weight: bold;
  line-height: 1;
}
.factsheet-webinar-block .arrow-link-border-bg {
  position: relative;
  background: var(--summit-gradient);
}

.factsheet-webinar-block .arrow-link-border-bg .arrow-link-border {
  margin: 4px;
}

.button-factsheet-container,
.button-podcast-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.page-template-page-webinar-series7-v25-php .webinar-series-v25-top {
  text-align: center;
}

/* ------------------------------------------
Filters Page
------------------------------------------ */
.container-filter {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.column-filter {
  width: 30%;
}

.column-pages {
  width: 70%;
}

/* Mobile: Stack filters on top, results below */
@media (max-width: 768px) {
  .container-filter {
    flex-direction: column;
    gap: 20px;
  }

  .column-filter {
    width: 100%;
    order: -1; /* Filters appear first */
  }

  .column-pages {
    width: 100%;
    order: 0; /* Results appear after */
  }
}

.filter-item {
  margin-bottom: 8px;
}

.filter-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

#list-pages {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-page {
  margin-bottom: 10px;
}
.filters-option {
  position: relative;
}
.filters-option a {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  width: fit-content;
  line-height: 1.2;
}
.tags-page {
  color: var(--color-mid);
}
/* ------------------------------------------
MOBILE STYLES
------------------------------------------ */
@media only screen and (max-width: 1170px) {
  .resources-grid {
    gap: 5px;
  }
}
@media only screen and (max-width: 768px) {
  /* MOBILE General
  ------------------- */
  .container {
    max-width: 95%;
  }
  .homepage-wrapper,
  .summit-wrapper {
    padding-top: 70px;
  }
  .home-top-grid .big-block,
  .summit-top-grid .big-block,
  .duo-block {
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  .border-duo-column {
    flex-direction: column-reverse;
  }
  .featured-news .border-v25-block {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }
  .resources-grid .resource {
    width: 100%;
  }
  .resource-content {
    max-width: 75%;
  }
  .resource-content .medium-text {
    line-height: 1.2;
  }
  .resource-content .small-text {
    padding-right: 10px;
  }

  /* Schedule Section Mobile 
  ----------------------------- */
  .schedule-section .event-grid {
    flex-direction: column;
    gap: 0px;
    margin-top: 20px;
  }

  .schedule-section .event {
    max-width: 100%;
    margin: 10px 0;
    padding: 0px;
    background-color: #f1f3fb;
    border-radius: 25px;
  }
  .schedule-section .event-number {
    border: 8px solid white;
  }
  .schedule-section .event-date,
  .schedule-section .event-title {
    font-size: var(--font-default);
  }
  .schedule-section .event-date-title {
    padding: 15px 10px 10px;
  }

  .page-template-page-summit-v25 .news-section .featured-news {
    display: flex;
    flex-direction: column;
  }

  /* Factsheets Mobile
  ----------------------*/
  .pagefactsheets-text {
    height: fit-content;
  }

  /* Emodules List Mobile
  ----------------------- */
  .page-template-page-emodules-v25 .emodules-s1-block {
    padding: 20px 0;
  }
  .emodule-pilar {
    margin: 20px 10px;
  }
  .emodules-s2-text p {
    font-size: 16px;
  }

  /* Center of Excelence Mobile
  ------------------------------- */
  .page-template-page-center-v25 .center-s1-block {
    padding: 20px 0;
  }
  .page-template-page-center-v25 .center-s1-logo {
    margin: 5px auto;
  }
  .page-template-page-center-v25 .center-s1-text {
    margin: 0 auto;
    padding: 0;
    border: none;
    line-height: 1;
  }
  .page-template-page-center-v25 .center-s1-bold {
    line-height: 1;
  }
  .page-template-page-center-v25 .text-visit {
    padding-right: 0px;
    text-align: justify;
  }
  .page-template-page-center-v25 .content-center {
    padding: 45px 20px;
  }

  /* ASP Summit S6
  ------------------------------- */
  .webinar-title {
    min-height: unset;
  }

  .webinar-s6-list,
  .webinar-flex-grid {
    flex-direction: column;
  }
  .webinar-s6-organizer-block .speaker-block {
    margin-left: 0px;
    padding: 30px;
  }
  .webinar-s6-title {
    font-size: var(--font-medium);
  }
  .webinar-speaker-information {
    flex-direction: column;
    align-items: center;
  }
  .factsheet-webinar-grid {
    flex-direction: column;
    gap: 30px;
  }
  .factsheet-webinar-block {
    flex-direction: row !important;
    gap: 8px;
  }
  .factsheet-webinar-icon {
    max-width: 50px;
  }
  .factsheet-webinar-text {
    font-size: var(--font-medium);
  }
  .factsheet-webinar-link {
    font-size: var(--font-normal);
  }

  /* Mobile-friendly multilang links */
  .factsheet-webinar-multilang-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .factsheet-webinar-multilang-links.show-for-small-only {
    flex-direction: column;
    margin-top: 15px;
    gap: 12px;
  }

  .factsheet-webinar-multilang-links.show-for-small-only
    .factsheet-webinar-link {
    width: 80%;
    text-align: center;
    padding: 18px 20px;
    font-size: 16px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-weight: 600;
    background: #f1f3fb;
    margin: 0 auto;
  }
}

/* =====================================================================
   QUICK LINKS BUTTONS - Webinar Navigation
   ===================================================================== */
.webinar-quick-links-block {
  padding: 12px 0;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0;
  align-items: center;
  justify-content: center;
}

.quick-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 150ms ease,
    opacity 150ms ease;
}
.page-template-page-webinar-series7-v25 .quick-link-button {
  background: var(--background-light);
  color: var(--dark-text);
}

.quick-link-button:hover {
  color: white;
  transform: translateY(-1px);
  opacity: 0.9;
}

.quick-link-button:focus,
.quick-link-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  opacity: 1;
}

.quick-link-icon {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

/* Override :target styles for factsheet sections */
#factsheet-section:target,
#podcast-section:target,
#recording-section:target {
  padding-top: 0 !important;
  margin-top: 0 !important;
  display: flex !important;
}
/* Mobile styles for webinar series 6 title */
@media (max-width: 768px) {
  .webinar-series-6-title {
    padding: 27px 15px 0 11px;
  }
  .webinar-series-6-title p {
    font-size: 2rem;
  }
}
