/* =============================
    RESET & BASE
    ============================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    overflow: hidden;
}

html,
body {
    font-size: 0;
    line-height: 0;
    font-weight: 0;
    letter-spacing: 0;
}

/* =============================
    TYPOGRAPHY
    ============================= */
body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #28334a;
}

button {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a:focus {
    box-shadow: 0 0 12px #0cf9;
}

.container {
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 24px;
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

/* .molecule-card-img-wrapper img {
    max-width: 407px;
    aspect-ratio: 407 / 213.53;
    width: 100%;
    object-fit: cover;
} */
.molecule-card-img-body {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    width: 100%;
}

.molecule-card-img-body img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================
    Font Sizes
    ============================= */
.fs-14 {
    font-size: 14px !important;
    line-height: 21px !important;
    letter-spacing: 0.17px !important;
}

.fs-16 {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
}

.fs-18 {
    font-size: 18px !important;
    line-height: 27px !important;
    letter-spacing: 0.18px !important;
}

.fs-20 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.04px;
}

.fs-24 {
    font-size: 24px !important;
    line-height: 30px !important;
    letter-spacing: 0 !important;
}

.fs-26 {
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 0;
}

.fs-56 {
    font-size: 56px;
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 500;
}

/*Font Colors*/
.text-color-28334A {
    color: #28334a !important;
}

.text-color-FFB05F {
    color: #ffb05f;
}

.text-color-B65C62 {
    color: #b65c62 !important;
}

.text-light {
    color: #ffffff !important;
}

.bg-color-6496A0 {
    background-color: #6496a0 !important;
}

.bg-color-B65C62 {
    background-color: #b65c62 !important;
}

/* Font Weights */
.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-17 {
    margin-top: 17px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-27 {
    margin-top: 27px !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-57 {
    padding-top: 57px !important;
}

.mb-27 {
    margin-bottom: 27px !important;
}

.mb-38 {
    margin-bottom: 38px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-29 {
    padding-top: 29px;
}

.pb-57 {
    padding-bottom: 57px !important;
}

.mw-800 {
    max-width: 800px !important;
}

.border-top {
    border-top: 1px solid #707070 !important;
}

.mt-67 {
    margin-top: 67px;
}

.card-clinical .card-badge {
    background-color: #f0dedf !important;
}

/* =============================
    NAVBAR
    ============================= */
header,
header.shadow-sm {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 21px 0 22px;
    position: relative;
    box-shadow: 0px 0px 32px #0000001f !important;
    z-index: 1000;
}

header,
header.shadow-sm {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.beone-navbar .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.beone-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    max-width: 123px;
    width: 100%;
}

.beone-logo img {
    width: auto;
}

/* Nav Links */
.beone-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    max-width: 1140px;
    width: 100%;
    justify-content: space-between;
}

.beone-nav .nav-item {
    position: relative;
}

.beone-nav .nav-item:not(:last-child):after {
    content: "";
    background: #d52b1e;
    width: 0;
    height: 2px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.beone-nav .nav-item:not(:last-child):hover:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    left: 0;
    right: auto;
    height: 2px;
}

.beone-nav .nav-item:not(:last-child).open:after,
.beone-nav .nav-item.active:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    left: 0;
    right: auto;
    height: 4px !important;
}

.beone-nav .nav-link:focus,
.beone-nav .nav-item.open .nav-link {
    box-shadow: 0px 0px 12px rgba(0, 204, 255, 0.6);
    outline: none;
}

.beone-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.18px;
    color: #28334a;
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
    padding: 10px;
}

.beone-nav .nav-link .chevron-icon {
    font-size: 11px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.beone-nav .nav-item:hover .chevron-icon,
.beone-nav .nav-item.open .chevron-icon {
    transform: rotate(180deg);
}

/* =============================
    DROPDOWN MENU
    ============================= */
.beone-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 31px);
    left: 0;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    min-width: 520px;
    z-index: 9999;
    padding: 12px 0 16px;
}

.beone-dropdown::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    height: 35px;
    background-color: transparent;
}

/* Single-column variant (no sub-items) */
.beone-dropdown:has(.dropdown-col--single) {
    min-width: 280px;
}

.beone-nav .nav-item.open .beone-dropdown {
    display: flex;
}

.dropdown-col {
    flex: 1;
    padding: 0 12px;
    border-right: 1px solid #bfbfbf;
}

.dropdown-col:last-child {
    border-right: none;
}

.dropdown-col-title {
    display: block;
    padding: 11px 12px;
    font-size: 17px;
    font-weight: 400;
    color: #28334a;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 0;
}

.dropdown-col-title[data-category] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dropdown-col-title[data-category]::after {
    content: "";
    width: 10px;
    height: 6px;
    flex: 0 0 auto;
    background: url(../images/nav-arrow.svg) center / contain no-repeat;
    rotate: -90deg;
}

.dropdowntwocols .dropdown-col-title:after {
    content: url(../images/nav-arrow.svg);
    display: inline-block;
    margin-left: 10px;
    transform: rotate(270deg);
}

.dropdown-col-title:hover {
    background-color: #0066800d;
    color: #28334a;
}

.dropdown-col-title.active {
    background-color: #eef3f7;
    color: #28334a;
    font-weight: 600;
}

.dropdown-sub-item {
    display: block;
    padding: 12px 8px 12px 12px;
    font-size: 17px;
    font-weight: 400;
    color: #28334a;
    text-decoration: none;
    transition:
        background 0.15s,
        color 0.15s;
}

.dropdown-sub-item.active,
.dropdown-sub-item:hover {
    background-color: #f7f9fb;
    color: #28334a;
    font-weight: 600;
}

/* #dropdown-disease-education {
    max-width: 746px;
    width: 100%;
    left: 38%;
    transform: translateX(-38%);
    align-items: stretch;
    min-width: 600px;
}

#dropdown-disease-education .dropdown-col:first-child {
    flex: 0 0 50%;
    border-right: 1px solid transparent;
    transition: border-color 0.4s ease;
}

#dropdown-disease-education.sub-open .dropdown-col:first-child {
    border-right: 1px solid #bfbfbf;
}

#dropdown-disease-education .dropdown-col:last-child {
    flex: 0 0 50%;
    opacity: 0;
    transform: translateX(-15px);
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;
}

#dropdown-disease-education.sub-open .dropdown-col:last-child {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

#dropdown-disease-education .dropdown-col-title {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 2px;
}

#dropdown-disease-education .dropdown-sub-item {
    font-size: 18px;
    line-height: 1.45;
} */

/* Two-column mega (Clinical Trials nested, etc.) — shared column animation */
.beone-dropdown--mega:not(:has(.dropdown-col--single)) {
    align-items: stretch;
    min-width: 480px;
}

.beone-dropdown--mega:not(:has(.dropdown-col--single)) .dropdown-col:first-child {
    flex: 0 0 50%;
    border-right: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.beone-dropdown--mega.sub-open:not(:has(.dropdown-col--single)) .dropdown-col:first-child {
    border-right: 1px solid #bfbfbf;
}

.beone-dropdown--mega:not(:has(.dropdown-col--single)) .dropdown-col:last-child {
    flex: 0 0 50%;
    opacity: 0;
    transform: translateX(-15px);
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;
}

.beone-dropdown--mega.sub-open:not(:has(.dropdown-col--single)) .dropdown-col:last-child {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* =============================
    NAVBAR RIGHT ICONS
    ============================= */
.navbar-right-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
    flex-shrink: 0;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #555555;
    font-size: 16px;
    transition:
        background 0.2s,
        color 0.2s;
    text-decoration: none;
}

.icon-btn-img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.w-34 {
    width: 34px !important;
    height: 34px !important;
}

/* =============================
    HAMBURGER BUTTON
    ============================= */
.hamburger-btn {
    display: none;
    /* hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #28334a;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        width 0.3s ease;
    transform-origin: center;
}

/* Animate to X when open */
.hamburger-btn.is-open .ham-bar--top {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .ham-bar--mid {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.is-open .ham-bar--bot {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================
    MOBILE BACKDROP
    ============================= */
.mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1099;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-backdrop.is-visible {
    display: block;
}

.mobile-backdrop.is-active {
    opacity: 1;
}

/* =============================
    MOBILE DRAWER HEADER (inside .beone-nav)
    Hidden on desktop, visible on mobile
    ============================= */
.mobile-drawer-header-item {
    display: none;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.mobile-drawer-logo img {
    height: 26px;
    width: auto;
}

.mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    color: #28334a;
    font-size: 18px;
    transition:
        background 0.2s,
        color 0.2s;
}

.mobile-drawer-close:hover {
    color: #d52b1e;
}

/* =============================
    HERO / BANNER SECTION
    ============================= */
.hero-section {
    position: relative;
    padding: 61px 0 100px;
    background-color: white;
}

.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 130, 145, 0.75);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-breadcrumb a,
.hero-breadcrumb span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    line-height: 1.2;
}

.hero-breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-separator {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
}

/* =============================
    RECENT CONGRESSES CAROUSEL
    ============================= */
.recent-congresses-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 52px 22px;
    position: relative;
    box-shadow: 0px 0px 6px #00000040;
}

.rc-title {
    font-size: 24px;
    font-weight: 500;
    color: #28334a;
    margin: 0 0 20px;
    text-align: center;
}

.rc-carousel-wrapper {
    position: relative;
}

.rc-grid {
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 28px) / 3);
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    cursor: grab;
    padding: 10px;
}

.rc-grid.is-dragging {
    cursor: grabbing;
}

.rc-grid::-webkit-scrollbar {
    display: none;
}

/* Congress Card */
.rc-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    background: #ffffff;
}

.rc-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Decorative background pattern */
.rc-item-body::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    aspect-ratio: 180 / 147;
    background: url("../images/resource-design.png") no-repeat center / contain;
    z-index: 0;
}

/* Color Variants — applied via .rc-item-body background */
.rc-item--dark {
    border: 1px solid #e0e0e0;
}

.rc-item--mid {
    border: 1px solid #e0e0e0;
}

.rc-item--light {
    border: 1px solid #e0e0e0;
}

/* Badge */
.rc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ffffff;
    color: #28334a;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 7px;
    text-transform: uppercase;
    z-index: 2;
}

/* Card Body (colored section) */
.rc-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 46px 18px 44px;
    min-height: 140px;
    overflow: hidden;
}

.rc-item--dark .rc-item-body {
    background: #28334a;
}

.rc-item--mid .rc-item-body {
    background: #006680;
}

.rc-item--light .rc-item-body {
    background: #6496a0;
}

.rc-item-name {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.rc-item-year {
    font-weight: 400;
}

.rc-item-date {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

/* Resources Link (white bottom section) */
.rc-item-resources {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #28334a;
    padding: 32px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    background: #ffffff;
}

.rc-item-resources i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.rc-item:hover .rc-item-resources i {
    transform: translateX(3px);
}

/* Congress Grid — 3 columns x 2 rows */
.congress-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.congress-grid--3cols {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive grid */
@media (max-width: 1024px) {
    .congress-grid--3cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 567px) {
    .congress-grid--3cols {
        grid-template-columns: 1fr;
    }
}

/* Arrow Buttons */
.rc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 0;
    background-color: transparent;
}

.rc-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rc-arrow--next {
    right: -13px;
}

.rc-arrow--prev {
    left: -13px;
}

.rc-arrow--next img {
    transform: rotate(180deg);
}

/* Scrollbar Track */
.rc-scrollbar-track {
    position: relative;
    height: 19px;
    background: #f0eeed;
    border-radius: 18px;
    margin-top: 8px;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
}

.rc-scrollbar-thumb {
    position: absolute;
    left: 0;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: #707070;
    border-radius: 4px;
    min-width: 40px;
    cursor: grab;
}

.rc-scrollbar-thumb:active {
    cursor: grabbing;
    background: #555;
}

.content-part {
    padding: 115px 0 89px;
    overflow: hidden;
}

.explore {
    gap: 20px;
}

.explore-pipeline,
.learn-about {
    background-color: #ffffff;
    padding-left: 33px;
    padding-top: 9px;
    padding-bottom: 11px;
    padding-right: 33px;
    color: #28334a;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1.8px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.learn-about:hover,
.explore-pipeline:hover {
    background-color: #28334a;
    color: #ffffff;
}

.learn-about svg path,
.explore-pipeline svg path {
    transition: all 0.3s ease;
}

.learn-about:hover svg path,
.explore-pipeline:hover svg path {
    fill: #ffffff;
}

/* =============================
    REFINE RESULTS SECTION
    ============================= */
.refine-result-wrapper {
    display: flex;
    gap: 44px;
}

.refine-result {
    margin-top: 0;
}

.news-section+.refine-result {
    margin-top: 94px;
}

/* Sidebar */
.refine-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.refine-sidebar-title {
    font-size: 24px;
    font-weight: 600;
    color: #28334a;
    margin-bottom: 13.5px;
    line-height: 30px;
}

/* Filters */
.no-results {
    padding-left: 38px !important;
}

.filter-group:last-of-type {
    border-bottom: 1px solid #e0e0e0;
}

.filter-header {
    font-size: 20px;
    font-weight: 500;
    color: #28334a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    padding: 12px 0;
    border-top: 1px solid #bdbdbd;
    margin-bottom: 0 !important;
}

.filter-group.is-open .filter-header img {
    transform: rotate(180deg);
}

.filter-header img {
    transition: transform 0.3s ease;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.6s ease,
        margin 0.6s ease;
    padding-top: 0;
    margin-bottom: 0;
}

.filter-content a:focus {
    box-shadow: none;
}

.filter-group.is-open .filter-content {
    max-height: 100%;
    padding-top: 14px;
    margin-bottom: 13px;
}

.filter-link {
    font-size: 16px;
    color: #28334a;
    text-decoration: none;
    font-weight: 400;
}

.filter-link:hover {
    color: #28334a;
}

.filter-link--active {
    font-weight: 600;
    color: #28334a;
}

.filter-link.is-hidden {
    display: none;
}

.filter-show-all {
    font-size: 16px;
    color: #28334a;
    text-decoration: underline;
}

/* Sidebar actions */
.filter-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #bdbdbd;
    text-align: right;
}

.btn-clear-filters {
    background: #ffffff;
    border: 1px solid #28334a;
    border-radius: 7.25px;
    font-size: 14px;
    font-weight: 600;
    color: #28334a;
    padding: 10px 20px;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-clear-filters:hover {
    background: #006680;
    color: #ffffff;
}

/* Main */
.refine-main {
    flex: 1;
    min-width: 0;
}

/* Search bar */
.search-bar-wrapper {
    display: flex;
    gap: 9px;
    margin-bottom: 27px;
}

.search-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    padding: 0 16px;
    background: #ffffff;
}

/*.search-input-box:hover {
    background-color: rgba(0, 102, 128, 0.05);
    border: 1.5px solid rgba(40, 51, 74, 0.6) !important;
}*/

.search-input-box input:hover {
    background-color: transparent !important;
}

.search-input-box:focus-within {
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0, 204, 255, 0.6);
    border: 1.5px solid #006680 !important;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 0;
    color: #28334a;
    border-radius: 7.25px;
    font-family: poppins;
}

.search-input::placeholder {
    color: #28334a;
}

.search-clear-icon {
    background: transparent;
    border: none;
    color: #5c677d;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

.btn-search {
    background: #006680;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 33px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 1px solid #707070;
    letter-spacing: 1.8px;
}

.btn-publication-search {
    background-color: #6496a0 !important;
}

.btn-molecules-search {
    background-color: #a11d22 !important;
}

.btn-clinical-trials-search {
    background-color: #b65c62 !important;
}

.btn-search:hover {
    background: #004d61;
}

/* Active Tags */
.active-filters {
    margin-bottom: 47px;
    display: flex;
    gap: 15px;
}

.active-filter-tag {
    display: inline-block;
    background: #cce0e6;
    color: #28334a;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

/* Cards */
.result-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-card {
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    border: 1px solid #b7b4b2;
}

.result-card:hover {
    box-shadow: 0px 0px 6px #00000040;
}

.result-card-top {
    padding: 32px 70px 32px 32px;
    position: relative;
}

.result-card-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 26px;
    color: #006680;
}

.result-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #28334a;
    margin: 0 0 12px;
    line-height: 1.5;
    margin-right: 15px;
    max-width: 773px;
    font-family: "bitter";
}

.disease-wrapper-section .result-card-title {
    margin-top: 52px;
}

.result-card-tags {
    font-size: 14px;
    font-weight: 500;
    color: #006680;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.result-card-tags span {
    display: inline-block;
}

.result-card-author {
    font-size: 18px;
    font-weight: 400;
    color: #28334a;
    margin: 0;
}

.result-card-separator {
    height: 3px;
    background: #006680;
}

.result-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #28334a;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: 100%;
    background-color: white;
    border: 0;
}

.disease-wrapper-section .related-content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    display: grid;
}

.result-card-bottom:hover {
    background: #f8f9fa;
    color: #006680;
}

/* =============================
    MOLECULE CARDS
    (2-col grid layout with image header;
    overrides teal accents to brand red)
    ============================= */
.molecule-cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.molecule-card {
    display: flex;
    flex-direction: column;
}

.molecule-card-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 220px; */
    padding: 17px;
    padding-bottom: 0;
}

.molecule-card-img {
    /* max-height: 234px; */
    width: 100%;
}

.molecule-card .result-card-top {
    flex-grow: 1;
    padding-top: 20px;
}

.molecule-card .result-card-tags {
    color: #9e1b22;
}

.molecule-card .result-card-separator {
    background: #9e1b22;
}

/* Load more */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #28334a;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-load-more img {
    margin-left: 8px;
    width: 14px;
    height: 7px;
}

/* Responsive */

/* =============================
    Presentation Banner
    ============================= */
.presentation-banner {
    padding: 58px 0;
    background-color: white;
}

.presentation-banner .hero-breadcrumb a,
.presentation-banner .hero-breadcrumb span {
    color: #28334a;
}

.presentation-banner .hero-breadcrumb {
    margin-bottom: 37px;
}

.category-content {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #006d8f;
    margin-top: 20px;
    margin-bottom: 27px;
}

.presentation-banner .post-image {
    border-radius: 32px;
    margin-top: 20px;
    border: 1px solid #bdbdbd;
    overflow: hidden;
}

.presentation-banner .post-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cmn-para {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
}

.italic-text {
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    color: #28334a;
}

.m-47 {
    margin: 47px 0;
}

.cmn-btn {
    background: #006d8f;
    border: 1px solid #fff;
    color: #fff;
    padding: 9px 33px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmn-btn:hover {
    color: #006d8f;
    background: #fff;
    border: 1px solid #006d8f;
}

.cmn-btn:hover svg path {
    fill: #006d8f;
}

.btn-wrapper {
    margin-top: 47px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.related-contents .molecule-cards-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-contents {
    padding: 0px 0 93px;
    background-color: white;
}

.divider {
    border-top: 1px solid #707070;
    margin-bottom: 57px;
}

.related-contents-title {
    font-size: 40px;
    line-height: 30px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 47px;
}

/* Related Content Custom Cards */
.related-contents .related-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;

    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.related-contents .related-card:hover {
    box-shadow: 0px 0px 6px #00000040;
}

.related-contents .result-card-top {
    position: relative;
    padding: 30px 32px 43px 32px;
    flex-grow: 1;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    color: #28334a;
}

.related-contents .result-card-title {
    margin-top: 52px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #28334a;
    font-family: "Bitter", serif;
}

.related-contents .result-card-tags {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.related-contents .result-card-author {
    font-size: 18px;
    color: #555555;
    line-height: 1.5;
}

.related-contents .result-card-separator {
    height: 2px;
}

.related-contents .result-card-wraper {
    padding: 15px 24px 20px;
}

.related-contents .result-card-bottom {
    font-size: 14px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
}

/* Card 1: Congress Variant (Teal) */
.card-congress .card-badge {
    background-color: #cce0e6;
    /* Light blue/grey */
}

.card-congress .result-card-tags,
.card-congress .result-card-bottom {
    color: #006680;
}

.card-congress .result-card-separator {
    background-color: #006680;
}

/* Card 2: Publications Variant (Mid-Teal) */
.card-publications .card-badge {
    background-color: #e8f0f3;
    /* Very light cool grey */
}

.other-resources .card-badge {
    background-color: #fbf3e9;
    /* Very light cool grey */
}

.post-image img {
    width: 100%;
}

.card-publications .result-card-tags,
.card-publications .result-card-bottom {
    color: #6496a0;
}

.card-publications .result-card-separator {
    background-color: #6496a0;
}

/* Card 3: Molecules Variant (Red) */
.card-molecules .card-badge {
    background-color: #f5e8e8;
    /* Light pinkish */
}

.card-molecules .result-card-tags,
.card-molecules .result-card-bottom {
    color: #a11d22;
    /* BeOne standard red accent */
}

.card-molecules .result-card-separator {
    background-color: #a11d22;
}

.other-resources .result-card-tags,
.other-resources .result-card-bottom {
    color: #d18926;
    /* BeOne standard red accent */
}

.other-resources .result-card-separator {
    background-color: #d18926;
}

/* =============================
    FOOTER
    ============================= */
.beone-footer {
    padding: 30px 0 0;
    background-color: #f0eeed;
}

.footer-divider {
    height: 1px;
    background-color: #d8d4d2;
}

.beone-footer-top {
    /* display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); */
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.footer-contact-item {
    min-width: min-content;
    width: calc(100% / 3);
    flex: 0 0 auto;
}

.footer-contact-item {
    border-right: 1px solid #b7b4b2;
    padding: 0 30px;
}

.footer-contact-item:first-child {
    padding-left: 0;
}

.footer-contact-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.footer-contact-item h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #28334a;
    /* width: max-content; */
}

.footer-contact-item a {
    display: block;
    font-size: 19px;
    line-height: 30px;
    color: #006d8f;
    text-decoration: underline;
    width: max-content;
    letter-spacing: 0.19px;
}

.footer-contact-item a:hover {
    text-shadow: 1px 0 0 currentColor;
}

.beone-footer-copy {
    padding: 30px 0;
}

.beone-footer-copy p {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: #28334a;
}

.beone-footer-links {
    display: grid;
    grid-template-columns: 0.7fr 0.4fr 0.4fr 0.6fr;
    gap: 30px;
    align-items: start;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    height: auto;
    display: block;
    max-width: 168px;
    width: 100%;
    height: 35px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-group a {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: #30383f;
    text-decoration: none;
    letter-spacing: 0.18px;
    white-space: nowrap;
    width: fit-content;
}

.footer-link-group p {
    margin: 0;
    font-size: 14px;
    line-height: 17px;
    color: #686868;
    text-decoration: none;
    letter-spacing: 1.68px;
}

.footer-link-group a:hover {
    text-shadow: 1px 0 0 currentColor;
}

.footer-policy-links a:hover {
    text-shadow: 1px 0 0 currentColor;
}

.footer-link-group a i {
    margin-left: 4px;
    font-size: 12px;
    color: #00769a;
}

.footer-link-heading {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6f7480;
    margin-bottom: 10px;
}

.beone-footer-meta {
    padding-top: 0;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 9px 0 12px;
}

.footer-policy-links a {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #30383f;
    text-decoration: none;
    letter-spacing: 0.18px;
    padding: 0;
    margin: 0 35px;
}

.footer-policy-links a:not(:last-child):after {
    content: "";
    display: inline-block;
    color: #30383f;
    line-height: 1.44;
    position: relative;
    left: 0;
}

.footer-policy-links a:first-child {
    margin-left: 0px;
}

.footer-copyright-bar {
    background-color: #28344a;
}

.footer-copyright-bar .container-fluid {
    padding-top: 8px;
    padding-bottom: 8px;
}

.footer-copyright-bar p {
    margin: 0;
    font-size: 16px;
    line-height: 23px;
    color: #ffffff;
    letter-spacing: 0.16;
    padding: 9px 0 11px;
}

.filter-group.is-open .filter-header {
    /* margin-top: 13px; */
    border-top: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
}

/* =============================
    RESPONSIVE — 1200px
    (scale down, still desktop nav)
    ============================= */

/* =============================
    RESPONSIVE — < 1024px
    Hamburger kicks in — reuse .beone-nav as mobile drawer
    ============================= */

/* =============================
    RESPONSIVE — 992px
    (footer adjustments)
    ============================= */

/* =============================
    RESPONSIVE — 768px
    ============================= */

/* =============================
    CUSTOM PRESENTATION TABLE
    ============================= */
.site-it footer .beone-footer-meta .footer-policy-links ul li a{
    font-size: 15px;
}
.presentaion-table.table-responsive ul li{
    list-style: disc;
}
.presentaion-table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.custom-presentation-table {
    width: 100%;
    min-width: 1024px;
    border-collapse: collapse;
    margin-top: 30px;
}

.custom-presentation-table thead th {
    background-color: #006680;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 20px;
    text-align: left;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.custom-presentation-table tbody td {
    background-color: #eff4f5;
    color: #28334a;
    font-size: 16px;
    padding: 16px 20px;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    vertical-align: top;
    line-height: 1.5;
    border-bottom: 0px;
}

.custom-presentation-table thead th:first-child,
.custom-presentation-table tbody td:first-child {
    border-left: none;
}

.custom-presentation-table thead th:last-child,
.custom-presentation-table tbody td:last-child {
    border-right: none;
}

/* Custom Table Rose Variant */
.custom-presentation-table.custom-table-rose thead th {
    background-color: #b65c62;
}

.custom-presentation-table.custom-table-rose tbody td {
    background-color: #f5e8e8;
    border-bottom: 2px solid #ffffff;
}

/* =============================
    RESOURCE CAROUSEL
    ============================= */
.resource-carousel-section {
    padding: 0 0 57px;
    background-color: #ffffff;
}

.resource-carousel-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    color: #28334a;
    margin: 0 0 27px;
}

.resource-carousel-shell {
    overflow: visible;
}

.resource-carousel-wrapper {
    padding-right: 0;
}

.resource-carousel-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1px 0 4px;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

.resource-carousel-grid::-webkit-scrollbar {
    display: none;
}

.resource-carousel-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.resource-carousel-card {
    min-width: 280px;
    border-radius: 16px;
    scroll-snap-align: start;
}

.resource-carousel-card-top {
    padding: 13px 13px 0;
}

.resource-carousel-media {
    width: 100%;
    aspect-ratio: 296 / 176;
    border-radius: 6px;
    background: #7a7a7a;
}

.resource-carousel-card-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #28334a;
    margin: 16px 0 20px;
    min-height: 48px;
    font-family: "Bitter";
}

.resource-carousel-separator {
    height: 3px;
    background-color: #b65c62;
}

.resource-carousel-card-footer {
    padding: 18px 24px 21px;
}

.resource-carousel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #28334a;
    text-decoration: none;
}

.resource-carousel-link i {
    color: #b65c62;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.resource-carousel-card:hover .resource-carousel-link i {
    transform: translateX(3px);
}

.resource-carousel-arrow.rc-arrow--next {
    right: -16px;
}

.resource-carousel-arrow.rc-arrow--prev {
    left: -16px;
}

.resource-carousel-arrow img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(13%) saturate(1540%) hue-rotate(307deg) brightness(93%) contrast(89%);
}

.resource-carousel-grid .related-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.resource-carousel-grid .related-card .result-card-top {
    flex-grow: 1;
}

.resource-carousel-track {
    margin-top: 21px;
}

/* =============================
    FAQ SECTION
    ============================= */
.faq {
    padding: 0px 0 60px;
    background-color: #ffffff;
}

.faq-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 37px;
}

.reference-list {
    padding-left: 20px;
    margin: 0;
}

.reference-list li {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.reference-list li::marker {
    font-weight: 600;
}

/* Mechanism of Action */
.mechanism-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.mechanism-image img {
    width: 100%;
    border-radius: 16px;
}

.cmn-pad {
    padding: 57px 0;
    background-color: white;
}

.mt-52 {
    margin-top: 52px;
}

.mt-67 {
    margin-top: 67px;
}

.faq-wrapper {
    max-width: 1323px;
    /* Full width within container */
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid #d9d9d9;
}

.faq-item:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-topic {
    font-size: 18px;
    font-weight: 600;
    color: #28334a;
}

.faq-icon {
    font-size: 14px;
    color: #28334a;
    transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition:
        grid-template-rows 0.3s ease,
        padding 0.3s ease;
}

.faq-content.open {
    grid-template-rows: 1fr;
    padding-bottom: 16px;
}

.faq-content-inner {
    overflow: hidden;
}

.faq-content p {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
    margin: 0;
}

/* Responsive overrides for Related Content Cards */

/* Responsive overrides for Buttons */

/* Very small screens */

/* =============================
    PUBLICATION DETAILS
    ============================= */

.video-section {
    width: 100%;
    padding: 0;
}

.video-player {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 16.6 / 9;
    padding: 0 !important;
}

/* Left sidebar with title */
.video-sidebar {
    background-color: #3c3c3c;
    padding-left: 46px;
    padding-top: 28px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 250px;
    flex: 1;
}

.video-sidebar-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.video-sidebar-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.video-sidebar-text strong {
    display: block;
    font-weight: 600;
}

.video-sidebar-text span {
    font-weight: 400;
    opacity: 0.8;
}

/* Center video area */
.video-main {
    flex: 0 1 1323px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background-color: #3C3C3C;
    border: 0 !important;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button overlay */
.video-play-btn {
    position: absolute;
    border: none;
    cursor: pointer;
    background-color: transparent;
    inset: 0;
    pointer-events: none;
}

/* Right dark panel */
.video-sidebar-right {
    background-color: #3c3c3c;
    min-width: 250px;
    padding-right: 46px;
    padding-top: 28px;
    padding-left: 20px;
    padding-bottom: 20px;
    flex: 1;
}

/* Companion Resource Section */
.companion-section {
    padding: 57px 0;
}

.companion-title {
    font-family: inherit;
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 47px;
    line-height: 50px;
}

.companion-desc {
    letter-spacing: 0 !important;
    margin-bottom: 57px;
}

.companion-img-wrapper img {
    width: 100%;
}

.mt-37 {
    margin-top: 37px;
}

/* Publication Details - Responsive Formatting */

/* =============================
    RESPONSIVE STYLES
    ============================= */

/*----------------------* General Styles *----------------------*/
.fs-40 {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    color: #28334a;
}

.fs-12 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #30383f;
}

.padding-left-54 {
    padding-left: 54px !important;
}

.padding-left-38 {
    padding-left: 38px !important;
}

.fw-semibold {
    font-weight: 600;
}

.text-white {
    color: #fff;
}

.fw-medium {
    font-weight: 500;
}

/*----------------------* Tabs Section*----------------------*/

.congress-wrapper-section {
    background: #fff;
}

.congress-wrapper-section .tabs-top-section {
    padding: 85px 0 95px 0;
}

.congress-wrapper-section .tabs-top-section .top-tabs-menu-inner {
    display: flex;
    justify-content: center;
}

.tabs-menu-secton-wrapper {
    display: flex;
    justify-content: center;
    gap: 13px;
    max-width: 597px;
    background: #eff4f5;
    padding: 11px;
    border-radius: 11px;
}

.tabs-menu-secton-wrapper button {
    font-weight: 500;
    padding: 10px 8px;
    border-radius: 13px;
    background: transparent;
    text-transform: uppercase;
    color: #28334a;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
    border: 1px solid #eff4f5;
    letter-spacing: 0.0625rem;
}

.tabs-menu-secton-wrapper button.active {
    background: #ffffff;
    border: 1px solid #6496a0;
    font-weight: 600;
}

.tabs-main-wrapper .tab-panel {
    display: none;
}

.tabs-main-wrapper .tab-panel.active {
    display: block;
}

.left-tab-wrapper-section {
    background-color: #eff4f5;
    padding: 59px 0 97px 0;
    position: relative;
}

.absolute-img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    max-width: 600px;
    z-index: 0;
    pointer-events: none;
}

.sidebg-img {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: -170px;
    right: -90px;
    transform: rotate(5deg);
    max-width: 450px;
    max-height: 450px;
}

.sidebg-img .side-absolute-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
    object-fit: contain;
}

.sidebg-img.sm-size {
    top: -150px;
    max-width: 350px;
    max-height: 350px;
}

.left-tab-wrapper-section .container {
    position: relative;
    z-index: 1;
}

.left-tab-wrapper-section .first-tab-content-wrapper {
    display: flex;
    gap: 46px;
}

.left-tab-wrapper-section .first-tab-content-wrapper .left-tab-content ul {
    list-style: none;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.left-tab-wrapper-section .first-tab-content-wrapper .left-tab-content h2 {
    padding-bottom: 40px;
}

.left-tab-wrapper-section .first-tab-content-wrapper .right-tab-content {
    display: flex;
    align-items: center;
}

.first-tab-content-wrapper .right-tab-content,
.first-tab-content-wrapper .left-tab-content {
    width: 100%;
}

.left-tab-wrapper-section .first-tab-content-wrapper .right-tab-content img {
    max-width: 630px;
    width: 100%;
    height: auto;
}

.left-fillter-second-section {
    padding: 90px 0;
}

.left-fillter-second-section .fillter-section h2 {
    padding-bottom: 50px;
}

.tabs-first-section-card {
    border: 1px solid #bdbdbd;
    border-radius: 27px;
}

.tabs-first-section-card .filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 32px 38px 26px 38px;
    border-bottom: 1px solid #bdbdbd;
}

.tabs-first-section-card .search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    padding: 0 12px;
    flex: 1;
    width: 290px;
    background: #fff;
    max-width: 290px;
}

.tabs-first-section-card .search-wrap svg {
    color: #263247;
    flex-shrink: 0;
}

.tabs-first-section-card .search-wrap input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    color: #727272;
    width: 100%;
    padding: 9px 0;
}

.tabs-first-section-card .search-wrap input::placeholder {
    color: #727272;
}

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #263247;
    font-size: 16px;
}

.tabs-first-section-card select {
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    padding: 9px 32px 9px 12px;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    color: #263247;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    width: 100%;
    max-width: 290px;
}

.tabs-first-section-card .table-wrapper {
    overflow-x: auto;
}

.tabs-first-section-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

/* THEAD border fix */
.tabs-first-section-card table thead th {
    border-bottom: 1px solid #bdbdbd;
}

.tabs-first-section-card table th {
    text-align: left;
    padding: 26px 8px;
    font-weight: 500;
    font-size: 17px;
    color: #28334a;
    line-height: 26px;
    white-space: nowrap;
}

.tabs-first-section-card table .sort {
    display: inline-flex;
    flex-direction: column;
    margin-left: 4px;
    vertical-align: middle;
    gap: 1px;
    font-size: 8px;
    color: #bbb;
    line-height: 1;
}

.tabs-first-section-card table tbody tr {
    position: relative;
}

.tabs-first-section-card table tbody tr:after {
    content: "";
    position: absolute;
    width: 95%;
    height: 1px;
    left: 36px;
    background: #bdbdbd;
    bottom: 0;
}

.tabs-first-section-card table tbody tr:last-child::after {
    bottom: 30px;
    height: 0px;
}

.tabs-first-section-card table tbody tr:last-child td {
    padding-bottom: 66px;
    border-bottom: none;
}

.tabs-first-section-card table td {
    padding: 28px 8px;
    vertical-align: top;
    font-size: 16.5px;
    /* font-weight: 500; */
    line-height: 26px;
    color: #727272;
}

/* .tabs-first-section-card table td:hover,
.tabs-first-section-card table td:hover a {
    font-weight: 500;
} */

.tabs-first-section-card table td.date,
.tabs-first-section-card table td.location {
    color: #727272;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 26px;
    min-width: 110px;
}

.tabs-first-section-card table td.location {
    min-width: 100%;
}

.tabs-first-section-card table td.title {
    max-width: 304px;
    color: #28334a;
}

.tabs-first-section-card .cal-btn {
    margin-top: 29px;
    background: #1d6f72;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tabs-first-section-card .cal-btn svg {
    display: block;
}

.tabs-first-section-card .placeholder {
    color: #ccc;
}

.second-tab-section p,
.second-tab-section .event-sponsored-content {
    color: #28334a;
}

.second-tab-section ul {
    list-style: none;
    display: flex;
}

.second-inner-tabs {
    padding: 32px;

    border-radius: 17.5px;
    box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.4);
    position: relative;
}

.second-inner-tabs h4 {
    color: #006680;
    padding: 32px 0 20px 0;
    text-transform: uppercase;
}

.second-inner-tabs ul {
    display: flex;
    gap: 116px;
    padding-bottom: 27px;
}

.second-inner-tabs ul li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.second-inner-tabs .event-sponsored-content {
    position: absolute;
    right: 12px;
    top: 13px;
    padding: 8px 6px;
    background: #cce0e6;
    border-radius: 8px;
    text-transform: uppercase;
}

.sponsored-events-speakers-section {
    padding: 87px 0 230px 0;
}

.sponsored-events-speakers-section h2 {
    padding: 47px 0 71px 0;
}

.speaker-card-items .speaker-card-img img {
    border-radius: 17px;
    max-width: 311px;
    height: auto;
    width: 100%;
}

.speaker-card-items h4 {
    font-family: "Bitter", serif;
    padding: 34px 0 15px 0;
}

/*----------------------* carosel common*----------------------*/
.congress-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.congress-carousel-wrapper .carousel-track-outer {
    overflow: hidden;
    flex: 1;
}

.congress-carousel-wrapper .carousel-track {
    display: flex;
    gap: 23px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.congress-carousel-scrollbar {
    margin-top: 30px;
    height: 19px;
    background: #f0eeed;
    border-radius: 18px;
    overflow: hidden;
}

.congress-carousel-scrollbar-thumb {
    height: 100%;
    height: 13px;
    margin: 3px 0;
    background: #707070;
    border-radius: 18px;
    transition:
        left 0.35s ease,
        width 0.35s ease;
    position: relative;
}

.congress-carousel-btn {
    flex-shrink: 0;
    width: 12px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    transition:
        color 0.2s,
        opacity 0.2s;
    user-select: none;
    z-index: 2;
}

.congress-carousel-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.congress-carousel-btn.prev {
    left: -30px;
}

.congress-carousel-btn.next {
    right: -30px;
    transform: rotate(180deg);
}

.congress-carousel-btn {
    position: absolute;
    top: 43%;
}

.speaker-card-items {
    flex: 0 0 311px;
    min-width: 0;
}

.filter-show-all-custom {
    display: flex;
    color: #006680;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-decoration: none;
}

/*----------------------* responsive *----------------------*/

/*----------------------* congress resources page only *----------------------*/
.congress-page-resource-section {
    padding: 12px 0 0;
}

.congress-page-resource-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 50px;
}

.congress-page-resource-shell {
    padding-bottom: 8px;
}

.congress-page-resource-wrapper {
    position: relative;
}

.congress-page-resource-grid {
    padding: 1px 2px 6px;
}

.congress-page-resource-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
}

.congress-page-resource-card .resource-carousel-card-top {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 0;
}

.congress-page-resource-card .resource-carousel-media {
    border-radius: 12px;
    background: linear-gradient(135deg, #6f767b 0%, #8f9498 100%);
}

.congress-page-resource-card .resource-carousel-card-title {
    margin: 18px 0 22px;
    min-height: 72px;
}

.congress-page-resource-card .resource-carousel-card-footer {
    margin-top: auto;
    padding: 18px 24px 20px;
}

.congress-page-resource-section .resource-carousel-arrow.rc-arrow--prev {
    left: -24px;
}

.congress-page-resource-section .resource-carousel-arrow.rc-arrow--next {
    right: -24px;
}

.congress-page-resource-section .resource-carousel-track {
    margin-top: 30px;
}

/*----------------------* scientific presentations tab only *----------------------*/
.scientific-presentations-section {
    padding: 0 0 60px;
}

.scientific-presentations-title {
    font-size: 40px;
    margin-bottom: 32px;
}

.scientific-presentations-grid {
    grid-auto-columns: calc((100% - 52px) / 3);
    gap: 26px;
    padding: 2px 36px 8px 0;
}

.scientific-presentation-card {
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.scientific-presentation-card-top {
    flex: 1;
    padding: 20px 24px 24px;
}

.scientific-presentation-card-title {
    font-size: 16px;
    margin-bottom: 18px;
    min-height: 96px;
    max-width: none;
}

.scientific-presentation-meta {
    gap: 8px;
    margin-bottom: 14px;
}

.scientific-presentation-meta i {
    font-size: 14px;
    line-height: 1;
}

.scientific-presentation-meta span+span::before {
    content: "•";
    margin-right: 8px;
    color: #006680;
}

.scientific-presentation-author {
    font-size: 16px;
}

.scientific-presentation-link {
    font-size: 14px;
    letter-spacing: 0.18em;
}

.scientific-presentation-link i {
    font-size: 14px;
}

.scientific-presentations-track {
    height: 14px;
    background: #f2f2f2;
    border-radius: 999px;
    margin-top: 28px;
}

.scientific-presentations-thumb {
    height: 10px;
    margin: 2px 0;
    background: #7a7a7a;
    border-radius: 999px;
}

footer {
    position: relative;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 0;
    padding: 19px 22px;
    color: #28334a;
    font-size: 18px;
    font-weight: 600;
    border: 0;
    box-shadow: -1px 0px 5px 1px rgba(0, 0, 0, 0.61);
    -webkit-box-shadow: -1px 0px 5px 1px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: -1px 0px 5px 1px rgba(0, 0, 0, 0.21);
    background: #fff;
    border-radius: 15px 0 0 15px;
    display: flex;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transform: translateX(100%);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    pointer-events: none;
    border: 0;
}

.back-to-top:hover {
    background-color: #006680 !important;
    color: #fff !important;
}

.back-to-top:hover svg path {
    fill: #ffffff;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.back-to-top span {
    margin-left: 10px;
}

.back-to-top span img {
    width: 14px;
}

/* =============================
    Home Page STYLES
    ============================= */

.hero-section-home {
    padding: 114px 0 132px;
    z-index: 10;
}

.hero-section-home .hero-content {
    max-width: 750px;
    width: 100%;
}

.hero-section-home .hero-content .hero-subtitle {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 500;
    color: white;
}

.hero-section-home .hero-content p {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: white;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* =============================
    RESPONSIVE STYLES
    ============================= */

/* =============================
    CUSTOM SEARCH DROPDOWN
    ============================= */
.custom-search-wrap {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 4px;
    overflow: visible;
    max-width: 600px;
    border: 1px solid #707070;
    position: relative;
    margin-top: 30px;
}

.custom-dropdown-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.custom-dropdown-btn {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: none;
    padding: 9px 8px;
    font-family: inherit;
    font-size: 16px;
    color: #28334a;
    cursor: pointer;
    width: 256px;
    border: 1px solid #707070;
}

.custom-dropdown-chevron {
    transition: transform 0.3s ease;
    transform-origin: center center;
    color: #006680;
    display: block;
}

.custom-dropdown-wrapper.is-open .custom-dropdown-chevron {
    transform: rotate(180deg);
}

.custom-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
}

.custom-dropdown-wrapper.is-open .custom-dropdown-list {
    display: block;
}

.custom-dropdown-item {
    padding: 12px 16px;
    font-size: 15px;
    color: #28334a;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0 10px;
}

.custom-dropdown-item:hover,
.custom-dropdown-item.selected {
    background-color: #e8f0f2;
    font-weight: 500;
}

.custom-search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background-color: #ffffff;
    height: 45px;
    border-left: 1px solid rgb(112, 112, 112);
}

.custom-search-input {
    flex: 1;
    background: transparent;
    padding: 9px 8px;
    font-size: 16px;
    color: #28334a;
    outline: none;
    border: none;
}

.custom-search-input::placeholder {
    color: #707070;
}

.custom-search-submit {
    background: transparent;
    border: none;
    color: #006680;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.custom-search-submit:hover {
    color: #d52b1e;
}

.featured-content {
    position: relative;
}

.featured-content .molecule-cards-list {
    grid-template-columns: repeat(3, 1fr);
}

.image-part {
    width: 100%;
    height: 100%;
}

.image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

/* =============================
    IMAGE TEXT CONTENT STYLES
    ============================= */
.image-text-content {
    padding: 89px 0;
}

.image-text-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 89px;
}

.image-text-row:last-child {
    margin-bottom: 0;
}

.image-text-row.reverse {
    flex-direction: row-reverse;
}

.content-img {
    flex: 1;
}

.content-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 27px;
    line-height: 1.25;
}

.content-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #28334a;
    margin-bottom: 25px;
}

.btn-grp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-teal {
    background-color: #006680;
}

.btn-red {
    background-color: #b65c62;
}

.btn-lightteal {
    background-color: #6496a0;
}

.btn-darkblue {
    background-color: #28334a;
}

/* =============================
    QUICK TASKS STYLES
    ============================= */
.quick-tasks {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.quick-tasks-title {
    font-size: 36px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 40px;
}

.quick-tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.quick-task-card {
    background: #ffffff;
    border-radius: 17.5px;
    box-shadow: 0px 0px 6px #00000040;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.quick-task-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 12px #00000040;
    z-index: 2;
}

.quick-task-card.center-text {
    justify-content: center;
}

.quick-task-card h3 {
    font-size: 20px;
    font-weight: 300;
    color: #28334a;
    line-height: 1.4;
    margin: 0;
}

.qt-icon-inline {
    width: 14px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

.qt-lock-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    overflow: visible;
}

.quick-task-card:hover .qt-lock-icon {
    opacity: 1;
}

.qt-sublinks {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qt-sublink {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #28334a;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 4px 0;
    transition:
        color 0.3s ease,
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qt-sublink:hover {
    transform: translateX(6px);
}

.qt-arrow {
    width: 14px;
    height: auto;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qt-sublink:hover .qt-arrow {
    transform: translateX(4px);
}

.qt-icon {
    width: 14px;
    height: auto;
}

/* =============================
    REGISTER SECTION STYLES
    ============================= */
.register-section {
    padding: 121px 0 111px;
    background-color: #ffffff;
}

.register-section h2 {
    font-size: 32px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 60px;
    line-height: 1.25;
    text-align: center;
}

/* =============================
    MULTI-STEP REGISTER FORM
    ============================= */

/* Progress Bar */
.register-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.progress-line-bg {
    position: absolute;
    top: 11px;
    left: 8%;
    right: 8%;
    height: 1px;
    background-color: #a3a3a3;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 180px;
    text-align: center;
}

.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #a3a3a3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.progress-step.active .step-circle {
    border-color: #006680;
}

.progress-step.active .circle-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #006680;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step-text strong {
    font-size: 14px;
    color: #28334a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.step-text span {
    font-size: 10px;
    color: #28334a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Form Styles */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.form-group-half {
    flex: 0 1 calc(50% - 25px);
}

.form-group label {
    font-size: 19px;
    color: #28334a;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-control {
    width: 100%;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 16px;
    color: #28334a;
    font-family: inherit;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    background-color: #fff;
}

.form-control:hover {
    background-color: rgba(0, 102, 128, 0.05);
    border: 1.5px solid rgba(40, 51, 74, 0.6) !important;
}

.form-control:focus {
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0, 204, 255, 0.6);
    border: 1.5px solid #006680 !important;
}

.form-control::placeholder {
    color: #a3a3a3;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    padding-right: 40px;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 12px;
    pointer-events: none;
}

.password-input-wrapper {
    position: relative;
}

.btn-toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.field-desc {
    font-size: 14px;
    color: #28334a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-style: italic;
}

.mt-auto {
    margin-top: auto;
}

.mt-50 {
    margin-top: 50px;
}

/* Footer & Buttons */
.form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid transparent;
}

.gdpr-note {
    font-size: 18px;
    color: #28334a;
    font-style: italic;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 30px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
    text-decoration: none;
}

.register-btn:hover {
    opacity: 0.9;
}

.register-btn-primary,
.register-btn-secondary {
    background-color: #28334a;
    color: #fff;
    gap: 10px;
}

/* Preferences Layout */
.preferences-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 40px;
}

.pref-col {
    flex: 1;
}

.pref-col h3 {
    font-size: 24px;
    color: #28334a;
    font-weight: 500;
    margin-bottom: 47px;
}

.pref-desc {
    font-size: 19px;
    color: #28334a;
    margin-bottom: 14px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #28334a;
    user-select: none;
    padding-left: 30px;
    font-family: poppins;
    min-height: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #a3a3a3;
    border-radius: 3px;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #006680;
    border-color: #006680;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mobile-input-group {
    margin-top: 25px;
}

.mobile-input-group label {
    font-size: 19px;
    color: #28334a;
    margin-bottom: 15px;
    display: block;
}

.mobile-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 140px;
    flex-shrink: 0;
}

.country-code select {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    padding-right: 35px;
}

.mobile-sms-note {
    margin-top: 8px;
    font-size: 12px;
    font-style: italic;
    color: #555;
    line-height: 1.4;
}

/* Consent Text */
.consent-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.consent-text p {
    margin-bottom: 20px;
}

.consent-text a {
    color: #006680;
    text-decoration: underline;
}

.consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consent-check .check-text {
    display: block;
    padding-top: 0;
}

/* Registration Message States */
.register-message-state {
    padding: 60px 0px;
    text-align: center;
}

.register-message-state .state-title {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 70px;
    text-align: center;
}

.register-message-state .state-body p {
    font-size: 24px;
    line-height: 1.6;
    color: #28334a;
    margin-bottom: 15px;
}

.register-message-state .state-body p:last-child {
    margin-bottom: 0;
}

.register-message-state .support-email {
    color: #006680;
    text-decoration: none;
    font-weight: 500;
}

.register-message-state .support-email:hover {
    text-decoration: underline;
}

/* Login Page */
.login-section {
    padding: 70px 0;
}

.login-section .custom-btn {
    width: fit-content;
}

.login-body {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.login-col {
    flex: 1;
}

.login-col--form {
    flex: 1.4;
    padding-right: clamp(20px, 7vw, 121px);
}

.login-col--sso {
    flex: 1;
    padding-left: clamp(20px, 7vw, 121px);
}

.login-heading {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500;
    color: #28334a;
    margin-bottom: 30px;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
}

.login-field {
    margin-bottom: 15px;
}

.login-field label {
    display: block;
    font-size: clamp(16px, 1.4vw, 19px);
    color: #28334a;
    margin-bottom: 15px;
    font-weight: 400;
}

.login-password-wrapper {
    position: relative;
}

.login-password-wrapper .form-control {
    padding-right: 45px;
}

.login-toggle-pw {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-toggle-pw svg {
    stroke: #006680;
}

.login-forgot {
    font-size: 19px;
    color: #28334a;
    margin-bottom: 22px;
}

.login-forgot a {
    color: #006680;
    text-decoration: underline;
    font-weight: 500;
}

.login-forgot a:hover {
    color: #004d60;
}

/* Vertical Divider */
.login-divider-vertical {
    width: 1px;
    background-color: #e0e0e0;
    align-self: stretch;
    position: relative;
    flex-shrink: 0;
}

.login-divider-or {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    color: #707070;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* SSO Buttons */
.login-sso-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.login-sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition:
        opacity 0.2s ease,
        transform 0.15s ease;
    cursor: pointer;
    border: none;
    width: fit-content;
}

.login-sso-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.login-sso-btn--doccheck {
    background-color: #cc1f36;
    color: #ffffff;
    padding: 0;
    max-height: 70px;
    height: 100%;
    align-items: flex-end;
}

.login-sso-btn--swissrx,
.login-sso-btn--azure {
    background-color: #28334a;
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    padding: 12px 20px;
    min-height: 70px;
    height: auto;
    font-family: poppins;
    width: 100%;
}

.login-sso-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Horizontal Divider */
.login-divider-horizontal {
    height: 1px;
    background-color: #e0e0e0;
    margin: 50px 0;
}

/* Create Account Section */
.login-create-account .login-heading {
    margin-bottom: 10px;
}

.login-create-account p {
    font-size: 16px;
    color: #28334a;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Login Responsive */
@media (max-width: 991px) {
    .login-section {
        padding: 40px 0;
    }

    #dropdown-disease-education {
        min-width: auto;
    }

    .dropdown-col-title[data-category]::after {
        rotate: 0deg;
    }

    .login-body {
        flex-direction: column;
        gap: 40px;
    }

    .login-col--form,
    .login-col--sso {
        padding: 0;
        width: 100%;
    }

    .login-divider-vertical {
        width: 100%;
        height: 1px;
        align-self: auto;
        margin: 10px 0;
    }

    .login-divider-or {
        padding: 0 15px;
    }

    .login-divider-horizontal {
        margin: 30px 0;
    }

    .login-heading {
        margin-bottom: 20px;
        text-align: center;
    }

    .login-col--sso .login-heading {
        margin-bottom: 25px;
    }

    .login-forgot {
        text-align: center;
    }

    .login-section .custom-btn,
    .login-section .login-sso-btn {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        max-width: 440px;
        font-size: 19px;
    }

    .login-create-account {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .login-sso-buttons {
        align-items: center;
    }
}

@media (max-width: 576px) {

    .login-section .custom-btn,
    .login-section .login-sso-btn {
        width: 100%;
    }
}

/* Responsive */

@media (max-width: 1399px) {
    .beone-nav {
        gap: 0px;
    }

    .beone-nav .nav-link {
        font-size: 16px;
    }

    /* .beone-footer-top {
        gap: 20px;
    } */

    .footer-contact-item:not(:last-child) {
        padding-right: 30px;
    }
}

@media (max-width: 1230px) {
    .congress-carousel-btn {
        top: -32px;
    }

    .congress-carousel-btn.next {
        right: 0;
    }

    .congress-carousel-btn.prev {
        left: 0;
    }
}

@media (max-width: 1199px) {
    .beone-nav .nav-link {
        padding: 7px;
    }

    .left-tab-wrapper-section {
        padding: 50px 0 70px 0;
    }

    .congress-wrapper-section .tabs-top-section,
    .left-fillter-second-section {
        padding: 70px 0;
    }

    .congress-page-resource-title {
        margin-bottom: 40px;
    }

    .scientific-presentations-grid {
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
        padding-right: 20px;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .beone-nav {
        max-width: none;
    }

    .beone-nav .nav-link {
        font-size: 14px;
        gap: 6px;
    }

    .beone-logo img {
        height: 24px;
    }

    .navbar-right-icons {
        gap: 5px;
    }

    #dropdown-disease-education {
        max-width: 680px;
    }

    .beone-footer-links {
        grid-template-columns: 220px 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    header .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .beone-footer-top {
        flex-wrap: wrap;
        gap: 40px 0;
    }

    .footer-contact-item {
        width: 50%;
    }

    .footer-contact-item:last-child {
        padding-left: 0;
    }

    .footer-contact-item:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }

    .footer-contact-item h3,
    .footer-contact-item a {
        width: 100%;
    }

    .footer-contact-item a {
        word-break: break-word;
        font-size: 16px;
    }

    .footer-contact-item h3 {
        font-size: 20px;
    }

    .beone-footer-links {
        /* grid-template-columns: 1fr 1fr; */
        gap: 28px;
    }

    /* .footer-link-group--external {
      grid-column: 1 / -1;
    } */

    .resource-carousel-grid {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .quick-tasks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .padding-left-54 {
        padding-left: 20px !important;
    }

    .fs-40 {
        font-size: 36px;
    }

    .left-tab-wrapper-section .first-tab-content-wrapper .left-tab-content ul {
        gap: 30px;
    }

    .left-tab-wrapper-section .first-tab-content-wrapper .left-tab-content h2 {
        padding-bottom: 30px;
    }

    .tabs-first-section-card select {
        font-size: 14px;
        line-height: 19px;
        max-width: 230px;
    }

    .tabs-first-section-card .search-wrap input {
        font-size: 14px;
        line-height: 19px;
        width: 180px;
    }

    .progress-line-bg {
        left: 10%;
        right: 10%;
    }

    /* Transform .beone-nav into a slide-in drawer */
    .beone-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 90vw;
        height: 100dvh;
        background: #ffffff;
        z-index: 1100;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        overflow-x: hidden;
        max-width: 90vw;
        justify-content: flex-start;
    }

    .beone-nav.is-open {
        transform: translateX(0);
    }

    /* Show the drawer header (logo + close) on mobile */
    .mobile-drawer-header-item {
        display: list-item;
        border-bottom: none !important;
    }

    .beone-nav .nav-link::after {
        bottom: 0px;
    }

    /* Nav items stack vertically */
    .beone-nav .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .beone-nav .nav-item:last-child {
        border-bottom: none;
    }

    .beone-nav .nav-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        border-bottom: none;
        justify-content: space-between;
    }

    .beone-nav .nav-link:hover {
        background: rgba(0, 102, 128, 0.05);
        color: #006d8f;
        border-bottom-color: transparent;
    }

    /* Dropdowns become accordion style */
    .beone-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        background: #f8fafc;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .beone-dropdown.is-open {
        display: flex !important;
        flex-direction: column;
        max-height: 400px;
    }

    #dropdown-disease-education {
        max-width: none;
        left: auto;
        transform: none;
    }

    #dropdown-disease-education .dropdown-col:first-child,
    #dropdown-disease-education .dropdown-col:last-child,
    .beone-dropdown--mega .dropdown-col:first-child,
    .beone-dropdown--mega .dropdown-col:last-child {
        flex: none;
    }

    .dropdown-col {
        border-right: none;
        padding: 0;
    }

    .dropdown-col-title {
        padding: 11px 20px 11px 32px;
        font-size: 14px;
        font-weight: 400;
        border-top: 1px solid #eef0f3;
    }

    #dropdown-disease-education .dropdown-col-title {
        font-size: 14px;
    }

    .dropdown-col-title.active {
        background-color: #eef3f7;
        font-weight: 600;
    }

    .dropdown-sub-item {
        padding: 11px 20px 11px 44px;
        font-size: 14px;
        border-top: 1px solid #eef0f3;
    }

    #dropdown-disease-education .dropdown-sub-item {
        font-size: 14px;
    }

    /* Chevron rotation for mobile accordion */
    .beone-nav .nav-item .chevron-icon {
        transition: transform 0.25s ease;
    }

    .beone-nav .nav-item.mobile-accordion-open .chevron-icon {
        transform: rotate(180deg);
    }

    /* Don't rotate chevron on hover in mobile */
    .beone-nav .nav-item:hover .chevron-icon {
        transform: rotate(0deg);
    }

    .beone-nav .nav-item.mobile-accordion-open:hover .chevron-icon {
        transform: rotate(180deg);
    }

    /* Icons item in mobile drawer */
    .nav-icons-item {
        margin-top: auto;
        border-top: 1px solid #e8e8e8;
        border-bottom: none !important;
        background: #fafafa;
    }

    .navbar-right-icons {
        padding: 14px 16px;
        gap: 20px;
        justify-content: center;
    }

    /* Show hamburger */
    .hamburger-btn {
        display: flex;
    }

    /* logo scales down a touch */
    .beone-logo img {
        height: 24px;
    }

    /* .beone-footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
    } */

    .footer-contact-item:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }

    .footer-contact-item:nth-child(3) {
        grid-column: 1 / -1;
    }

    .footer-contact-item:last-child {
        padding-left: 0;
    }

    body {
        font-size: 13px;
    }

    .container {
        padding: 0 26px;
    }

    .fs-14 {
        font-size: 13px !important;
    }

    .fs-16 {
        font-size: 15px;
    }

    .fs-18 {
        font-size: 17px !important;
    }

    .fs-20 {
        font-size: 18px;
    }

    .fs-24 {
        font-size: 22px !important;
    }

    .fs-26 {
        font-size: 24px;
    }

    .fs-56 {
        font-size: 52px;
    }

    .mt-27 {
        margin-top: 23px !important;
    }

    .pt-57 {
        padding-top: 48px !important;
    }

    .mb-27 {
        margin-bottom: 23px !important;
    }

    .mb-20 {
        margin-bottom: 20px !important;
    }

    .mb-38 {
        margin-bottom: 32px !important;
    }

    .pt-60 {
        padding-top: 51px !important;
    }

    .pt-29 {
        padding-top: 25px;
    }

    .pb-57 {
        padding-bottom: 48px !important;
    }

    .mt-67 {
        margin-top: 57px;
    }

    header,
    header.shadow-sm {
        padding: 18px 0 19px;
    }

    header .header-wrapper {
        gap: 26px;
    }

    .beone-nav {
        gap: 0;
    }

    .beone-nav .nav-link {
        gap: 9px;
        font-size: 17px;
    }

    .beone-dropdown {
        padding: 10px 0 14px;
    }

    .dropdown-col {
        padding: 0 10px;
    }

    .dropdown-col-title {
        padding: 9px 10px;
        font-size: 16px;
    }

    .dropdown-sub-item {
        padding: 10px 7px 10px 10px;
        font-size: 16px;
    }

    #dropdown-disease-education .dropdown-col-title {
        font-size: 17px;
    }

    #dropdown-disease-education .dropdown-sub-item {
        font-size: 17px;
        padding-left: 30px;
    }

    .navbar-right-icons {
        gap: 21px;
    }

    .icon-btn {
        font-size: 15px;
    }

    .hamburger-btn {
        gap: 4px;
        padding: 5px;
    }

    .mobile-drawer-header {
        padding: 0 17px;
    }

    .mobile-drawer-close {
        font-size: 17px;
    }

    .hero-section {
        padding: 52px 0 85px;
    }

    .hero-content {
        gap: 17px;
    }

    .hero-breadcrumb {
        gap: 5px;
    }

    .hero-breadcrumb a,
    .hero-breadcrumb span {
        font-size: 13px;
    }

    .hero-title {
        font-size: 52px;
    }

    .recent-congresses-card {
        padding: 44px 19px;
    }

    .rc-title {
        font-size: 22px;
        margin: 0 0 17px;
    }

    .rc-grid {
        gap: 12px;
        padding-bottom: 3px;
    }

    .rc-badge {
        padding: 3px 10px;
    }

    .rc-item-body {
        padding: 39px 15px 37px;
    }

    .rc-item-name {
        font-size: 24px;
        margin: 0 0 3px;
    }

    .rc-item-date {
        font-size: 15px;
    }

    .rc-item-resources {
        gap: 7px;
        font-size: 17px;
        padding: 27px;
    }

    .rc-scrollbar-track {
        margin-top: 7px;
    }

    .content-part {
        padding: 98px 0 76px;
    }

    .explore {
        gap: 17px;
    }

    .explore-pipeline,
    .learn-about {
        padding-left: 28px;
        padding-top: 8px;
        padding-bottom: 9px;
        padding-right: 28px;
        font-size: 17px;
        gap: 9px;
    }

    .refine-result-wrapper {
        gap: 37px;
    }

    .refine-result {
        margin-top: 0;
    }

    .news-section+.refine-result {
        margin-top: 80px;
    }

    .refine-sidebar-title {
        font-size: 22px;
        margin-bottom: 11px;
    }

    .filter-header {
        font-size: 18px;
        padding: 10px 0;
        margin-top: 0px;
    }

    .filter-content {
        padding-top: 0px;
        gap: 10px;
    }

    .filter-link {
        font-size: 15px;
    }

    .filter-show-all {
        font-size: 15px;
    }

    .filter-actions {
        margin-top: 10px;
        padding-top: 10px;
    }

    .btn-clear-filters {
        font-size: 13px;
        padding: 9px 17px;
    }

    .search-bar-wrapper {
        gap: 8px;
        margin-bottom: 23px;
    }

    .search-input-box {
        padding: 0 14px;
    }

    .search-input {
        font-size: 13px;
        padding: 9px 0;
    }

    .search-clear-icon {
        font-size: 17px;
    }

    .btn-search {
        padding: 9px 28px;
        font-size: 17px;
        gap: 9px;
    }

    .active-filters {
        margin-bottom: 40px;
        gap: 13px;
    }

    .active-filter-tag {
        font-size: 13px;
        padding: 5px 7px;
    }

    .result-cards-list {
        gap: 17px;
    }

    .result-card-top {
        padding: 27px 65px 27px 27px;
    }

    .result-card-icon {
        font-size: 24px;
    }

    .result-card-title {
        font-size: 18px;
        margin: 0 0 10px;
        margin-right: 13px;
    }

    .result-card-tags {
        font-size: 13px;
        margin-bottom: 17px;
        gap: 3px;
    }

    .result-card-author {
        font-size: 17px;
    }

    .result-card-bottom {
        gap: 9px;
        padding: 17px 24px;
        font-size: 17px;
    }

    .molecule-cards-list {
        gap: 17px;
    }

    .molecule-card-img-wrapper {
        padding: 14px;
    }

    .molecule-card .result-card-top {
        padding-top: 17px;
    }

    .load-more-container {
        margin-top: 34px;
    }

    .btn-load-more {
        font-size: 17px;
    }

    .btn-load-more img {
        margin-left: 7px;
    }

    .presentation-banner {
        padding: 49px 0;
    }

    .presentation-banner .hero-breadcrumb {
        margin-bottom: 31px;
    }

    .category-content {
        font-size: 22px;
        margin-top: 17px;
        margin-bottom: 23px;
    }

    .presentation-banner .post-image {
        margin-top: 17px;
    }

    .cmn-para {
        font-size: 17px;
    }

    .italic-text {
        font-size: 13px;
    }

    .m-47 {
        margin: 40px 0;
    }

    .cmn-btn {
        padding: 8px 28px;
        font-size: 17px;
        gap: 9px;
    }

    .btn-wrapper {
        margin-top: 40px;
        gap: 17px;
    }

    .related-contents .molecule-cards-list {
        gap: 17px;
    }

    .related-contents {
        padding: 0 0 79px;
    }

    .divider {
        margin-bottom: 48px;
    }

    .related-contents-title {
        font-size: 37px;
        margin-bottom: 40px;
    }

    .related-contents .result-card-top {
        padding: 26px 27px 37px 27px;
    }

    .card-badge {
        font-size: 13px;
        padding: 4px 10px;
    }

    .related-contents .result-card-title {
        margin-top: 44px;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .related-contents .result-card-tags {
        font-size: 13px;
        margin-bottom: 17px;
    }

    .related-contents .result-card-author {
        font-size: 17px;
    }

    .related-contents .result-card-wraper {
        padding: 13px 20px 17px;
    }

    .related-contents .result-card-bottom {
        font-size: 13px;
        gap: 9px;
    }

    .beone-footer {
        padding: 48px 0 0;
    }

    .beone-footer-top {
        gap: 70px 0;
        padding-bottom: 49px;
        flex-wrap: wrap;
    }

    .footer-contact-item h3 {
        margin: 0 0 9px;
        font-size: 22px;
    }

    .footer-contact-item a {
        font-size: 17px;
    }

    .beone-footer-copy {
        padding: 48px 0;
    }

    .beone-footer-copy p {
        font-size: 17px;
    }

    .beone-footer-links {
        gap: 26px;
        padding-top: 48px;
        padding-bottom: 49px;
    }

    .footer-logo {
        padding-right: 31px;
    }

    .footer-link-group {
        gap: 9px;
    }

    .footer-link-group a {
        font-size: 17px;
    }

    .footer-link-group p {
        font-size: 13px;
    }

    .footer-link-group a i {
        margin-left: 3px;
    }

    .footer-link-heading {
        margin-bottom: 9px;
    }

    .footer-policy-links {
        padding: 8px 0 10px;
    }

    .footer-policy-links a {
        font-size: 17px;
        margin: 0 15px;
    }

    .footer-policy-links a:first-child {
        padding-left: 0;
    }

    .footer-copyright-bar .container-fluid {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .footer-copyright-bar p {
        font-size: 15px;
        padding: 8px 0 9px;
    }

    .custom-presentation-table {
        margin-top: 26px;
    }

    .custom-presentation-table thead th {
        font-size: 15px;
        padding: 14px 17px;
    }

    .custom-presentation-table tbody td {
        font-size: 15px;
        padding: 14px 17px;
    }

    .resource-carousel-section {
        padding: 0 0 48px;
    }

    .resource-carousel-title {
        font-size: 28px;
        margin: 0 0 23px;
    }

    .resource-carousel-grid {
        gap: 17px;
        padding: 1px 0 3px;
    }

    .resource-carousel-card-top {
        padding: 11px 11px 0;
    }

    .resource-carousel-card-title {
        font-size: 15px;
        margin: 14px 0 17px;
    }

    .resource-carousel-card-footer {
        padding: 15px 20px 18px;
    }

    .resource-carousel-link {
        gap: 7px;
        font-size: 13px;
    }

    .resource-carousel-link i {
        font-size: 13px;
    }

    .resource-carousel-track {
        margin-top: 18px;
    }

    .faq {
        padding: 0 0 51px;
    }

    .faq-title {
        font-size: 37px;
        margin-bottom: 31px;
    }

    .reference-list {
        padding-left: 17px;
    }

    .reference-list li {
        font-size: 17px;
        margin-bottom: 9px;
    }

    .mechanism-grid {
        gap: 43px;
    }

    .cmn-pad {
        padding: 48px 0;
    }

    .mt-52 {
        margin-top: 44px;
    }

    .mt-67 {
        margin-top: 57px;
    }

    .faq-button {
        padding: 13px 0;
    }

    .faq-topic {
        font-size: 17px;
    }

    .faq-icon {
        font-size: 13px;
    }

    .faq-content.open {
        padding-bottom: 14px;
    }

    .faq-content p {
        font-size: 17px;
    }

    .video-sidebar {
        padding-left: 39px;
        padding-top: 24px;
        padding-right: 17px;
        padding-bottom: 17px;
        gap: 10px;
    }

    .video-sidebar-text {
        font-size: 13px;
    }

    .video-sidebar-right {
        padding-right: 39px;
        padding-top: 24px;
        padding-left: 17px;
        padding-bottom: 17px;
    }

    .companion-section {
        padding: 48px 0;
    }

    .companion-title {
        font-size: 37px;
        margin-bottom: 40px;
    }

    .companion-desc {
        margin-bottom: 48px;
    }

    .mt-37 {
        margin-top: 31px;
    }
}

@media (max-width: 991px) {
    .video-player {
            aspect-ratio: 16.6 / 8.8;
        }
    .disease-wrapper-section .related-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-40 {
        font-size: 32px;
    }

    .left-tab-wrapper-section .first-tab-content-wrapper {
        flex-direction: column;
    }

    .left-tab-wrapper-section .first-tab-content-wrapper .right-tab-content img {
        max-width: 100%;
    }

    .left-tab-wrapper-section {
        padding: 50px 0 50px 0;
    }

    .congress-wrapper-section .tabs-top-section,
    .left-fillter-second-section {
        padding: 60px 0;
    }

    .tabs-first-section-card table td.date,
    .tabs-first-section-card table td.location,
    .tabs-first-section-card table td,
    .tabs-first-section-card table td {
        font-size: 12px;
        line-height: 19px;
    }

    .tabs-first-section-card table td {
        padding: 16px 8px;
    }

    .tabs-first-section-card table tbody tr:last-child td {
        padding-bottom: 30px;
    }

    .tabs-first-section-card table tbody tr:after {
        left: 18px;
    }

    .tabs-first-section-card table tbody tr:last-child::after {
        bottom: 16px;
    }

    .tabs-first-section-card table th {
        padding: 18px 8px;
        font-size: 13px;
        line-height: 19px;
    }

    .left-fillter-second-section .fillter-section h2 {
        padding-bottom: 40px;
    }

    .second-inner-tabs ul {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 27px;
    }

    .back-to-top span img {
        width: 10px;
    }

    .back-to-top {
        padding: 14px 21px;
        font-size: 16px;
        bottom: 30px;
    }

    .refine-result-wrapper {
        flex-direction: column;
    }

    .refine-sidebar {
        width: 100%;
    }

    .search-bar-wrapper {
        flex-direction: column;
    }

    .btn-search {
        justify-content: center;
        padding: 14px 24px;
    }

    .rc-grid {
        grid-auto-columns: calc((100% - 14px) / 2);
    }

    .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .related-contents .molecule-cards-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-player {
        flex-direction: column;
        min-height: auto;
    }

    .video-main {
        flex: 0 1 100%;
    }

    .image-text-row,
    .image-text-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .hero-section-home .hero-content .hero-subtitle {
        font-size: 37px;
    }

    .quick-tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text-content {
        padding: 75px 0;
    }

    .quick-tasks {
        padding: 75px 0 75px;
    }
}

@media (max-width: 830px) {
    .progress-line-bg {
        left: 12%;
        right: 12%;
    }
}

@media (max-width: 768px) {
    .disease-wrapper-section .related-content-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .congress-carousel-wrapper .carousel-track {
        gap: 18px;
    }

    .congress-carousel-btn img {
        width: 10px;
    }

    .left-fillter-second-section .fillter-section h2 {
        padding-bottom: 30px;
    }

    .fs-40 {
        font-size: 30px;
    }

    .tabs-first-section-card .search-wrap {
        width: 100%;
        max-width: 100%;
    }

    .tabs-first-section-card .search-wrap input {
        width: 100%;
    }

    .tabs-first-section-card select {
        max-width: 100%;
    }

    .tabs-first-section-card .cal-btn {
        margin-top: 16px;
        padding: 7px;
    }

    .second-inner-tabs h4 {
        padding: 18px 0;
    }

    .second-tab-section h2 {
        padding-top: 30px;
    }

    .second-inner-tabs {
        padding: 20px;
    }

    .second-inner-tabs .event-sponsored-content {
        right: 50%;
        top: 13px;
        transform: translate(50%, -5%);
    }

    .congress-page-resource-section {
        padding-top: 0;
    }

    .congress-page-resource-title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .congress-page-resource-card .resource-carousel-card-title {
        min-height: auto;
    }

    .congress-page-resource-section .resource-carousel-track {
        margin-top: 68px;
    }

    .scientific-presentations-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .scientific-presentations-grid {
        grid-auto-columns: 100%;
        gap: 20px;
        padding-right: 0;
    }

    .scientific-presentation-card-title {
        min-height: auto;
    }

    .scientific-presentations-section .resource-carousel-arrow {
        top: auto;
        bottom: -52px;
        transform: none;
        display: flex !important;
    }

    .scientific-presentations-section .resource-carousel-arrow.rc-arrow--prev {
        left: 50%;
        margin-left: -28px;
    }

    .scientific-presentations-section .resource-carousel-arrow.rc-arrow--next {
        right: auto;
        left: 50%;
        margin-left: 16px;
    }

    .scientific-presentations-track {
        margin-top: 68px;
    }

    .container {
        padding: 0 15px;
    }

    .rc-grid {
        grid-auto-columns: calc(100% - 30px);
        grid-template-rows: auto;
    }

    .result-card-top {
        padding: 20px;
    }

    .result-card-icon {
        top: 20px;
        right: 20px;
    }

    .result-card-title {
        font-size: 18px;
        padding-right: 40px;
    }

    .molecule-cards-list {
        grid-template-columns: 1fr;
    }

    .pe-768-0 {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }

    .container-fluid {
        padding: 0 16px;
    }

    .beone-footer {
        padding-top: 16px;
    }

    .beone-footer-top {
        padding-top: 28px;
        padding-bottom: 28px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-contact-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #d8d4d2;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .beone-footer-copy,
    .beone-footer-links {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .beone-footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-policy-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-policy-links a {
        margin-right: 0;
        padding-right: 0;
    }

    .footer-policy-links a:not(:last-child)::after {
        content: none;
    }

    .footer-copyright-bar p,
    .footer-contact-item a,
    .beone-footer-copy p,
    .footer-link-group a,
    .footer-policy-links a {
        font-size: 14px;
    }

    .footer-contact-item h3 {
        font-size: 20px;
    }

    .beone-nav {
        width: 290px;
    }

    .footer-policy-links a {
        padding: 0px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        padding-right: 0;
        width: 140px;
        margin: 0 auto;
    }

    .flex-column-768 {
        flex-direction: column !important;
    }

    .explore-pipeline,
    .learn-about {
        font-size: 15px;
    }

    .related-contents .molecule-cards-list {
        grid-template-columns: 1fr;
    }

    .btn-wrapper {
        justify-content: center;
    }

    .video-sidebar-right {
        min-height: 40px;
        padding: 15px;
    }

    .video-sidebar {
        padding: 15px;
    }

    .resource-carousel-grid {
        grid-auto-columns: 100%;
    }

    .resource-carousel-shell {
        padding-bottom: 0;
    }

    .resource-carousel-title {
        font-size: 26px;
    }

    .resource-carousel-arrow {
        top: auto;
        bottom: -52px;
        transform: none;
        display: flex !important;
    }

    .resource-carousel-arrow.rc-arrow--prev {
        left: 50%;
        margin-left: -28px;
    }

    .resource-carousel-arrow.rc-arrow--next {
        right: auto;
        left: 50%;
        margin-left: 16px;
    }

    .resource-carousel-track {
        margin-top: 68px;
    }

    body {
        font-size: 13px;
    }

    .container {
        padding: 0 23px;
    }

    .fs-14 {
        font-size: 13px !important;
    }

    .fs-16 {
        font-size: 14px;
    }

    .fs-18 {
        font-size: 16px !important;
    }

    .fs-20 {
        font-size: 18px;
    }

    .fs-24 {
        font-size: 21px !important;
    }

    .fs-26 {
        font-size: 23px;
    }

    .fs-56 {
        font-size: 49px;
    }

    .mt-20 {
        margin-top: 20px !important;
    }

    .mt-27 {
        margin-top: 27px !important;
    }

    .pt-57 {
        padding-top: 43px !important;
    }

    .mb-27 {
        margin-bottom: 20px !important;
    }

    .mb-38 {
        margin-bottom: 29px !important;
    }

    .pt-60 {
        padding-top: 45px !important;
    }

    .pt-29 {
        padding-top: 22px;
    }

    .pb-57 {
        padding-bottom: 43px !important;
    }

    .mt-67 {
        margin-top: 50px;
    }

    header,
    header.shadow-sm {
        padding: 16px 0 17px;
    }

    header .header-wrapper {
        gap: 23px;
    }

    .beone-nav {
        gap: 0;
    }

    .beone-nav .nav-link {
        gap: 8px;
        font-size: 16px;
    }

    .beone-dropdown {
        padding: 9px 0 12px;
    }

    .dropdown-col {
        padding: 0 9px;
    }

    .dropdown-col-title {
        padding: 8px 9px;
        font-size: 15px;
    }

    .dropdown-sub-item {
        padding: 9px 6px 9px 9px;
        font-size: 15px;
    }

    #dropdown-disease-education .dropdown-col-title {
        font-size: 16px;
    }

    #dropdown-disease-education .dropdown-sub-item {
        font-size: 16px;
    }

    .navbar-right-icons {
        gap: 19px;
    }

    .icon-btn {
        font-size: 14px;
    }

    #btn-language {
        margin-right: 8px;
    }

    .hamburger-btn {
        gap: 4px;
        padding: 5px;
    }

    .mobile-drawer-header {
        padding: 0 15px;
    }

    .mobile-drawer-close {
        font-size: 16px;
    }

    .hero-section {
        padding: 46px 0 75px;
    }

    .hero-content {
        gap: 15px;
    }

    .hero-breadcrumb {
        gap: 5px;
    }

    .hero-breadcrumb a,
    .hero-breadcrumb span {
        font-size: 13px;
    }

    .hero-title {
        font-size: 49px;
        line-height: 1.2;
    }

    .recent-congresses-card {
        padding: 39px 17px;
    }

    .rc-title {
        font-size: 21px;
        margin: 0 0 15px;
    }

    .rc-grid {
        gap: 11px;
        padding-bottom: 3px;
    }

    .rc-badge {
        padding: 3px 9px;
    }

    .rc-item-body {
        padding: 35px 14px 33px;
    }

    .rc-item-name {
        font-size: 23px;
        margin: 0 0 3px;
    }

    .rc-item-date {
        font-size: 14px;
    }

    .rc-item-resources {
        gap: 6px;
        font-size: 16px;
        padding: 24px;
    }

    .rc-scrollbar-track {
        margin-top: 6px;
    }

    .content-part {
        padding: 86px 0 67px;
    }

    .explore {
        gap: 15px;
    }

    .explore-pipeline,
    .learn-about {
        padding-left: 25px;
        padding-top: 7px;
        padding-bottom: 8px;
        padding-right: 25px;
        font-size: 16px;
        gap: 8px;
    }

    .refine-result-wrapper {
        gap: 33px;
    }

    /* .refine-result {
        margin-top: 71px;
    } */
    .news-section+.refine-result {
        margin-top: 71px;
    }

    .refine-sidebar-title {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .filter-header {
        font-size: 18px;
        padding: 9px 0;
        margin-top: 0px;
    }

    .filter-content {
        padding-top: 0px;
        gap: 9px;
    }

    .filter-link {
        font-size: 14px;
    }

    .filter-show-all {
        font-size: 14px;
    }

    .filter-actions {
        margin-top: 9px;
        padding-top: 9px;
    }

    .btn-clear-filters {
        font-size: 13px;
        padding: 8px 15px;
    }

    .search-bar-wrapper {
        gap: 7px;
        margin-bottom: 20px;
    }

    .search-input-box {
        padding: 0 12px;
    }

    .search-input {
        font-size: 13px;
        padding: 8px 0;
    }

    .search-clear-icon {
        font-size: 16px;
    }

    .btn-search {
        padding: 8px 25px;
        font-size: 16px;
        gap: 8px;
    }

    .active-filters {
        margin-bottom: 35px;
        gap: 11px;
    }

    .active-filter-tag {
        font-size: 13px;
        padding: 5px 6px;
    }

    .result-cards-list {
        gap: 15px;
    }

    .result-card-icon {
        font-size: 23px;
    }

    .result-card-title {
        font-size: 18px;
        margin: 0 0 9px;
        margin-right: 11px;
    }

    .result-card-tags {
        font-size: 13px;
        margin-bottom: 15px;
        gap: 3px;
    }

    .result-card-author {
        font-size: 16px;
    }

    .result-card-bottom {
        gap: 8px;
        padding: 15px 21px;
        font-size: 16px;
    }

    .molecule-cards-list {
        gap: 15px;
    }

    .molecule-card-img-wrapper {
        padding: 13px;
    }

    .molecule-card .result-card-top {
        padding-top: 15px;
    }

    .load-more-container {
        margin-top: 30px;
    }

    .btn-load-more {
        font-size: 16px;
    }

    .btn-load-more img {
        margin-left: 6px;
    }

    .presentation-banner {
        padding: 44px 0;
    }

    .presentation-banner .hero-breadcrumb {
        margin-bottom: 28px;
    }

    .category-content {
        font-size: 21px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .presentation-banner .post-image {
        margin-top: 15px;
    }

    .cmn-para {
        font-size: 16px;
    }

    .italic-text {
        font-size: 13px;
    }

    .m-47 {
        margin: 35px 0;
    }

    .cmn-btn {
        padding: 7px 25px;
        font-size: 16px;
        gap: 8px;
    }

    .btn-wrapper {
        margin-top: 35px;
        gap: 15px;
    }

    .related-contents .molecule-cards-list {
        gap: 15px;
    }

    .related-contents {
        padding: 0 0 70px;
    }

    .divider {
        margin-bottom: 43px;
    }

    .related-contents-title {
        font-size: 35px;
        margin-bottom: 35px;
    }

    .related-contents .result-card-top {
        padding: 23px 24px 32px 24px;
    }

    .card-badge {
        font-size: 13px;
        padding: 4px 9px;
    }

    .related-contents .result-card-title {
        margin-top: 39px;
        margin-bottom: 9px;
        font-size: 18px;
    }

    .related-contents .result-card-tags {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .related-contents .result-card-author {
        font-size: 16px;
    }

    .related-contents .result-card-wraper {
        padding: 11px 18px 15px;
    }

    .related-contents .result-card-bottom {
        font-size: 13px;
        gap: 8px;
    }

    .beone-footer {
        padding: 43px 0 0;
    }

    .beone-footer-top {
        gap: 64px;
        padding-bottom: 43px;
    }

    .footer-contact-item:not(:last-child) {
        padding-right: 49px;
    }

    .footer-contact-item h3 {
        margin: 0 0 8px;
        font-size: 21px;
    }

    .footer-contact-item a {
        font-size: 17px;
    }

    .beone-footer-copy {
        padding: 43px 0;
    }

    .beone-footer-copy p {
        font-size: 16px;
    }

    .beone-footer-links {
        gap: 23px;
        padding-top: 43px;
        padding-bottom: 44px;
    }

    .footer-logo {
        padding-right: 27px;
    }

    .footer-link-group {
        gap: 8px;
    }

    .footer-link-group:after {
        content: "";
        display: block;
        height: 1px;
        background-color: #bdbdbd;
        margin-inline: -24px;
        margin-top: 15px;
    }

    .footer-link-group a {
        font-size: 16px;
    }

    .footer-link-group p {
        font-size: 13px;
    }

    .footer-link-group a i {
        margin-left: 3px;
    }

    .footer-link-heading {
        margin-bottom: 8px;
    }

    .footer-policy-links {
        padding: 7px 0 9px;
    }

    .footer-policy-links a {
        font-size: 16px;
        padding-left: 0;
    }

    .footer-policy-links a:first-child {
        padding-left: 0;
    }

    .footer-copyright-bar .container-fluid {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .footer-copyright-bar p {
        font-size: 14px;
        padding: 7px 0 8px;
    }

    .custom-presentation-table {
        margin-top: 23px;
    }

    .custom-presentation-table thead th {
        font-size: 14px;
        padding: 12px 15px;
    }

    .custom-presentation-table tbody td {
        font-size: 14px;
        padding: 12px 15px;
    }

    .resource-carousel-section {
        padding: 0 0 43px;
    }

    .resource-carousel-title {
        font-size: 26px;
        margin: 0 0 20px;
    }

    .resource-carousel-grid {
        gap: 15px;
        padding: 1px 0 3px;
    }

    .resource-carousel-card-top {
        padding: 10px 10px 0;
    }

    .resource-carousel-card-title {
        font-size: 14px;
        margin: 12px 0 15px;
    }

    .resource-carousel-card-footer {
        padding: 14px 18px 16px;
    }

    .resource-carousel-link {
        gap: 6px;
        font-size: 13px;
    }

    .resource-carousel-link i {
        font-size: 13px;
    }

    .resource-carousel-track {
        margin-top: 16px;
    }

    .faq {
        padding: 0 0 45px;
    }

    .faq-title {
        font-size: 35px;
        margin-bottom: 28px;
    }

    .reference-list {
        padding-left: 15px;
    }

    .reference-list li {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mechanism-grid {
        gap: 38px;
    }

    .cmn-pad {
        padding: 43px 0;
    }

    .mt-52 {
        margin-top: 39px;
    }

    .mt-67 {
        margin-top: 50px;
    }

    .faq-button {
        padding: 11px 0;
    }

    .faq-topic {
        font-size: 16px;
    }

    .faq-icon {
        font-size: 13px;
    }

    .faq-content.open {
        padding-bottom: 12px;
    }

    .faq-content p {
        font-size: 16px;
    }

    .video-sidebar {
        padding-left: 35px;
        padding-top: 21px;
        padding-right: 15px;
        padding-bottom: 15px;
        gap: 9px;
    }

    .video-sidebar-text {
        font-size: 13px;
    }

    .video-sidebar-right {
        padding-right: 35px;
        padding-top: 21px;
        padding-left: 15px;
        padding-bottom: 15px;
    }

    .companion-section {
        padding: 43px 0;
    }

    .companion-title {
        font-size: 35px;
        margin-bottom: 35px;
    }

    .companion-desc {
        margin-bottom: 43px;
    }

    .mt-37 {
        margin-top: 28px;
    }

    .custom-search-wrap {
        flex-direction: column;
        border: none;
        max-width: 100%;
        gap: 12px;
    }

    .custom-dropdown-wrapper {
        width: 100%;
        border-right: none;
        border: 1px solid #707070;
        border-radius: 4px;
        background: #ffffff;
    }

    .custom-dropdown-btn {
        width: 100%;
    }

    .custom-dropdown-list {
        width: calc(100% + 2px);
    }

    .custom-search-input-wrapper {
        width: 100%;
        border: 1px solid #707070;
        border-radius: 4px;
        background: #ffffff;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .preferences-box {
        flex-direction: column;
        padding: 20px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .register-progress-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .progress-line-bg {
        display: none;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        padding: 10px 14px;
        font-size: 13px;
        bottom: 20px;
        border-radius: 11px 0 0 11px;
    }

    .tabs-menu-secton-wrapper {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
    }

    .fs-40 {
        font-size: 28px;
        line-height: 38px;
    }

    .left-tab-wrapper-section .first-tab-content-wrapper .left-tab-content ul {
        gap: 20px;
    }

    .left-tab-wrapper-section .first-tab-content-wrapper .left-tab-content h2 {
        padding-bottom: 20px;
    }

    .left-tab-wrapper-section,
    .left-fillter-second-section {
        padding: 40px 0;
    }

    .congress-wrapper-section .tabs-top-section {
        padding: 50px 0;
    }

    .tabs-first-section-card .filters {
        padding: 20px;
    }

    .congress-page-resource-title {
        font-size: 28px;
        line-height: 38px;
    }

    .congress-page-resource-card .resource-carousel-card-top {
        padding: 16px 16px 0;
    }

    .congress-page-resource-card .resource-carousel-card-footer {
        padding: 16px 20px 18px;
    }

    .scientific-presentations-title {
        font-size: 28px;
        line-height: 38px;
    }

    .scientific-presentation-card-top {
        padding: 18px 20px 20px;
    }

    .flex-column-567 {
        flex-direction: column !important;
    }

    .explore-pipeline,
    .learn-about {
        max-width: max-content;
    }

    .btn-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .cmn-btn {
        justify-content: center;
        text-align: center;
    }

    .video-main img {
        max-width: 300px;
    }

    .video-play-btn img {
        max-width: 100px;
    }

    .resource-carousel-card-footer {
        padding: 16px 20px 18px;
    }

    body {
        font-size: 13px;
    }

    .container {
        padding: 0 20px;
    }

    .fs-14 {
        font-size: 13px !important;
    }

    .fs-16 {
        font-size: 13px;
    }

    .fs-18 {
        font-size: 15px !important;
    }

    .fs-20 {
        font-size: 17px;
    }

    .fs-24 {
        font-size: 20px !important;
    }

    .fs-26 {
        font-size: 22px;
    }

    .fs-56 {
        font-size: 47px;
    }

    .mt-27 {
        margin-top: 18px !important;
    }

    .pt-57 {
        padding-top: 37px !important;
    }

    .mb-27 {
        margin-bottom: 18px !important;
    }

    .mb-38 {
        margin-bottom: 25px !important;
    }

    .pt-60 {
        padding-top: 39px !important;
    }

    .pt-29 {
        padding-top: 19px;
    }

    .pb-57 {
        padding-bottom: 37px !important;
    }

    .mt-67 {
        margin-top: 44px;
    }

    header,
    header.shadow-sm {
        padding: 14px 0 14px;
    }

    header .header-wrapper {
        gap: 20px;
    }

    .beone-nav {
        gap: 0;
    }

    .beone-nav .nav-link {
        gap: 7px;
        font-size: 15px;
    }

    .beone-dropdown {
        padding: 8px 0 10px;
    }

    .dropdown-col {
        padding: 0 8px;
    }

    .dropdown-col-title {
        padding: 7px 8px;
        font-size: 14px;
    }

    .dropdown-sub-item {
        padding: 8px 5px 8px 8px;
        font-size: 14px;
    }

    #dropdown-disease-education .dropdown-col-title {
        font-size: 15px;
        margin-bottom: 1px;
    }

    #dropdown-disease-education .dropdown-sub-item {
        font-size: 15px;
    }

    .navbar-right-icons {
        gap: 16px;
    }

    .icon-btn {
        font-size: 13px;
    }

    #btn-language {
        margin-right: 7px;
    }

    .hamburger-btn {
        gap: 3px;
        padding: 4px;
    }

    .mobile-drawer-header {
        padding: 0 13px;
    }

    .mobile-drawer-close {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 0 65px;
    }

    .hero-content {
        gap: 13px;
    }

    .hero-breadcrumb {
        gap: 4px;
    }

    .hero-breadcrumb a,
    .hero-breadcrumb span {
        font-size: 13px;
    }

    .hero-title {
        font-size: 47px;
    }

    .recent-congresses-card {
        padding: 34px 14px;
    }

    .rc-title {
        font-size: 20px;
        margin: 0 0 13px;
    }

    .rc-grid {
        gap: 9px;
        padding-bottom: 3px;
    }

    .rc-badge {
        padding: 3px 8px;
    }

    .rc-item-body {
        padding: 30px 12px 29px;
    }

    .rc-item-name {
        font-size: 22px;
        margin: 0 0 3px;
    }

    .rc-item-date {
        font-size: 13px;
    }

    .rc-item-resources {
        gap: 5px;
        font-size: 15px;
        padding: 21px;
    }

    .rc-scrollbar-track {
        margin-top: 5px;
    }

    .content-part {
        padding: 75px 0 58px;
    }

    .explore {
        gap: 13px;
    }

    .explore-pipeline,
    .learn-about {
        padding-left: 21px;
        padding-top: 6px;
        padding-bottom: 7px;
        padding-right: 21px;
        font-size: 15px;
        gap: 7px;
    }

    .refine-result-wrapper {
        gap: 29px;
    }

    .news-section+.refine-result {
        margin-top: 61px;
    }

    .refine-sidebar-title {
        font-size: 20px;
        margin-bottom: 9px;
    }

    .filter-header {
        font-size: 17px;
        padding: 8px 0;
        margin-top: 0px;
    }

    .filter-content {
        padding-top: 0px;
        gap: 8px;
    }

    .filter-link {
        font-size: 13px;
    }

    .filter-show-all {
        font-size: 13px;
    }

    .filter-actions {
        margin-top: 8px;
        padding-top: 8px;
    }

    .btn-clear-filters {
        font-size: 13px;
        padding: 7px 13px;
    }

    .search-bar-wrapper {
        gap: 6px;
        margin-bottom: 18px;
    }

    .search-input-box {
        padding: 0 10px;
    }

    .search-input {
        font-size: 13px;
        padding: 7px 0;
    }

    .search-clear-icon {
        font-size: 15px;
    }

    .btn-search {
        padding: 7px 21px;
        font-size: 15px;
        gap: 7px;
    }

    .active-filters {
        margin-bottom: 31px;
        gap: 10px;
    }

    .active-filter-tag {
        font-size: 13px;
        padding: 4px 5px;
    }

    .result-cards-list {
        gap: 13px;
    }

    .result-card-top {
        padding: 21px;
    }

    .result-card-icon {
        font-size: 22px;
    }

    .result-card-title {
        font-size: 17px;
        margin: 0 0 8px;
        margin-right: 10px;
    }

    .result-card-tags {
        font-size: 13px;
        margin-bottom: 13px;
        gap: 3px;
    }

    .result-card-author {
        font-size: 15px;
    }

    .result-card-bottom {
        gap: 7px;
        padding: 13px 18px;
        font-size: 15px;
    }

    .molecule-cards-list {
        gap: 13px;
    }

    .molecule-card-img-wrapper {
        padding: 11px;
    }

    .molecule-card .result-card-top {
        padding-top: 13px;
    }

    .load-more-container {
        margin-top: 26px;
    }

    .btn-load-more {
        font-size: 15px;
    }

    .btn-load-more img {
        margin-left: 5px;
    }

    .presentation-banner {
        padding: 38px 0;
    }

    .presentation-banner .hero-breadcrumb {
        margin-bottom: 24px;
    }

    .category-content {
        font-size: 20px;
        margin-top: 13px;
        margin-bottom: 18px;
    }

    .presentation-banner .post-image {
        margin-top: 13px;
    }

    .cmn-para {
        font-size: 15px;
    }

    .italic-text {
        font-size: 13px;
    }

    .m-47 {
        margin: 31px 0;
    }

    .cmn-btn {
        padding: 6px 21px;
        font-size: 15px;
        gap: 7px;
    }

    .btn-wrapper {
        margin-top: 31px;
        gap: 13px;
    }

    .related-contents .molecule-cards-list {
        gap: 13px;
    }

    .related-contents {
        padding: 0 0 60px;
    }

    .divider {
        margin-bottom: 37px;
    }

    .related-contents-title {
        font-size: 34px;
        margin-bottom: 31px;
    }

    .related-contents .result-card-top {
        padding: 20px 21px 28px 21px;
    }

    .card-badge {
        font-size: 13px;
        padding: 3px 8px;
    }

    .related-contents .result-card-title {
        margin-top: 34px;
        margin-bottom: 8px;
        font-size: 17px;
    }

    .related-contents .result-card-tags {
        font-size: 13px;
        margin-bottom: 13px;
    }

    .related-contents .result-card-author {
        font-size: 15px;
    }

    .related-contents .result-card-wraper {
        padding: 10px 16px 13px;
    }

    .related-contents .result-card-bottom {
        font-size: 13px;
        gap: 7px;
    }

    .beone-footer {
        padding: 37px 0 0;
    }

    .beone-footer-top {
        gap: 40px;
        padding-bottom: 37px;
    }

    .footer-contact-item:not(:last-child) {
        padding-right: 43px;
    }

    .footer-contact-item h3 {
        margin: 0 0 7px;
        font-size: 20px;
    }

    .footer-contact-item a {
        font-size: 16px;
    }

    .beone-footer-copy {
        padding: 37px 0;
    }

    .beone-footer-copy p {
        font-size: 15px;
    }

    .beone-footer-links {
        gap: 20px;
        padding-top: 37px;
        padding-bottom: 38px;
    }

    .footer-logo {
        padding-right: 24px;
    }

    .footer-link-group {
        gap: 7px;
    }

    .footer-link-group a {
        font-size: 15px;
    }

    .footer-link-group p {
        font-size: 13px;
    }

    .footer-link-group a i {
        margin-left: 3px;
    }

    .footer-link-heading {
        margin-bottom: 7px;
    }

    .footer-policy-links {
        padding: 6px 0 8px;
    }

    .footer-policy-links a {
        font-size: 15px;
    }

    .footer-policy-links a:first-child {
        padding-left: 0;
    }

    .footer-copyright-bar .container-fluid {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .footer-copyright-bar p {
        font-size: 13px;
        padding: 6px 0 7px;
    }

    .custom-presentation-table {
        margin-top: 20px;
    }

    .custom-presentation-table thead th {
        font-size: 13px;
        padding: 10px 13px;
    }

    .custom-presentation-table tbody td {
        font-size: 13px;
        padding: 10px 13px;
    }

    .resource-carousel-section {
        padding: 0 0 37px;
    }

    .resource-carousel-title {
        font-size: 25px;
        margin: 0 0 18px;
    }

    .resource-carousel-grid {
        gap: 13px;
        padding: 1px 0 3px;
    }

    .resource-carousel-card-top {
        padding: 8px 8px 0;
    }

    .resource-carousel-card-title {
        font-size: 13px;
        margin: 10px 0 13px;
    }

    .resource-carousel-card-footer {
        padding: 12px 16px 14px;
    }

    .resource-carousel-link {
        gap: 5px;
        font-size: 13px;
    }

    .resource-carousel-link i {
        font-size: 13px;
    }

    .resource-carousel-track {
        margin-top: 70px;
    }

    .faq {
        padding: 0 0 39px;
    }

    .faq-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .reference-list {
        padding-left: 13px;
    }

    .reference-list li {
        font-size: 15px;
        margin-bottom: 7px;
    }

    .mechanism-grid {
        gap: 33px;
    }

    .cmn-pad {
        padding: 37px 0;
    }

    .mt-52 {
        margin-top: 34px;
    }

    .mt-67 {
        margin-top: 44px;
    }

    .faq-button {
        padding: 10px 0;
    }

    .faq-topic {
        font-size: 15px;
    }

    .faq-icon {
        font-size: 13px;
    }

    .faq-content.open {
        padding-bottom: 10px;
    }

    .faq-content p {
        font-size: 15px;
    }

    .video-sidebar {
        padding-left: 30px;
        padding-top: 18px;
        padding-right: 13px;
        padding-bottom: 13px;
        gap: 8px;
    }

    .video-sidebar-text {
        font-size: 13px;
    }

    .video-sidebar-right {
        padding-right: 30px;
        padding-top: 18px;
        padding-left: 13px;
        padding-bottom: 13px;
    }

    .companion-section {
        padding: 37px 0;
    }

    .companion-title {
        font-size: 34px;
        margin-bottom: 31px;
        line-height: 45px;
    }

    .companion-desc {
        margin-bottom: 37px;
    }

    .mt-37 {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .hero-section-home .hero-content .hero-subtitle {
        font-size: 37px;
        line-height: 1.1;
    }

    .hero-section-home .hero-content p {
        font-size: 19px;
        line-height: 1.1;
    }

    .quick-tasks-grid {
        grid-template-columns: 1fr;
    }

    .image-text-content {
        padding: 65px 0;
    }

    .quick-tasks {
        padding: 65px 0 65px;
    }

    .image-text-row {
        margin-bottom: 59px;
    }

    .footer-link-group:after {
        margin-inline: -20px;
    }
}

@media (max-width: 480px) {
    .beone-logo img {
        height: 22px;
    }

    .beone-nav {
        width: 100vw;
        max-width: 100vw;
    }
}

@media (max-width: 390px) {
    .fs-14 {
        font-size: 13px;
    }

    .fs-40 {
        font-size: 26px;
        line-height: 35px;
    }

    .congress-wrapper-section .tabs-top-section {
        padding: 40px 0;
    }

    .congress-page-resource-title {
        font-size: 26px;
        line-height: 35px;
    }

    .scientific-presentations-title {
        font-size: 26px;
        line-height: 35px;
    }
}

/* =============================
    CUSTOM SEARCH DROPDOWN
    ============================= */
.custom-search-wrap {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 4px;
    overflow: visible;
    max-width: 600px;
    border: 1px solid #707070;
    position: relative;
    margin-top: 30px;
}

.custom-dropdown-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.custom-dropdown-btn {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: none;
    padding: 9px 8px 9px 26px;
    font-family: inherit;
    font-size: 16px;
    color: #28334a;
    cursor: pointer;
    width: 256px;
    height: 45px;
    border-radius: 4px 0 0 4px;
}

.custom-dropdown-chevron {
    transition: transform 0.3s ease;
    transform-origin: center center;
    color: #006680;
    display: block;
}

.custom-dropdown-wrapper.is-open .custom-dropdown-chevron {
    transform: rotate(180deg);
}

.custom-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1000;
    border-radius: 4px;
}

.custom-dropdown-wrapper.is-open .custom-dropdown-list {
    display: block;
}

.custom-dropdown-item {
    padding: 12px 16px;
    font-size: 15px;
    color: #28334a;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0 10px;
}

.custom-dropdown-item:hover,
.custom-dropdown-item.selected {
    background-color: #e8f0f2;
    font-weight: 500;
}

.custom-search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background-color: #ffffff;
    height: 45px;
    border-radius: 0 4px 4px 0;
    margin-left: 2px;
}

.custom-search-input {
    flex: 1;
    background: transparent;
    padding: 9px 8px;
    font-size: 16px;
    color: #28334a;
    outline: none;
    border: none;
    font-family: poppins;
}

.custom-search-input::placeholder {
    color: #707070;
}

.custom-search-submit {
    background: transparent;
    border: none;
    color: #006680;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.custom-search-submit:hover {
    color: #d52b1e;
}

.featured-content {
    position: relative;
}

.featured-content .molecule-cards-list {
    grid-template-columns: repeat(3, 1fr);
}

.image-part {
    width: 100%;
    height: 100%;
}

.image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    max-height: 300px;
}

@media (max-width: 768px) {
    .custom-search-wrap {
        flex-direction: column;
        border: none;
        max-width: 100%;
        gap: 12px;
    }

    .custom-dropdown-wrapper {
        width: 100%;
        border-right: none;
        border: 1px solid #707070;
        border-radius: 4px;
        background: #ffffff;
    }

    .custom-dropdown-btn {
        width: 100%;
    }

    .custom-dropdown-list {
        width: calc(100% + 2px);
    }

    .custom-search-input-wrapper {
        width: 100%;
        border: 1px solid #707070;
        border-radius: 4px;
        background: #ffffff;
    }
}

/* =============================
    IMAGE TEXT CONTENT STYLES
    ============================= */
.image-text-content {
    padding: 89px 0;
}

.image-text-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 89px;
}

.image-text-row:last-child {
    margin-bottom: 0;
}

.image-text-row.reverse {
    flex-direction: row-reverse;
}

.content-img {
    flex: 1;
}

.content-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 27px;
    line-height: 1.25;
}

.content-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #28334a;
    margin-bottom: 25px;
}

.btn-grp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
    border: 0;
    line-height: 1.2;
    border: 1px solid #006680;
}

.custom-btn:hover {
    background: #fff;
}

.btn-teal {
    background-color: #006680;
    border: 1px solid #006680;
}

.btn-teal:hover {
    color: #006680;
}

.btn-teal:hover svg path {
    fill: #006680;
}

.btn-red {
    background-color: #b65c62;
    border: 1px solid #b65c62;
}

.btn-red:hover {
    color: #b65c62;
}

.btn-red:hover svg path {
    fill: #b65c62;
}

.btn-lightteal {
    background-color: #6496a0;
    border: 1px solid #6496a0;
}

.btn-lightteal:hover {
    color: #6496a0;
}

.btn-lightteal:hover svg path {
    fill: #6496a0;
}

.btn-darkblue {
    background-color: #28334a;
    border: 1px solid #28334a;
}

.btn-darkblue:hover {
    color: #28334a;
}

.btn-darkblue:hover svg path {
    fill: #28334a;
}

@media (max-width: 991px) {

    .image-text-row,
    .image-text-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

/* =============================
    QUICK TASKS STYLES
    ============================= */
.quick-tasks {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.quick-tasks-title {
    font-size: 36px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 40px;
}

.quick-tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.quick-task-card {
    background: #ffffff;
    border-radius: 17.5px;
    box-shadow: 0px 0px 6px #00000040;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.quick-task-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 12px #00000040;
}

.quick-task-card.center-text {
    justify-content: center;
}

.quick-task-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #28334a;
    line-height: 1.45;
    margin: 0;
    font-family: "Bitter";
}

.qt-icon-inline {
    width: 14px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

.qt-sublinks {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qt-sublink {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #28334a;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.qt-arrow {
    width: 14px;
    height: auto;
}

.qt-icon {
    width: 14px;
    height: auto;
}

@media (max-width: 1199px) {
    .quick-tasks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-section-home .hero-content .hero-subtitle {
        font-size: 37px;
    }

    .quick-tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text-content {
        padding: 75px 0;
    }

    .quick-tasks {
        padding: 75px 0 75px;
    }
}

@media (max-width: 575px) {
    .hero-section-home .hero-content .hero-subtitle {
        font-size: 37px;
        line-height: 1.1;
    }

    .hero-section-home .hero-content p {
        font-size: 19px;
        line-height: 1.1;
    }

    .quick-tasks-grid {
        grid-template-columns: 1fr;
    }

    .image-text-content {
        padding: 65px 0;
    }

    .quick-tasks {
        padding: 65px 0 65px;
    }

    .image-text-row {
        margin-bottom: 59px;
    }
}

/* =============================
    REGISTER SECTION STYLES
    ============================= */
.register-section {
    padding: 121px 0 111px;
    background-color: #ffffff;
}

.register-section h2 {
    font-size: 32px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 60px;
    line-height: 1.25;
    text-align: center;
}

/* =============================
    MULTI-STEP REGISTER FORM
    ============================= */

/* Progress Bar */
.register-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.progress-line-bg {
    position: absolute;
    top: 11px;
    left: 8%;
    right: 8%;
    height: 1px;
    background-color: #a3a3a3;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 180px;
    text-align: center;
}

.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #a3a3a3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.progress-step.active .step-circle {
    border-color: #006680;
}

.progress-step.active .circle-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #006680;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step-text strong {
    font-size: 14px;
    color: #28334a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.step-text span {
    font-size: 10px;
    color: #28334a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Form Styles */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.required-note {
    font-size: 18px;
    color: #28334a;
    font-style: italic;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.form-group-half {
    flex: 0 1 calc(50% - 25px);
}

.form-group label {
    font-size: 19px;
    color: #28334a;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-control:focus {
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0, 204, 255, 0.6);
    border: 1.5px solid #006680 !important;
}

.form-control::placeholder {
    color: #a3a3a3;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    padding-right: 40px;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 12px;
    pointer-events: none;
}

.password-input-wrapper {
    position: relative;
}

.btn-toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.field-desc {
    font-size: 14px;
    color: #28334a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-style: italic;
}

.mt-auto {
    margin-top: auto;
}

.mt-50 {
    margin-top: 50px;
}

/* Footer & Buttons */
.form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid transparent;
}

.gdpr-note {
    font-size: 18px;
    color: #28334a;
    font-style: italic;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 30px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
    text-decoration: none;
}

.register-btn:hover {
    opacity: 0.9;
}

.register-btn-primary,
.register-btn-secondary {
    background-color: #28334a;
    color: #fff;
    gap: 10px;
}

/* Preferences Layout */
.preferences-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 40px;
}

.pref-col {
    flex: 1;
}

.pref-col h3 {
    font-size: 24px;
    color: #28334a;
    font-weight: 500;
    margin-bottom: 47px;
}

.pref-desc {
    font-size: 19px;
    color: #28334a;
    margin-bottom: 14px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Custom Checkbox */

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #a3a3a3;
    border-radius: 3px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mobile-input-group {
    margin-top: 25px;
}

.mobile-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 140px;
    flex-shrink: 0;
}

.country-code select {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    padding-right: 35px;
}

.mobile-sms-note {
    margin-top: 8px;
    font-size: 12px;
    font-style: italic;
    color: #555;
    line-height: 1.4;
}

/* Consent Text */
.consent-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.consent-text p {
    margin-bottom: 20px;
}

.consent-text a {
    color: #006680;
    text-decoration: underline;
}

.consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consent-check .check-text {
    display: block;
    padding-top: 0;
}

/* Registration Message States */
.register-message-state {
    padding: 60px 0px;
    text-align: center;
}

.register-message-state .state-title {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 70px;
    text-align: center;
}

.register-message-state .state-body p {
    font-size: 24px;
    line-height: 1.6;
    color: #28334a;
    margin-bottom: 15px;
}

.register-message-state .state-body p:last-child {
    margin-bottom: 0;
}

.register-message-state .support-email {
    color: #006680;
    text-decoration: none;
    font-weight: 500;
}

.register-message-state .support-email:hover {
    text-decoration: underline;
}

/* =============================
    LANDING PAGE OVERLAY
    ============================= */
.landing-page-overlay {
    position: fixed;
    inset: 0;
    background-color: #28334a;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.landing-page-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 1275px;
    border-radius: 12px;
    padding: 76px 70px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: auto;
    flex-shrink: 0;
}

.landing-header {
    margin-bottom: 50px;
}

.landing-logo {
    margin-bottom: 30px;
    max-width: 256px;
    width: 100%;
}

.landing-title {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin: 0;
}

.landing-returning-user {
    margin-bottom: 50px;
}

.landing-returning-user p {
    font-size: 18px;
    font-weight: 600;
    color: #28334a;
    margin-bottom: 20px;
}

.landing-new-user-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 42px;
    margin: 0 auto;
}

.new-user-title {
    font-size: 18px;
    font-weight: 600;
    color: #28334a;
    margin-bottom: 25px;
}

.landing-select {
    max-width: 638px;
    margin: 0 auto 30px;
}

.landing-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

.landing-disclaimer p {
    margin-bottom: 10px;
}

.landing-disclaimer p:last-child {
    margin-bottom: 0;
}

/* =============================
    POPUP COMMON (HCP & Redirect)
    ============================= */
.hcp-popup-overlay,
.redirect-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.hcp-popup-overlay.is-visible,
.redirect-popup-overlay.is-visible {
    display: flex;
}

.hcp-popup-box,
.redirect-popup-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 45px 38px;
    max-width: 1320px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    animation: hcpPopupFadeIn 0.3s ease;
}

@keyframes hcpPopupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hcp-popup-buttons,
.redirect-popup-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hcp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.2;
}

.hcp-btn svg {
    width: 14px;
    height: 12px;
    flex-shrink: 0;
}

.hcp-btn-outline {
    background-color: transparent;
    border: 1.5px solid #28334a;
    color: #28334a;
}

.hcp-btn-outline:hover {
    background-color: #28334a;
    color: #ffffff;
}

.hcp-btn-outline:hover svg path {
    fill: #ffffff;
}

.hcp-btn-filled {
    background-color: #28334a;
    border: 1.5px solid #28334a;
    color: #ffffff;
}

.hcp-btn-filled:hover {
    background-color: #1a2235;
    border-color: #1a2235;
}

/* =============================
    HCP POPUP (overrides)
    ============================= */
.hcp-popup-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.hcp-popup-text,
.redirect-popup-title {
    font-size: clamp(18px, 4vw, 40px);
    text-align: center;
    font-weight: 500;
    line-height: 1.25;
    color: #28334a;
    margin: 0 0 28px;
}

/* =============================
    REDIRECT POPUPS (extras)
    ============================= */

.redirect-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.redirect-popup-close:hover {
    color: #28334a;
}

.redirect-popup-title {
    margin: 0 0 22px;
}

.redirect-link {
    color: #006d8f;
    text-decoration: underline;
}

.redirect-link:hover {
    color: #004d61;
}

.redirect-popup-body {
    text-align: left;
    margin-bottom: 30px;
}

.redirect-popup-body p {
    font-size: 18px;
    line-height: 1.44;
    color: #28334a;
    margin: 0 0 15px;
    font-weight: 500;
    letter-spacing: 0;
}

.pink-text {
    color: #9d1bc4;
}

.redirect-popup-body p:last-child {
    margin-bottom: 0;
}

.redirect-popup-body--centered {
    text-align: center;
}

.redirect-popup-question {
    font-size: 24px;
    font-weight: 500;
    color: #28334a;
    text-align: center;
    margin: 30px 0 30px;
    letter-spacing: 0;
}

/* Popup Responsive */
@media (max-width: 991px) {

    .hcp-popup-buttons,
    .redirect-popup-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .landing-page-container {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .landing-header {
        margin-bottom: 30px;
    }

    .hcp-popup-box,
    .redirect-popup-box {
        padding: 30px 24px 28px;
    }

    .hcp-popup-text {
        margin-bottom: 25px;
    }

    .hcp-popup-buttons,
    .redirect-popup-buttons {
        flex-direction: column;
    }

    .hcp-popup-buttons .hcp-btn,
    .redirect-popup-buttons .hcp-btn {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 12px 18px;
    }

    .redirect-popup-title {
        font-size: 30px;
        padding-right: 24px;
    }
}

/* =============================
    NEWS SECTION (Swiper)
    ============================= */
.news-section {
    margin-top: 60px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* .swiper {
    overflow: visible !important;
} */

.news-title {
    font-size: 24px;
    font-weight: 500;
    color: #28334a;
    margin: 0;
}

.btn-press {
    background-color: #006680;
    padding: 12px 30px;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1.6px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.btn-press:hover {
    background-color: #004d61;
    color: #ffffff;
}

.newsSwiper {
    padding: 10px !important;
    margin: -10px !important;
}

.featured-content .newsSwiper {
    overflow: hidden !important;
}

.newsSwiper .swiper-slide {
    height: auto;
}

/* ================= */

.news-section .newsSwiper.rc-congress-grid-swiper {
    padding: 0 !important;
    margin: 0 !important;
}

.rc-congress-grid-swiper.swiper-grid>.swiper-wrapper {
    row-gap: 24px;
}

.rc-congress-grid-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
    margin-top: 0 !important;
}

/* Grid layout for multiple items per slide - 3 columns */
.rc-congress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .rc-congress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .rc-congress-grid {
        grid-template-columns: 1fr;
    }
}

.rc-congress-grid-item {
    height: 100%;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.rc-congress-grid-swiper .rc-item {
    height: 100%;
    min-height: 0;
    flex: 1;
}

/* ========== */

.card-tertiary {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    height: 100%;
    min-height: 260px;
    box-shadow: 0px 0px 6px #00000040;
}

.card-tertiary:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-date {
    font-size: 14px;
    font-weight: 500;
    color: #006680;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.card-title {
    font-size: 20px;
    font-weight: 400;
    color: #28334a;
    margin: 0 0 24px;
    line-height: 1.4;
    flex-grow: 1;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #28334a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: auto;
}

.card-tertiary:hover .card-link {
    color: #006680;
}

/* Swiper Controls */
.news-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.news-pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.swiper-pagination-custom {
    position: relative;
    bottom: 0 !important;
    width: auto !important;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    background: #a3a3a3;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 4px !important;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background: #28334a;
}

.news-fraction {
    font-size: 16px;
    font-weight: 600;
    color: #006680;
}

.news-nav-buttons {
    display: flex;
    gap: 12px;
    position: relative;
}

.news-button-prev,
.news-button-next {
    position: relative !important;
    margin: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006680;
    color: #8ae7ff !important;
    transition: opacity 0.3s;
}

.news-button-prev::after,
.news-button-next::after {
    font-size: 16px !important;
    font-weight: bold;
}

.news-button-prev::after {
    content: url(../images/leftars.svg);
}

.news-button-next::after {
    content: url(../images/leftars.svg);
    transform: rotate(180deg);
}

.news-button-prev:hover,
.news-button-next:hover {
    opacity: 0.8;
}

.news-button-prev.swiper-button-disabled::after,
.news-button-next.swiper-button-disabled::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.news-button-prev.swiper-button-disabled,
.news-button-next.swiper-button-disabled {
    opacity: 1;
    cursor: not-allowed;
    background: #bdbdbd;
}

/* Responsive */
@media (max-width: 1024px) {
    .progress-line-bg {
        left: 10%;
        right: 10%;
    }
}

@media (max-width: 830px) {
    .progress-line-bg {
        left: 12%;
        right: 12%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .preferences-box {
        flex-direction: column;
        padding: 20px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .register-progress-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .progress-line-bg {
        display: none;
    }
}

/* HCP Popup Responsive */
@media (max-width: 600px) {
    .hcp-popup-box {
        padding: 30px 24px;
    }

    .hcp-popup-text {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .hcp-popup-buttons {
        flex-direction: column;
    }

    .hcp-btn {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 12px 18px;
    }
}

/* =============================
    MY ACCOUNT PAGE STYLES
    ============================= */
.my-account-section {
    padding: 80px 0 120px;
    background-color: #fff;
}

.account-tab-content .required-note {
    margin-bottom: 47px;
}

.my-account-wrapper {
    display: flex;
    gap: clamp(40px, 6vw, 100px);
    align-items: flex-start;
}

/* Sidebar */
.account-sidebar {
    flex: 0 0 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 11px 19px;
    font-size: 16px;
    font-weight: 500;
    color: #28334a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 10px;
    font-family: poppins;
}

.sidebar-link:hover {
    background-color: #f4f7f8;
    color: #006680;
}

.sidebar-link.active {
    background-color: #ebf2f4;
    color: #006680;
}

.logout-icon {
    width: 18px;
    height: 18px;
}

/* Content Area */
.account-content {
    flex: 1;
    width: 100%;
}

.account-tab-content {
    display: none;
}

.account-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.account-section-title {
    font-size: 19px;
    font-weight: 400;
    color: #28334a;
    margin-bottom: 30px;
}

.account-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.save-btn {
    background-color: #28334a;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.save-btn:hover {
    opacity: 0.9;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.toggle-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: 0.4s;
    border-radius: 24px;
    border: 2px solid transparent;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 1px;
    background-color: #a3a3a3;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #ffffff;
    border-color: #006680;
}

input:checked+.slider:before {
    transform: translateX(20px);
    background-color: #006680;
}

.toggle-label {
    font-size: 18px;
    color: #28334a;
}

/* My Account Specifics */
.communication-prefs {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.pref-section h4 {
    font-size: 18px;
    font-weight: 400;
    color: #28334a;
    margin-bottom: 25px;
}

.pref-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.password-change-section {
    margin-top: 57px;
}

.interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.checkbox-text-wrap {
    display: inline-block;
}

.checkbox-sub-note {
    display: block;
    font-size: 13px;
    font-style: italic;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .my-account-section {
        padding: 50px 0 80px;
    }

    .my-account-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .account-sidebar {
        flex: 0 0 auto;
        width: 100%;
    }

    .sidebar-nav {
        flex-direction: column;
        padding-bottom: 0;
        gap: 4px;
    }

    .sidebar-link {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 15px;
    }

    .sidebar-arrow {
        display: none;
    }

    .communication-prefs {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .interests-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .my-account-section {
        padding: 30px 0 60px;
    }

    .my-account-wrapper {
        gap: 25px;
    }

    .account-tab-content .required-note {
        margin-bottom: 30px;
    }

    .account-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .password-change-section {
        margin-top: 35px;
    }

    .password-change-section .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .password-input-wrapper.mt-auto {
        margin-top: 0;
    }

    .account-section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .communication-prefs {
        margin-top: 30px;
        gap: 25px;
    }

    .account-form-footer {
        margin-top: 30px;
    }
}

.bg-design {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.disease-wrapper-section {
    padding: 111px 0 97px;
    background-color: #fef8f2;
    position: relative;
    overflow: hidden;
}

.text-top {
    margin-bottom: 50px;
}

.text-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 27px;
}

.text-title h2 {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
}

.see-all-btn {
    background-color: #e97600;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.see-all-btn:hover {
    color: #e97600;
    background-color: #fff;
    border: 1px solid #e97600;
}

.see-all-btn:hover svg path {
    fill: #e97600;
}

.text-top p {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
    margin: 0;
}

.diseaseSwiper .card-top {
    border-radius: 8px;
    margin-bottom: 15px;
}

.diseaseSwiper .card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diseaseSwiper .result-card-top {
    padding: 32px 17px;
    position: relative;
}

.diseaseSwiper .card-bottom {
    position: relative;
    padding-top: 60px;
}

.diseaseSwiper .card-badge {
    background-color: #fcead9;
}

.diseaseSwiper .result-card-tags {
    color: #e97600;
    margin-bottom: 0;
}

.diseaseSwiper .result-card-bottom {
    color: #28334a;
}

.diseaseSwiper .result-card-title {
    margin-right: 0px;
}

.diseaseSwiper .result-card-separator {
    background-color: #e97600;
}

.diseaseSwiper .news-button-prev,
.diseaseSwiper .news-button-next {
    background-color: #e97600;
}

.diseaseSwiper .news-button-prev.swiper-button-disabled,
.diseaseSwiper .news-button-next.swiper-button-disabled {
    opacity: 1;
    cursor: not-allowed;
    background: #bdbdbd;
}

.diseaseSwiper .news-button-prev::after {
    content: url(../images/white-btn-arrow.svg);
    transform: rotate(180deg);
}

.diseaseSwiper .news-button-next::after {
    content: url(../images/white-btn-arrow.svg);
    transform: rotate(360deg);
}

.diseaseSwiper .swiper-pagination-custom .swiper-pagination-bullet-active {
    background: #e97600;
}

.diseaseSwiper .news-fraction {
    color: #e97600;
}

/* =============================
    CARD LISTING GRID
    ============================= */
.card-listing {
    padding: 80px 0;
    background-color: white;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card-listing .result-card {
    min-height: auto;
    border-color: #e0e0e0;
    display: flex;
    flex-direction: column;
}

.card-listing .result-card-top {
    padding: 25px 32px 32px 32px;
    flex-grow: 1;
}

.card-listing .result-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #28334a;
    margin-top: 0;
    margin-bottom: 12px;
}

.card-listing .result-card-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #28334a;
    margin: 0;
}

.card-listing .result-card-separator {
    background-color: #e97600;
}

.card-listing .result-card-wraper .result-card-bottom {
    padding: 15px 24px 20px;
}

.disease-wrapper-section .result-card-tags {
    color: #e97600;
}

.card-listing .result-card-bottom {
    color: #28334a;
    padding: 0;
}

/* BeGenius Webinars */
.webinar-hero .Webinars-inner-content {
    max-width: 802px;
    width: 100%;
}

.webinar-hero .Webinars-inner-content span {
    padding: 0 !important;
    font-style: italic;
}

.webinar-hero .Webinars-inner-content p,
.webinar-hero .Webinars-inner-content span {
    font-weight: 500;
    padding: 0 0 20px 0;
}

.webinar-card-listing.card-listing .result-card-top {
    padding: 17px 17px 32px 18px;
}

.webinar-card-listing .grid-wrapper .result-card figure {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

.webinar-card-listing .grid-wrapper .result-card figure img {
    max-width: 392px;
    width: 100%;
}

.webinar-card-listing .grid-wrapper .result-card p,
.webinar-card-listing .grid-wrapper .result-card span {
    font-weight: 500;
}

.webinar-card-listing .grid-wrapper .result-card p {
    padding: 27px 0 9px 0;
}

.webinar-card-listing .grid-wrapper .result-card {
    box-shadow: 0px 0px 6px #00000040;
    border-radius: 18px;
}

.steering-committee-grid .result-card-bottom img {
    transition: transform 0.3s ease;
}

.steering-committee-grid .result-card-bottom:hover {
    background: transparent;
    box-shadow: none;
}

.steering-committee-grid .result-card-bottom:hover img {
    transform: translateX(6px);
}


.webinar-card-listing .steering-committee-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.webinar-card-listing .steering-committee-grid .result-card-top,
.webinar-card-listing .steering-committee-grid .result-card-wraper {
    padding: 0 !important;
}

.webinar-card-listing .steering-committee-grid .result-card {
    box-shadow: none;
    border: 0;
    border-radius: 0;
}

.webinar-card-listing .steering-committee-grid h4 {
    font-family: "Bitter", serif;
    font-weight: 600;
    padding-top: 34px;
}

.webinar-card-listing .result-card-top p {
    font-family: "Bitter", serif;
}

.webinar-card-listing .steering-committee-grid .result-card-top p {
    font-weight: 400;
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    font-size: 19px;
    padding: 15px 0 29px 0;
    line-height: 29px;
    letter-spacing: 0.19px;
}

.webinar-card-listing .steering-committee-grid .result-card-wraper a {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1.14px;
}

.webinar-carousal .swiper-wrapper .Resources-webinar-profile-inner {
    padding: 17px 17px 29px 17px;
}

.webinar-carousal .swiper-wrapper .Resources-webinar-profile-inner .card-bottom {
    padding: 15px 0 0 0;
}

.webinar-carousal .swiper-wrapper .Resources-webinar-profile-inner .card-bottom h3 {
    margin: 0px;
}

.webinar-carousal .swiper-wrapper .Resources-webinar-profile-inner .card-top img {
    border: 1px solid #bdbdbd;
    border-radius: 8px;
}

.related-content-section-webinar-profile .swiper-wrapper .result-card-top {
    padding: 84px 32px 43px 32px;
    flex: none;
    margin-bottom: auto;
}

.related-content-section-webinar-profile .swiper-wrapper .result-card-top .result-card-title {
    margin-bottom: 12px;
}

.related-content-section-webinar-profile .swiper-wrapper .result-card-top .result-card-tags {
    margin-bottom: 20px;
}

.related-content-section-webinar-profile .swiper-wrapper .drak-blue-bg-color .card-badge {
    background-color: #cce0e6;
}

.related-content-section-webinar-profile .swiper-wrapper .drak-blue-bg-color .result-card-tags span {
    color: #006680;
}

.related-content-section-webinar-profile .swiper-wrapper .drak-blue-bg-color .result-card-separator {
    background-color: #006680;
}

.related-content-section-webinar-profile .swiper-wrapper .light-blue-bg-color .card-badge {
    background-color: #eff4f5;
}

.related-content-section-webinar-profile .swiper-wrapper .light-blue-bg-color .result-card-tags span {
    color: #6496a0;
}

.related-content-section-webinar-profile .swiper-wrapper .light-blue-bg-color .result-card-separator {
    background-color: #6496a0;
}

.related-content-section-webinar-profile .swiper-wrapper .dark-red-bg-color .card-badge {
    background-color: #f5e8e8;
}

.related-content-section-webinar-profile .swiper-wrapper .dark-red-bg-color .result-card-tags span {
    color: #9c1c21;
}

.related-content-section-webinar-profile .swiper-wrapper .dark-red-bg-color .result-card-separator {
    background-color: #9c1c21;
}

/* .related-content-section-webinar-profile {
    padding-top: 0px;
} */

.begenius-profile-card .profile-img-container{
    width: 100%;
    max-width: 302px;
}

.begenius-profile-card .profile-img-container img{
    width:100%;
    aspect-ratio: 1/1 !important;
}

.single-commitee .begenius-profile-card{
    display: flex;
    gap:50px
}

.page-template-disease-commitee .webinar-card-listing .grid-wrapper .result-card figure img{
    border-radius: 20px;
    height: 100%;
}
.page-template-disease-commitee .webinar-card-listing .grid-wrapper .result-card figure{
    border: 1px solid #bdbdbd;
    border-radius: 20px;
}

.page-template-disease-commitee .webinar-card-listing .grid-wrapper .result-card figure picture{
    width: 100%;
    height: 100%;
    display: block;
}

.webinar-card-listing .steering-committee-grid h4{
    padding-top:20px;
}

.page-template-disease-commitee .webinar-card-listing .steering-committee-grid .result-card-top p{
    padding-bottom:5px;
    font-size:12px;
    line-height:1.8;
}

.companion-section .overview-content-inner {
    display: flex;
    gap: 30px;
    flex-direction: column;
    padding-bottom: 40px;
}

.companion-section .overview-content-inner sup {
    font-size: 14px;
}

.companion-section .overview-bottom-content h6 {
    padding: 40px 0;
}

.companion-section .interaction-strength h5 {
    padding-bottom: 13px;
}

.companion-section .interaction-strength ul {
    list-style: none;
    gap: 14px;
    display: flex;
    flex-direction: column;
}

.companion-section .interaction-strength ul li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.companion-section .interaction-strength ul li span {
    padding: 6px 8px;
    font-weight: 500;
    border-radius: 8px;
}

.companion-section .interaction-strength ul li .light-red {
    background-color: #f1ddde;
}

.companion-section .interaction-strength ul li .light-orange {
    background-color: #fcebd9;
    white-space: nowrap;
}

.companion-section .interaction-strength ul li .light-green {
    background-color: #eaf1e1;
}

.companion-section .download-btn-wrapper {
    width: fit-content;
    padding: 40px 0;
}

.companion-section .download-note {
    font-style: italic;
    color: #28334a;
}

.key-takeaways-section {
    padding-bottom: 100px;
}

.key-takeaways-section h2 {
    margin-bottom: 30px;
}

.key-takeaways-section .key-takeaways-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding-left: 20px;
    padding-bottom: 15px;
}

.key-takeaways-section .takeaways-bottom-content h5 {
    padding: 40px 0;
    font-weight: 600;
}

.key-takeaways-section .takeaways-bottom-content ul {
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    list-style-type: number;
}

.key-takeaways-section .takeaways-bottom-content ul li {
    font-style: italic;
}

/* 090526 */
.overflow-hidden {
    overflow: hidden;
}

.molecule-contents .inner-content p {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
    margin-bottom: 15px;
}

.molecule-contents .inner-content p a {
    color: #30383f;
    transition: color 0.3s ease;
}

.molecule-contents .inner-content p a:hover {
    text-shadow: 1px 0 0 currentColor;
}

.molecule-contents .inner-content p a:has(strong):hover {
    text-shadow: none;
}

.molecule-contents sup {
    font-size: 70%;
}

.molecule-contents .inner-content ol,
.molecule-contents .inner-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.molecule-contents .inner-content ol li,
.molecule-contents .inner-content ul li {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
    list-style: disc;
}

.molecule-contents .inner-content ol li+li,
.molecule-contents .inner-content ul li+li {
    margin-top: 8px;
}

.molecule-contents .inner-content:has(.reference-list) .faq-title {
    line-height: 1;
    margin-bottom: 27px;
}

.molecule-contents .inner-content h5 {
    font-size: 20px;
    line-height: 1;
    color: #28334a;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.video-sidebar-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.molecule-contents .video-main {
    flex: 0 0 auto;
    padding-bottom: 56.25%;
    background: #343434;
}

.molecule-contents .video-main video,
.molecule-contents .video-main iframe {
    position: absolute;
    inset: 0;
    display: block;
    height: 100%;
    width: 100%;
}

a.bg-color-B65C62 {
    background-color: #b65c62 !important;
    border: 1px solid #b65c62;
}

a.bg-color-B65C62:hover {
    color: #b65c62 !important;
    background-color: #fff !important;
    border: 1px solid #b65c62;
}

a.bg-color-B65C62:hover span svg path {
    fill: #b65c62;
}

@media (max-width: 1199px) {
    .webinar-card-listing .steering-committee-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .key-takeaways-section {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .key-takeaways-section {
        padding-bottom: 60px;
    }

    .grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .webinar-card-listing .steering-committee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .webinar-card-listing .steering-committee-grid h4 {
        padding-top: 20px;
    }

    .companion-section .overview-content-inner {
        gap: 20px;
        padding-bottom: 30px;
    }

    .companion-section .overview-bottom-content h6,
    .companion-section .download-btn-wrapper,
    .key-takeaways-section .takeaways-bottom-content h5 {
        padding: 30px 0;
    }

    .key-takeaways-section .takeaways-bottom-content ul {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .beGenius-profile .devider {
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }

    .sidebg-img {
        max-width: 210px;
        top: -107px;
    }

    .sidebg-img.sm-size {
        max-width: 200px;
        max-height: 200px;
        top: -90px;
        right: -56px;
    }

    .card-listing {
        padding: 50px 0;
    }

    .grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .webinar-card-listing .grid-wrapper .result-card figure img {
        max-width: 100%;
    }

    .webinar-card-listing.card-listing .result-card-top {
        padding: 18px;
    }

    .webinar-card-listing .grid-wrapper .result-card p {
        padding: 10px 0px;
    }

    .webinar-card-listing .steering-committee-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }

    .molecule-contents .inner-content p {
        font-size: 16px;
    }

    .molecule-contents .inner-content ol li,
    .molecule-contents .inner-content ul li {
        font-size: 16px;
    }

    .disease-wrapper-section {
        padding: 70px 0px;
    }
}

@media (max-width: 575px) {
    .key-takeaways-section {
        padding-bottom: 50px;
    }

    .companion-section .overview-bottom-content h6,
    .companion-section .download-btn-wrapper,
    .key-takeaways-section .takeaways-bottom-content h5 {
        padding: 20px 0;
    }

    .companion-section .overview-content-inner {
        padding-bottom: 20px;
    }

    .key-takeaways-section h2 {
        margin-bottom: 20px;
    }

    .text-title {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .text-title .see-all-btn {
        margin-left: auto;
    }
}

.devider {
    height: 1px;
    background-color: #bdbdbd;
}

.webinar-profile .devider {
    margin: 47px 0;
}

.webinar-profile .companion-title {
    margin-bottom: 0;
}

.profile-video .video-player {
    min-height: 808px;
}

.webinar-carousal .disease-wrapper-section {
    background-color: white;
}

.webinar-carousal .diseaseSwiper .card-bottom {
    padding-top: 12px;
}

.webinar-carousal {
    background-color: white;
    padding-bottom: 93px;
}

.webinar-carousal .devider,
.speaker-section .devider {
    margin-top: 30px;
}

/* Equal height cards */
.swiper-slide {
    height: auto;
}

.result-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.result-card-top {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-card-title {
    flex: 1;
}

/* Speaker Section Styling */
.speaker-section {
    background-color: #fff;
    padding-top: 77px;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.speaker-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.speaker-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.speaker-image .placeholder-img {
    width: 100%;
    height: 250px;
    background-color: #828282;
    border-radius: 12px;
}

.speaker-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-name {
    font-size: 20px;
    font-weight: 600;
    color: #28334a;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: "Bitter", serif;
}

.speaker-desc {
    font-size: 18px;
    color: #28334a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.speaker-link {
    color: #28334a;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.speaker-link img {
    width: 18px;
    transition: transform 0.3s ease;
}

.speaker-link:hover img {
    transform: translateX(5px);
}

/* =============================
    EXPERT DIGEST SECTION
    ============================= */
.expert-digest-section {
    padding: 101px 0 0px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.intro-part {
    margin-bottom: 38px;
}

.intro-heading {
    font-size: 40px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 34px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
    margin-bottom: 15px;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.digest-card {
    display: flex;
    flex-direction: column;
}

.card-img-placeholder {
    aspect-ratio: 1.3 / 1;
    background-color: #707070;
    border-radius: 20px;
    margin-bottom: 34px;
}

.digest-card .card-title {
    font-size: 18px;
    font-weight: 500;
    color: #28334a;
    margin-bottom: 15;
}

.digest-card .card-text {
    font-size: 19px;
    line-height: 1.4;
    color: #28334a;
}

.content-part-expert .text-part {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.content-part-expert .text-part p {
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
    font-family: poppins;
}

.content-part-expert {
    margin-bottom: 97px;
}

@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .intro-heading {
        font-size: 35px;
        line-height: 1.2;
    }

    .intro-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expert-digest-section {
        padding: 70px 0 0px;
    }

    .footer-contact-item:not(:last-child) {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-policy-links a {
        margin-left: 0;
    }

    .footer-contact-item {
        width: 100%;
    }
}

.table-expert .table-text-top p,
.table-expert2 .table-text-top p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 39px;
}

.table-expert .table-bottom p {
    font-size: 14px;
    line-height: 1.4;
    color: #28334a;
    font-family: poppins;
    font-style: italic;
    margin-top: 38px;
}
/* =============================
    References list css
    ============================= */
.reference-list-wrapper h2{
    font-size: 18px;
    line-height: 1.4;
    color: #28334a;
}

/* =============================
    EXPERT DIGEST TABLE
    ============================= */
.table-expert2 {
    margin-top: 85px;
}

.table-expert2 .txt-light {
    font-size: 18px !important;
    font-weight: 400 !important;
    font-family: poppins !important;
    line-height: 1.4;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #ed8b00 #f5f5f5;
    margin-bottom: 20px;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #ed8b00;
    border-radius: 4px;
}

.expert-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
}

.table-expert--wide .expert-table {
    min-width: 900px;
}

.expert-table th,
.expert-table td {
    padding: clamp(12px, 1.5vw, 18px) clamp(15px, 2vw, 22px);
    text-align: left;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.4;
    color: #28334a;
}

.expert-table thead th {
    background-color: #ed8b00;
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 17px);
}

.expert-table thead th:first-child {
    background-color: #e8801d;
}

.expert-table tbody td:first-child {
    background-color: #e8801d;
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(15px, 1.2vw, 17px);
    width: 22%;
}

.expert-table tbody td {
    background-color: #fce8d5;
}

/* beGenius profile */
.beGenius-profile .companion-title {
    margin: 0 !important;
}

.beGenius-profile .devider {
    margin-top: 27px !important;
    margin-bottom: 37px !important;
}

/* BeGenius Profile Card */
.begenius-profile-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.profile-img-container {
    height: auto;
    border: 1px solid #bdbdbd;
    border-radius: 41px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-img-container img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 53 / 30 !important;
    object-fit: contain;
}

@media (max-width: 991px) {
    .begenius-profile-card {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .profile-img-container {
        justify-self: center;
        max-width: 80%;
        width: 100%;
    }

    .begenius-profile-card{
        flex-direction:column;
        gap:30px;
    }
    
    .begenius-profile-card .profile-img-container{
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    .profile-img-container {
        max-width: 100%;
    }
}

.icon-btn {
    box-shadow: none !important;
}

.icon-btn:focus svg {
    box-shadow: 0 0 12px #0cf9 !important;
    border-radius: 20%;
}

.page-id-517 .icon-btn[aria-label="Account"] svg rect {
    fill: #28334a !important;
}

.page-id-517 .icon-btn[aria-label="Account"] svg path {
    fill: #ffffff !important;
    /* White icon */
}

.sidebar-link {
    background-color: white;
    border: 0;
}

.account-tab-content {
    display: none;
}

.account-tab-content.active {
    display: block;
}

.related-contents .result-card-wraper:hover {
    background: #f8f9fa;
}

/* error page style  */
.error-section {
    padding: 84px 0 311px 0;
}

.error-section .hero-title {
    color: #28334a;
    margin-bottom: 19px;
}

.error-section .error-desc {
    font-size: 18px;
    color: #28334a;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 48px;
}

/* search page style */
.search-banner {
    padding: 88px 0;
    position: relative;
    overflow-x: clip;
    background-color: #006680;
}

.banner-shapes {
    right: -90px;
    bottom: -80px;
    max-width: 410px;
    transform: rotate(-30deg);
    opacity: 0.2;
    position: absolute;
}

/* Search Results Specific Styles */
.search-results {
    padding: 60px 0 100px 0;
    background-color: #f4f4f4;
}

.search-form-wrap {
    margin-bottom: 40px;
}

.search-form-label {
    font-size: 14px;
    line-height: 1.25;
    font-family: "Poppins";
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
}

.search-input-boxs {
    min-width: auto;
    width: calc(68% - 32px);
    gap: 12px;
    display: flex;
    flex-flow: column;
    position: relative;
    width: 100%;
}

.search-glass {
    display: flex;
    width: 24px;
    height: 24px;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 20px;
    pointer-events: none;
}

.search-input-boxs input {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #bdbdbd;
    padding: 10px 40px;
    height: auto;
    caret-color: #006680;
    font-size: 18px;
}

.search-input-boxs input:focus {
    border: 1px solid #006680;
}

.search-input-boxs input:focus-visible {
    outline: none;
}

.search-count {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 400;
    color: #28334a;
    font-family: poppins;
}

.sec-head h4 {
    font-size: 20px;
    font-weight: 700;
    color: #28334a;
    font-family: poppins;
}

.sec-head-wrapper a {
    margin: 0;
    padding: 0;
    list-style: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    box-sizing: border-box;
}

.sec-head {
    flex-flow: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    display: flex;
    margin-bottom: 8px;
}

.sec-head .se-go-arrow {
    display: flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
    will-change: transform;
    transform-origin: center;
    color: #006680;
}

.sec-body {
    color: #30383f;
    font-size: 16px;
}

.sec-header .sec-body {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

.sec-body {
    color: #30383f;
    font-size: 16px;
}

.sec-header .sec-body {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

.sec-header {
    padding: 16px;
    border-bottom: 1px solid #bdbdbd;
    gap: 8px;
}

.sec-head-wrapper {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.pagination li a.active {
    color: #fff;
    background: #006680;
    border-color: #006680;
}

.pagination li a {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    list-style: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    box-sizing: border-box;
}

.pagination li a {
    display: inline-block;
    background: #f0eeed;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    color: #000;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.pagination li.page-arrow.disabled a {
    pointer-events: none;
    color: #bdbdbd;
}

.pagination li.page-arrow a {
    border: 0.5px solid transparent;
    color: #006680;
    background-color: transparent;
}

.custom-pagination {
    margin-top: 56px;
}

.molecule-contents .inner-content ol li {
    list-style: auto;
}

.hero-content .inner-content ul li {
    list-style: disc;
}

.sponsored-events-speakers-section .btn-wrapper {
    margin-top: 0 !important;
}

.padding-right-16 {
    padding-right: 16px;
}
.card-listing.graybg {
    background: #f5f5f5
}
.webinar-card-listing .grid-wrapper .result-card span {
    color: #e97600;
    font-weight: 400;
    text-transform: uppercase;
}