[v-cloak] {
    display: none !important;
}

:root {
    --wdo-blue: #0d366d;
    --wdo-button-start: #0d366d;
    --wdo-button-end: #427fc8;
    --wdo-navy: #010a43;
    --wdo-ink: #08090b;
    --wdo-muted: #5d6a78;
    --wdo-line: #d7e4f2;
    --wdo-soft: #ecf4fe;
    --wdo-paper: #ffffff;
}

.wdo-body {
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0, #ecf4fe 38%, #ffffff 100%);
    color: var(--wdo-ink);
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.wdo-portal,
.wdo-portal * {
    box-sizing: border-box;
}

.wdo-portal a {
    color: inherit;
}

.wdo-header-shell {
    min-height: 90px;
}

.wdo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 90px;
    padding: 0 clamp(24px, 4.5vw, 96px);
    border-bottom: 0;
    background: #ffffff;
    box-shadow: none;
    color: var(--wdo-navy);
}

.wdo-brand,
.wdo-nav,
.wdo-actions,
.wdo-socials {
    display: flex;
    align-items: center;
}

.wdo-brand {
    text-decoration: none;
}

.wdo-header-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.wdo-brand img {
    display: block;
    width: 178px;
    max-height: 72px;
    object-fit: contain;
}

.wdo-nav {
    justify-content: center;
    min-width: 0;
    gap: clamp(18px, 2vw, 40px);
}

.wdo-nav-item {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.wdo-nav a,
.wdo-mobile-panel a {
    color: #2f3033;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 35px 0 34px;
    white-space: nowrap;
}

.wdo-nav a i {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.wdo-nav a:hover,
.wdo-nav a.active {
    color: var(--wdo-blue);
}

.wdo-dropdown {
    position: absolute;
    top: calc(100% - 13px);
    left: 50%;
    z-index: 1001;
    display: grid;
    min-width: 230px;
    padding: 12px 0;
    border: 1px solid rgba(13, 54, 109, 0.1);
    background: #fff;
    box-shadow: 0 18px 42px rgba(1, 10, 67, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition:
        opacity 0.16s ease,
        transform 0.16s ease;
}

.wdo-dropdown::before {
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
    content: '';
}

.wdo-dropdown a,
.wdo-mobile-submenu a {
    display: block;
    color: #2f3033;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-dropdown a {
    padding: 12px 22px;
    white-space: nowrap;
}

.wdo-dropdown a:hover,
.wdo-dropdown a:focus {
    background: var(--wdo-soft);
    color: var(--wdo-blue);
}

.wdo-nav-item--dropdown:hover .wdo-dropdown,
.wdo-nav-item--dropdown:focus-within .wdo-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.wdo-actions {
    justify-content: flex-end;
    min-width: max-content;
    gap: 30px;
}

.wdo-member-actions {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: #2f3033;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    white-space: nowrap;
}

.wdo-current-organisation {
    color: #2f3033;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.wdo-current-organisation strong {
    color: var(--wdo-blue);
    font-weight: 600;
}

.wdo-organisation-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.wdo-organisation-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2f3033;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}

.wdo-organisation-trigger strong {
    color: var(--wdo-blue);
    font-weight: 600;
}

.wdo-organisation-trigger i {
    color: var(--wdo-blue);
    font-size: 13px;
}

.wdo-organisation-trigger:hover,
.wdo-organisation-trigger:focus-visible {
    color: var(--wdo-blue);
    outline: 0;
}

.wdo-organisation-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    z-index: 50;
    min-width: 260px;
    padding: 10px;
    border: 1px solid rgba(13, 47, 94, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(13, 47, 94, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.wdo-organisation-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
}

.wdo-organisation-menu:hover .wdo-organisation-dropdown,
.wdo-organisation-menu:focus-within .wdo-organisation-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.wdo-organisation-dropdown a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    border-radius: 6px;
    color: #4c4f55;
    font-size: 13px;
    line-height: 1.25;
    text-align: left;
    text-decoration: none;
    transition: background 0.16s ease, color 0.16s ease;
}

.wdo-organisation-dropdown a:hover,
.wdo-organisation-dropdown a:focus-visible {
    background: rgba(32, 104, 179, 0.08);
    color: var(--wdo-blue);
    outline: 0;
}

.wdo-organisation-dropdown a strong {
    color: var(--wdo-blue);
    font-weight: 700;
}

.wdo-organisation-dropdown a span {
    color: #5f6671;
    font-weight: 500;
}

.wdo-organisation-dropdown a.current {
    background: rgba(32, 104, 179, 0.08);
}

.wdo-account-trigger {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2f3033;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}

.wdo-account-trigger:hover,
.wdo-account-trigger:focus-visible {
    color: var(--wdo-blue);
    outline: 0;
}

.wdo-notification-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #2f3033;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
}

.wdo-notification-link:hover,
.wdo-notification-link:focus-visible {
    color: var(--wdo-blue);
    outline: 0;
}

.wdo-calendar-link {
    font-size: 22px;
}

.wdo-header-calendar-popper.el-popper {
    padding: 0;
    border: 1px solid var(--wdo-line);
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(1, 10, 67, 0.14);
}

.wdo-header-calendar__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    border-bottom: 1px solid var(--wdo-line);
    color: var(--wdo-ink);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
}

.wdo-header-calendar__heading strong {
    font-weight: 700;
}

.wdo-header-calendar__heading a {
    color: var(--wdo-blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.wdo-header-calendar .el-calendar {
    border: 0;
}

.wdo-header-calendar .el-calendar__header {
    padding: 10px 14px;
}

.wdo-header-calendar__navigation {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    color: var(--wdo-ink);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

.wdo-header-calendar__navigation strong {
    font-size: 13px;
    font-weight: 700;
}

.wdo-header-calendar__navigation button {
    display: grid;
    width: 32px;
    height: 28px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--wdo-blue);
    cursor: pointer;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.wdo-header-calendar__navigation button:hover,
.wdo-header-calendar__navigation button:focus-visible {
    background: #ecf4fe;
    outline: 0;
}

.wdo-header-calendar .el-calendar-table .el-calendar-day {
    height: 35px;
    padding: 0;
}

.wdo-header-calendar-day {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--wdo-ink);
    font-size: 12px;
}

.wdo-header-calendar-day i {
    position: absolute;
    bottom: 3px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #ff1f28;
}
}

.wdo-notification-badge {
    position: absolute;
    top: 2px;
    right: -3px;
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #ff1f28;
    color: #ffffff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    transform: translate(0, -35%);
}

.wdo-account-popper .el-dropdown-menu__item {
    min-height: 38px;
    padding: 0 18px;
    color: #17214a;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 38px;
}

.wdo-account-popper.el-popper {
    z-index: 1002 !important;
    overflow: visible !important;
    border: 1px solid rgba(13, 54, 109, 0.08);
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(1, 10, 67, 0.14);
}

.wdo-account-popper .el-scrollbar,
.wdo-account-popper .el-scrollbar__wrap,
.wdo-account-popper .el-scrollbar__view {
    overflow: visible !important;
}

.wdo-account-popper .el-popper__arrow {
    display: none;
}

.wdo-account-popper .el-dropdown-menu {
    min-width: 198px;
    overflow: visible;
    padding: 10px 0;
    border-radius: 0;
}

.wdo-account-popper .el-dropdown-menu__item:not(.is-disabled):focus,
.wdo-account-popper .el-dropdown-menu__item:not(.is-disabled):hover {
    background: var(--wdo-soft);
    color: var(--wdo-blue);
}

.wdo-account-popper .el-dropdown-menu__item--divided {
    margin-top: 8px;
    border-top-color: rgba(13, 54, 109, 0.1);
}

.wdo-account-popper .el-dropdown-menu__item--divided::before {
    height: 8px;
    background: #ffffff;
}

.wdo-account-popper .wdo-account-submenu {
    position: relative;
    overflow: visible;
    padding: 0;
}

.wdo-account-popper .wdo-account-submenu-trigger {
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 18px;
    line-height: 38px;
    white-space: nowrap;
}

.wdo-account-popper .wdo-account-submenu-panel {
    position: absolute;
    top: -10px;
    right: 100%;
    z-index: 1003;
    display: none;
    min-width: 260px;
    max-height: min(420px, 70vh);
    overflow-y: auto;
    padding: 10px 0;
    border: 1px solid rgba(13, 54, 109, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(1, 10, 67, 0.14);
}

.wdo-account-popper .wdo-account-submenu:hover .wdo-account-submenu-panel,
.wdo-account-popper .wdo-account-submenu:focus-within .wdo-account-submenu-panel {
    display: block;
}

.wdo-account-popper .wdo-account-submenu-panel a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 18px;
    color: #17214a;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    text-decoration: none;
}

.wdo-account-popper .wdo-account-submenu-panel a:hover,
.wdo-account-popper .wdo-account-submenu-panel a:focus-visible {
    background: var(--wdo-soft);
    color: var(--wdo-blue);
    outline: none;
}

.wdo-account-popper .wdo-account-submenu-panel a.current {
    background: rgba(13, 54, 109, 0.08);
}

.wdo-account-popper .wdo-account-submenu-panel strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.wdo-account-popper .wdo-account-submenu-panel span {
    color: #63708d;
    font-size: 12px;
    line-height: 1.35;
}

.wdo-link {
    color: var(--wdo-blue);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-socials {
    gap: 24px;
}

.wdo-socials a {
    position: relative;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    line-height: 1;
    text-decoration: none;
}

.wdo-socials a svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wdo-social--instagram {
    overflow: hidden;
}

.wdo-social--youtube {
    overflow: hidden;
}

.wdo-button,
.wdo-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 34px;
    border: 1px solid var(--wdo-blue);
    background: linear-gradient(90deg, var(--wdo-button-start) 0%, var(--wdo-button-end) 100%);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.wdo-portal .wdo-button {
    color: #fff;
}

.wdo-actions > .wdo-button {
    min-width: 146px;
    min-height: 43px;
    padding: 0 17px;
    border-color: transparent;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.wdo-button:hover {
    background: linear-gradient(90deg, #082954 0%, #2f6fb5 100%);
    border-color: var(--wdo-navy);
}

.wdo-button--light {
    min-height: 40px;
    padding: 0 22px;
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(90deg, var(--wdo-button-start) 0%, var(--wdo-button-end) 100%);
    font-size: 10px;
    letter-spacing: 0.16em;
}

.wdo-outline-button {
    min-width: 216px;
    min-height: 54px;
    border-color: var(--wdo-blue);
    background: transparent;
    color: var(--wdo-blue);
    font-size: 14px;
}

.wdo-button::after,
.wdo-outline-button::after {
    content: '\2192';
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

.wdo-menu-button {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(1, 69, 140, 0.18);
    background: transparent;
    cursor: pointer;
}

.wdo-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--wdo-blue);
}

.wdo-home-hero {
    min-height: clamp(310px, 25.4vw, 488px);
    background:
        linear-gradient(90deg, rgba(1, 10, 67, 0.62) 0%, rgba(9, 83, 176, 0.17) 52%, rgba(255, 255, 255, 0.06) 100%),
        url('/images/wdo-design/1be422df08ffd20f360c5ff480ecf2b4844f5c48.jpg') center / cover no-repeat,
        #0b3d78;
    color: #fff;
}

.wdo-home-hero__inner {
    display: grid;
    align-content: center;
    justify-items: start;
    min-height: inherit;
    width: min(1220px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(40px, 7vw, 92px) 0;
}

.wdo-home-hero p {
    margin: 0 0 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wdo-home-hero h1 {
    margin: 0 0 28px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(48px, 6.8vw, 92px);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}

.wdo-section {
    width: min(1220px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(50px, 6.7vw, 94px) 0 0;
}

.wdo-section-head {
    margin-bottom: 33px;
    text-align: center;
}

.wdo-section-head h2,
.wdo-side-head h2,
.wdo-page-hero h1 {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.wdo-section-head h2,
.wdo-side-head h2 {
    color: var(--wdo-blue);
}

.wdo-page-hero h1 {
    color: #232323;
}

.wdo-section-head p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--wdo-muted);
    font-size: 13px;
    line-height: 1.6;
}

.wdo-section-head > strong {
    display: block;
    margin: 28px auto 0;
    color: #08090b;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
}

.wdo-section-kicker {
    position: relative;
    margin: 0 0 14px;
    padding-left: 42px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.wdo-section-kicker::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--wdo-blue);
    content: '';
}

.wdo-vision {
    display: grid;
    grid-template-columns: 365px minmax(0, 1fr);
    gap: 45px;
    align-items: start;
}

.wdo-vision__image {
    min-height: 540px;
    background:
        url('/images/wdo-design/825644bd719bf1708c78bbfbbdd496dbfccef83b.png') center / cover no-repeat,
        #dcecff;
}

.wdo-vision-title {
    position: relative;
    margin: 6px 0 24px;
    padding-left: 48px;
    color: var(--wdo-blue);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(38px, 4.4vw, 54px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.wdo-vision-title::before {
    position: absolute;
    top: 0.48em;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--wdo-blue);
    content: '';
}

.wdo-vision-lead {
    max-width: 720px;
    margin: 0 0 36px;
    color: #344050;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.wdo-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 54px;
    margin-bottom: 54px;
}

.wdo-check-grid span {
    position: relative;
    padding-left: 32px;
    color: #1c2736;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.wdo-check-grid span::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    border: 2px solid #4a91de;
    border-radius: 50%;
    color: #4a91de;
    content: '✓';
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.wdo-statement-grid,
.wdo-news-grid,
.wdo-groups-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.wdo-statement-grid article,
.wdo-news-grid article,
.wdo-groups-grid article,
.wdo-membership-card {
    border: 1px solid var(--wdo-line);
    background: #fff;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.wdo-statement-grid article,
.wdo-news-grid article {
    min-height: 190px;
    padding: 30px 34px;
}

.wdo-statement-grid .is-blue,
.wdo-statement-grid article:hover,
.wdo-statement-grid article:focus-within,
.wdo-news-grid .is-blue,
.wdo-news-grid article:hover,
.wdo-news-grid article:focus-within,
.wdo-groups-grid .is-blue,
.wdo-groups-grid article:hover,
.wdo-groups-grid article:focus-within,
.wdo-membership-card.is-active,
.wdo-membership-card:hover,
.wdo-membership-card:focus-within,
.wdo-event-row:hover,
.wdo-event-row:focus-within,
.wdo-allocation-row.is-active,
.wdo-allocation-row:hover,
.wdo-allocation-row:focus-within {
    border-color: var(--wdo-blue);
    background: var(--wdo-blue);
    color: #fff;
}

.wdo-statement-grid h3,
.wdo-news-grid h3,
.wdo-groups-grid h3,
.wdo-membership-card h3,
.wdo-allocation-row h3 {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.wdo-statement-grid p,
.wdo-news-grid p,
.wdo-groups-grid p,
.wdo-membership-card p,
.wdo-allocation-row p {
    margin: 12px 0 0;
    color: var(--wdo-muted);
    font-size: 12px;
    line-height: 1.6;
}

.wdo-statement-grid h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--wdo-blue);
    font-size: clamp(32px, 3.1vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wdo-statement-grid h3::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 58px;
    height: 3px;
    background: var(--wdo-blue);
    content: '';
}

.wdo-statement-grid .is-blue h3,
.wdo-statement-grid article:hover h3,
.wdo-statement-grid article:focus-within h3 {
    color: #fff;
}

.wdo-statement-grid .is-blue h3::after,
.wdo-statement-grid article:hover h3::after,
.wdo-statement-grid article:focus-within h3::after {
    background: #fff;
}

.wdo-statement-grid p {
    margin-top: 22px;
    color: #263241;
    font-size: 13px;
    line-height: 1.5;
}

.wdo-statement-grid .is-blue p {
    color: rgba(255, 255, 255, 0.96);
}

.wdo-statement-grid .is-blue p,
.wdo-statement-grid article:hover p,
.wdo-statement-grid article:focus-within p,
.wdo-news-grid .is-blue p,
.wdo-news-grid article:hover p,
.wdo-news-grid article:focus-within p,
.wdo-groups-grid .is-blue p,
.wdo-groups-grid article:hover p,
.wdo-groups-grid article:focus-within p,
.wdo-membership-card.is-active p,
.wdo-membership-card:hover p,
.wdo-membership-card:focus-within p,
.wdo-membership-card:hover li,
.wdo-membership-card:focus-within li,
.wdo-allocation-row.is-active p,
.wdo-allocation-row:hover p,
.wdo-allocation-row:focus-within p {
    color: rgba(255, 255, 255, 0.82);
}

.wdo-membership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.wdo-membership-card {
    min-height: 238px;
    padding: 32px;
}

.wdo-membership-card ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.wdo-membership-card li {
    position: relative;
    padding-left: 28px;
    color: var(--wdo-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.wdo-membership-card li::before {
    position: absolute;
    top: -1px;
    left: 0;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--wdo-blue);
    content: '✓';
    font-size: 10px;
}

.wdo-membership-card.is-active li {
    color: rgba(255, 255, 255, 0.92);
}

.wdo-membership-card.is-active li::before,
.wdo-membership-card:hover li::before,
.wdo-membership-card:focus-within li::before {
    color: #fff;
}

.wdo-card-icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: #e4f1ff;
    color: var(--wdo-blue);
    font-size: 12px;
    font-weight: 700;
}

.wdo-card-icon::before {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    content: '';
}

.wdo-membership-card.is-active .wdo-card-icon,
.wdo-membership-card:hover .wdo-card-icon,
.wdo-membership-card:focus-within .wdo-card-icon,
.wdo-statement-grid .is-blue .wdo-card-icon,
.wdo-news-grid .is-blue .wdo-card-icon,
.wdo-groups-grid .is-blue .wdo-card-icon,
.wdo-groups-grid article:hover .wdo-card-icon,
.wdo-groups-grid article:focus-within .wdo-card-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.wdo-membership-card a,
.wdo-news-grid a {
    display: inline-block;
    margin-top: 16px;
    color: var(--wdo-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-membership-card a::after {
    margin-left: 8px;
    content: '→';
    font-size: 13px;
}

.wdo-news-grid a {
    min-width: 112px;
    padding: 10px 14px;
    border: 1px solid currentColor;
    text-align: center;
}

.wdo-news-grid a::after {
    margin-left: 8px;
    content: '→';
}

.wdo-membership-card.is-active a,
.wdo-membership-card:hover a,
.wdo-membership-card:focus-within a,
.wdo-news-grid .is-blue a,
.wdo-news-grid article:hover a,
.wdo-news-grid article:focus-within a {
    color: #fff;
}

.wdo-centered-action {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.wdo-events-strip {
    width: min(1220px, calc(100% - 64px));
}

.wdo-event-list {
    border: 1px solid var(--wdo-line);
}

.wdo-event-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 70px 120px 178px 34px;
    align-items: center;
    min-height: 70px;
    padding: 0 24px;
    border-bottom: 1px solid var(--wdo-line);
    background: #f8fbff;
    color: #243142;
    text-decoration: none;
    position: relative;
}

.wdo-event-row[data-href] {
    cursor: pointer;
}

.wdo-event-row:last-child {
    border-bottom: 0;
}

.wdo-event-row .fi {
    display: block;
    width: 44px;
    height: 30px;
    line-height: 30px;
}

.wdo-event-row strong {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
}

.wdo-event-row strong a {
    color: inherit;
    text-decoration: none;
}

.wdo-event-row strong a:hover,
.wdo-event-row strong a:focus {
    color: var(--wdo-blue);
}

.wdo-event-row span {
    color: inherit;
    font-size: 11px;
}

.wdo-event-row small {
    color: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.wdo-event-row em {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid currentColor;
    font-style: normal;
    line-height: 1;
}

.wdo-calendar-menu {
    position: relative;
    justify-self: end;
}

.wdo-calendar-menu::after {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    width: 220px;
    height: 10px;
}

.wdo-calendar-toggle {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

.wdo-calendar-toggle:hover,
.wdo-calendar-toggle:focus {
    color: var(--wdo-blue);
    outline: none;
}

.wdo-calendar-toggle:focus-visible {
    outline: 2px solid var(--wdo-blue);
    outline-offset: 3px;
}

.wdo-calendar-options {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10;
    display: none;
    min-width: 220px;
    padding: 8px;
    border: 1px solid var(--wdo-line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 39, 73, 0.14);
}

.wdo-calendar-menu:hover .wdo-calendar-options,
.wdo-calendar-menu:focus-within .wdo-calendar-options,
.wdo-calendar-menu.is-open .wdo-calendar-options {
    display: grid;
}

.wdo-calendar-options a {
    display: block;
    padding: 12px 14px;
    color: #0f1828;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
}

.wdo-calendar-options a:hover,
.wdo-calendar-options a:focus {
    color: var(--wdo-blue);
    outline: 2px solid #101828;
    outline-offset: -2px;
}

.wdo-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wdo-side-head a {
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-slider-mark {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.wdo-slider-mark span {
    width: 34px;
    height: 4px;
    background: linear-gradient(90deg, var(--wdo-blue) 45%, #d7e4f2 45%);
}

.wdo-allocation-list {
    display: grid;
    gap: 14px;
}

.wdo-allocation-row {
    display: grid;
    grid-template-columns: 78px 220px minmax(0, 1fr) 210px;
    align-items: center;
    min-height: 128px;
    padding: 22px 28px;
    border: 1px solid var(--wdo-line);
    background: #f7fbff;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.wdo-allocation-row > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #b7d2ef;
    border-radius: 50%;
    color: var(--wdo-blue);
    font-weight: 700;
}

.wdo-allocation-row.is-active > span,
.wdo-allocation-row:hover > span,
.wdo-allocation-row:focus-within > span {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.wdo-allocation-row img {
    width: 182px;
    height: 86px;
    justify-self: end;
    object-fit: cover;
}

.wdo-allocation-row p strong {
    color: inherit;
    font-weight: 700;
}

.wdo-groups-grid article {
    min-height: 150px;
    padding: 28px;
}

.wdo-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.wdo-video-grid article {
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-video-grid p {
    margin: 0;
    padding: 4px 34px 24px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
}

.wdo-video-grid small {
    display: block;
    padding: 22px 34px 0;
    color: #5d6674;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
}

.wdo-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 0;
    background: #dcecff;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.wdo-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wdo-video-thumb span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 24px;
    border-radius: 7px;
    background: #ff3030;
    transform: translate(-50%, -50%);
}

.wdo-video-thumb span::after {
    position: absolute;
    display: block;
    top: 7px;
    left: 13px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    content: '';
}

.wdo-video-thumb em {
    position: absolute;
    top: 16px;
    left: 22px;
    z-index: 1;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
}

.wdo-media-section {
    padding-bottom: 72px;
}

.wdo-media-section nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 18px;
}

.wdo-media-section nav a {
    color: #5f6f82;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wdo-media-grid a {
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    background: #dcecff;
}

.wdo-media-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wdo-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1.55fr) repeat(4, minmax(140px, 1fr));
    gap: clamp(28px, 4.2vw, 72px);
    padding: 64px clamp(24px, 7.6vw, 146px) 0;
    overflow: hidden;
    background: linear-gradient(90deg, #001043 0%, #074baa 100%);
    color: #fff;
}

.wdo-footer::before {
    position: absolute;
    inset: 0;
    background: url('/images/wdo-design/0ec874434a2a766196a889019b5d6059ba854dd7.png') center 40px / min(720px, 72vw)
        auto no-repeat;
    content: '';
    opacity: 0.18;
    pointer-events: none;
}

.wdo-footer > * {
    position: relative;
    z-index: 1;
}

.wdo-footer img {
    width: 112px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.wdo-footer p,
.wdo-footer span,
.wdo-footer a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    line-height: 1.65;
    text-decoration: none;
}

.wdo-footer-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.wdo-footer .wdo-socials {
    display: flex;
}

.wdo-footer .wdo-socials a {
    color: #fff;
}

.wdo-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.wdo-footer nav,
.wdo-footer__brand {
    display: grid;
    align-content: start;
    gap: 7px;
}

.wdo-footer-bottom {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.wdo-footer-bottom nav {
    display: flex;
    gap: 24px;
}

.wdo-footer-bottom span,
.wdo-footer-bottom a {
    font-size: 10px;
}

.wdo-page-hero {
    min-height: 300px;
    padding: clamp(54px, 8vw, 118px) clamp(24px, 7vw, 110px);
    background:
        linear-gradient(90deg, rgba(0, 9, 72, 0.82), rgba(1, 69, 140, 0.25)),
        linear-gradient(150deg, #376c9a 0%, #ccefff 45%, #07356c 100%);
    color: #fff;
}

.wdo-page-hero.compact {
    display: block;
    min-height: 230px;
}

.wdo-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-page-hero h1 {
    color: #fff;
}

.wdo-rich-band,
.wdo-feature-grid,
.wdo-events-preview,
.wdo-contact-grid,
.wdo-gallery,
.wdo-music-section,
.wdo-events-app {
    width: min(1080px, calc(100% - 48px));
    margin: 48px auto;
}

.wdo-rich-band {
    padding: 32px;
    border: 1px solid var(--wdo-line);
    background: #fff;
    color: #3c4652;
    line-height: 1.8;
}

.wdo-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wdo-feature-grid article,
.wdo-events-preview {
    padding: 28px;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-feature-grid span {
    color: var(--wdo-blue);
    font-size: 12px;
    font-weight: 700;
}

.wdo-feature-grid h2 {
    margin: 24px 0 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 28px;
}

.wdo-feature-grid p {
    color: var(--wdo-muted);
    line-height: 1.7;
}

.wdo-document-hero {
    background:
        linear-gradient(90deg, rgba(0, 9, 72, 0.84), rgba(13, 54, 109, 0.34)),
        url('/images/wdo-design/98b15e4c39462ad7403949f3437f30c760a21d3f.jpg') center / cover no-repeat,
        #07356c;
}

.wdo-document-hero__copy {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.65;
}

.wdo-document-shell {
    display: grid;
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    gap: 28px;
    width: min(1120px, calc(100% - 48px));
    margin: 54px auto 78px;
    align-items: start;
}

.wdo-document-summary,
.wdo-document-content {
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-document-summary {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 14px;
    padding: 28px;
}

.wdo-document-summary span,
.wdo-document-content > header span {
    color: var(--wdo-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wdo-document-summary h2,
.wdo-document-content > header h2 {
    margin: 0;
    color: #232323;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.wdo-document-summary p,
.wdo-document-content > header p {
    margin: 0;
    color: var(--wdo-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wdo-document-download {
    display: inline-flex;
    width: max-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 0 18px;
    border: 1px solid var(--wdo-blue);
    background: var(--wdo-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-portal .wdo-document-download {
    color: #fff;
}

.wdo-document-download::after {
    margin-left: 10px;
    content: '\2192';
    font-size: 14px;
    letter-spacing: 0;
}

.wdo-document-download:hover {
    background: #337fcf;
}

.wdo-document-content {
    padding: 32px;
}

.wdo-document-content > header {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.wdo-document-accordion {
    display: grid;
    gap: 12px;
}

.wdo-document-accordion details {
    border: 1px solid var(--wdo-line);
    background: #f8fbff;
}

.wdo-document-accordion summary {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 66px;
    padding: 0 20px;
    color: #232323;
    cursor: pointer;
    list-style: none;
}

.wdo-document-accordion summary::-webkit-details-marker {
    display: none;
}

.wdo-document-accordion summary::after {
    grid-column: 3;
    content: '+';
    color: var(--wdo-blue);
    font-size: 24px;
    line-height: 1;
}

.wdo-document-accordion details[open] summary::after {
    content: '-';
}

.wdo-document-accordion summary span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--wdo-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.wdo-document-accordion summary strong {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.wdo-document-accordion details[open] {
    background: #fff;
}

.wdo-document-accordion p {
    margin: 0;
    padding: 0 72px 24px 90px;
    color: var(--wdo-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wdo-rules-content {
    min-width: 0;
}

.wdo-rules-accordion {
    display: grid;
    gap: 12px;
}

.wdo-rules-item {
    border: 1px solid var(--wdo-line);
    background: #f8fbff;
}

.wdo-rules-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 66px;
    padding: 0 20px;
    color: #232323;
    cursor: pointer;
    list-style: none;
}

.wdo-rules-item summary::-webkit-details-marker {
    display: none;
}

.wdo-rules-item summary::after {
    content: '+';
    color: var(--wdo-blue);
    font-size: 24px;
    line-height: 1;
}

.wdo-rules-item[open] summary::after {
    content: '-';
}

.wdo-rules-item summary strong {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.wdo-rules-item[open] {
    background: #fff;
}

.wdo-rules-panel {
    padding: 0 24px 24px;
    color: var(--wdo-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wdo-rules-panel p {
    margin: 0 0 14px;
}

.wdo-rules-panel ol,
.wdo-rules-panel ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.wdo-rules-panel li {
    margin-bottom: 8px;
}

.wdo-rules-panel img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wdo-rules-panel table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.wdo-rules-divider {
    margin: 34px 0 22px;
    color: #232323;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.wdo-ranking-shell .wdo-document-summary {
    gap: 12px;
}

.wdo-ranking-mail {
    color: var(--wdo-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-ranking-mail:hover {
    color: #337fcf;
}

.wdo-ranking-number-list {
    display: grid;
    gap: 10px;
    list-style: decimal;
    list-style-position: outside;
    margin: 0;
    padding: 0 72px 24px 48px;
    color: var(--wdo-muted);
    font-size: 14px;
    line-height: 1.65;
}

.wdo-ranking-number-list li {
    display: list-item;
    padding-left: 4px;
}

.wdo-ranking-number-list li::marker {
    content: counter(list-item) ". ";
    color: var(--wdo-blue);
    font-weight: 700;
}

.wdo-ranking-accordion summary {
    grid-template-columns: minmax(0, 1fr) auto;
}

.wdo-ranking-accordion summary::after {
    grid-column: 2;
}

.wdo-ranking-table-wrap {
    overflow-x: auto;
    padding: 0 24px 24px 90px;
}

.wdo-ranking-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #fff;
}

.wdo-ranking-table th,
.wdo-ranking-table td {
    padding: 14px 16px;
    border: 1px solid var(--wdo-line);
    text-align: center;
}

.wdo-ranking-table th {
    background: var(--wdo-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wdo-ranking-table td {
    color: #3c4652;
    font-size: 14px;
    font-weight: 600;
}

.wdo-ranking-table td:first-child {
    color: var(--wdo-blue);
    font-weight: 700;
}

.wdo-ranking-award .wdo-document-download {
    margin-left: 90px;
}

.wdo-world-title-hero__copy {
    max-width: 760px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
}

.wdo-world-title-shell {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 28px;
    width: min(1180px, calc(100% - 40px));
    margin: 42px auto 72px;
    align-items: start;
}

.wdo-world-title-summary {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--wdo-line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(22, 53, 88, 0.08);
    min-width: 0;
    overflow-wrap: anywhere;
}

.wdo-world-title-summary > span,
.wdo-world-title-content > header > span {
    color: var(--wdo-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wdo-world-title-summary h2,
.wdo-world-title-content h2 {
    margin: 0;
    color: var(--wdo-ink);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.wdo-world-title-summary .wdo-document-download {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
}

.wdo-world-title-summary .wdo-ranking-mail {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wdo-world-title-summary p,
.wdo-world-title-content > header p {
    margin: 0;
    color: var(--wdo-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wdo-world-title-content {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.wdo-world-title-content > header {
    display: grid;
    gap: 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--wdo-line);
}

.wdo-world-title-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wdo-world-title-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--wdo-line);
    background: #fff;
    min-width: 0;
    overflow-wrap: anywhere;
}

.wdo-world-title-card > div {
    display: flex;
    justify-content: flex-end;
}

.wdo-world-title-card > div span,
.wdo-world-title-list article span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    background: #eaf8ef;
    color: #168344;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wdo-world-title-card h3,
.wdo-world-title-list h3 {
    margin: 0;
    color: var(--wdo-ink);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.25;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.wdo-world-title-card dl {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px 14px;
    margin: 0;
}

.wdo-world-title-card dt {
    color: var(--wdo-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wdo-world-title-card dd {
    margin: 0;
    color: #3c4652;
    font-size: 14px;
    line-height: 1.45;
    min-width: 0;
    overflow-wrap: anywhere;
}

.wdo-world-title-card dd a {
    color: var(--wdo-blue);
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.wdo-world-title-available {
    display: grid;
    gap: 18px;
    margin-top: 12px;
}

.wdo-world-title-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wdo-world-title-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 78px;
    padding: 18px;
    border: 1px solid var(--wdo-line);
    background: #f8fbff;
    min-width: 0;
}

.wdo-world-title-list h3 {
    font-size: 15px;
}

.wdo-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
    align-items: start;
}

.wdo-contact-card {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: var(--wdo-blue);
    color: #fff;
}

.wdo-contact-grid > .wdo-rich-band {
    width: auto;
    margin: 0;
}

.wdo-contact-card form {
    display: grid;
    gap: 16px;
}

.wdo-contact-card label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-contact-card input,
.wdo-contact-card textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: #fff;
    color: var(--wdo-ink);
    font: inherit;
    padding: 12px;
}

.wdo-contact-card button,
.wdo-contact-submit {
    min-height: 42px;
    border: 0;
    background: #fff;
    color: var(--wdo-blue);
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.wdo-contact-card .message-error,
.wdo-contact-card .field-validation-error,
.wdo-contact-result {
    color: #fff;
    font-weight: 700;
}

.wdo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.wdo-gallery-card {
    padding: 18px;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-gallery-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--wdo-navy);
}

.wdo-gallery-card h2 {
    margin: 16px 0 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
}

.wdo-music-section {
    display: grid;
    gap: 18px;
}

.wdo-music-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: 14px;
    align-items: end;
}

.wdo-music-toolbar label {
    display: grid;
    gap: 8px;
}

.wdo-music-toolbar span {
    color: var(--wdo-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-music-toolbar input,
.wdo-music-toolbar select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--wdo-line);
    background: #fff;
    color: var(--wdo-ink);
    font: inherit;
    padding: 10px 12px;
}

.wdo-music-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-music-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.wdo-music-table th,
.wdo-music-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--wdo-line);
    text-align: left;
    vertical-align: top;
}

.wdo-music-table th {
    background: var(--wdo-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-music-table td {
    color: #3c4652;
    font-size: 14px;
    line-height: 1.45;
}

.wdo-music-table td:first-child,
.wdo-music-table td:nth-child(4) {
    color: var(--wdo-blue);
    font-weight: 700;
}

.wdo-music-table strong {
    color: var(--wdo-ink);
    font-weight: 700;
}

.wdo-music-listen {
    display: inline-flex;
    align-items: center;
    border: 0;
    min-height: 34px;
    padding: 0 14px;
    background: var(--wdo-blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.wdo-music-listen:hover,
.wdo-music-listen:focus {
    background: #337fcf;
}

.wdo-empty-link {
    color: var(--wdo-muted);
}

.wdo-music-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    place-items: center;
    padding: 24px;
}

.wdo-music-modal.open {
    display: grid;
}

.wdo-music-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 10, 67, 0.72);
}

.wdo-music-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    box-shadow: 0 24px 70px rgba(1, 10, 67, 0.35);
}

.wdo-music-modal__dialog h2 {
    margin: 0;
    padding: 18px 62px 18px 22px;
    color: var(--wdo-blue);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 26px;
}

.wdo-music-modal__dialog iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: var(--wdo-navy);
}

.wdo-music-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--wdo-line);
    background: #fff;
    color: var(--wdo-blue);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.wdo-event-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.wdo-event-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
}

.wdo-event-layout .el-calendar {
    border: 1px solid var(--wdo-line);
}

.wdo-event-layout .el-calendar-table .el-calendar-day {
    min-height: 114px;
    height: auto;
    padding: 0;
}

.wdo-calendar-day {
    display: grid;
    align-content: start;
    gap: 5px;
    width: 100%;
    min-height: 114px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: var(--wdo-ink);
    text-align: left;
}

.wdo-calendar-day strong {
    overflow: hidden;
    padding: 3px 6px;
    background: var(--wdo-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wdo-calendar-day em {
    color: var(--wdo-blue);
    font-size: 11px;
    font-style: normal;
}

.wdo-event-panel {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 20px;
    background: var(--wdo-blue);
    color: #fff;
}

.wdo-event-panel h2,
.wdo-event-panel h3 {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
}

.wdo-event-panel article {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.wdo-event-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.wdo-event-panel a {
    color: #fff;
    font-weight: 700;
}

.wdo-directory-hero {
    background:
        linear-gradient(90deg, rgba(0, 9, 72, 0.86), rgba(9, 83, 176, 0.3)),
        url('/images/wdo-design/98b15e4c39462ad7403949f3437f30c760a21d3f.jpg') center / cover no-repeat,
        #07356c;
}

.wdo-directory-hero__copy {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.wdo-directory-shell {
    width: min(1120px, calc(100% - 48px));
    margin: 54px auto 78px;
}

.wdo-directory-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 28px;
}

.wdo-directory-intro h2 {
    margin: 0;
    color: #232323;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.wdo-directory-intro p {
    margin: 0;
    color: var(--wdo-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wdo-directory-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-directory-search label {
    display: grid;
    gap: 8px;
}

.wdo-directory-search span,
.wdo-directory-status,
.wdo-directory-pager {
    color: var(--wdo-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wdo-directory-search input {
    width: 100%;
    min-height: 54px;
    border: 1px solid #c9d9eb;
    background: #f8fbff;
    color: var(--wdo-ink);
    font: inherit;
    padding: 0 16px;
}

.wdo-directory-search input:focus {
    border-color: var(--wdo-blue);
    box-shadow: 0 0 0 3px rgba(13, 54, 109, 0.1);
    outline: 0;
}

.wdo-directory-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.wdo-directory-categories button,
.wdo-directory-member > button,
.wdo-directory-status button,
.wdo-directory-pager button,
.wdo-directory-card__tools button {
    border: 1px solid var(--wdo-line);
    background: #fff;
    color: var(--wdo-blue);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.wdo-directory-categories button {
    min-height: 38px;
    padding: 0 15px;
    font-size: 12px;
}

.wdo-directory-categories button.is-active,
.wdo-directory-categories button:hover,
.wdo-directory-member > button:hover,
.wdo-directory-status button:hover,
.wdo-directory-pager button:hover:not(:disabled) {
    border-color: var(--wdo-blue);
    background: var(--wdo-blue);
    color: #fff;
}

.wdo-directory-status,
.wdo-directory-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0;
}

.wdo-directory-status button,
.wdo-directory-pager button {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
    text-transform: uppercase;
}

.wdo-directory-results {
    display: grid;
    gap: 12px;
}

.wdo-directory-member {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 92px 112px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-directory-member img {
    width: 66px;
    height: 66px;
    object-fit: cover;
}

.wdo-directory-member h3 {
    margin: 0;
    color: #232323;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.wdo-directory-member p {
    margin: 4px 0 0;
    color: var(--wdo-muted);
    font-size: 12px;
}

.wdo-directory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.wdo-directory-tags span {
    padding: 4px 8px;
    background: var(--wdo-soft);
    color: var(--wdo-blue);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-directory-member strong {
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
}

.wdo-directory-member strong.is-active {
    color: #0d7f46;
}

.wdo-directory-member strong.is-inactive {
    color: #c93a42;
}

.wdo-directory-member > button {
    min-height: 42px;
    font-size: 11px;
    text-transform: uppercase;
}

.wdo-directory-empty {
    display: grid;
    min-height: 220px;
    place-items: center;
    border: 1px dashed #b7d2ef;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.wdo-directory-empty h3 {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 30px;
}

.wdo-directory-empty p {
    margin: 8px 0 0;
    color: var(--wdo-muted);
}

.wdo-directory-pager {
    justify-content: center;
}

.wdo-directory-pager button:disabled {
    cursor: default;
    opacity: 0.45;
}

.wdo-directory-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(1, 10, 67, 0.62);
}

.wdo-directory-card {
    position: relative;
    display: grid;
    gap: 28px;
    width: min(880px, 100%);
    min-height: 460px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, #010a43 0%, #0953b0 62%, #010a43 100%);
    color: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.wdo-directory-card__tools {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
}

.wdo-directory-card__tools button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.92);
    color: var(--wdo-blue);
    font-size: 20px;
}

.wdo-directory-card header,
.wdo-directory-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.wdo-directory-card header span {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.wdo-directory-card header img {
    width: 136px;
    max-height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.wdo-directory-card__body {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.wdo-directory-card__avatar {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.wdo-directory-card__body strong {
    display: grid;
    min-height: 64px;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 34px;
}

.wdo-directory-card dl {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 12px 20px;
    margin: 0;
}

.wdo-directory-card dt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.wdo-directory-card dd {
    margin: 0;
    font-size: 15px;
}

.wdo-directory-card footer {
    align-self: end;
}

.wdo-directory-card footer img {
    width: 92px;
    height: 92px;
    background: #fff;
    object-fit: contain;
}

.wdo-directory-card footer span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wdo-results-hero {
    background:
        linear-gradient(90deg, rgba(1, 10, 67, 0.58), rgba(9, 83, 176, 0.14)),
        url('/images/wdo/bg_world.jpg') center bottom / cover no-repeat,
        #07356c;
}

.wdo-results-hero__copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.65;
}

.wdo-results-shell {
    width: min(1120px, calc(100% - 48px));
    margin: 54px auto 78px;
}

.wdo-results-intro,
.wdo-result-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.wdo-results-intro h2 {
    margin: 0;
    color: #232323;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.wdo-results-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
    gap: 12px;
}

.wdo-results-tools label {
    display: grid;
    gap: 8px;
}

.wdo-results-tools span {
    color: var(--wdo-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wdo-results-tools input,
.wdo-results-tools select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--wdo-line);
    background: #fff;
    color: var(--wdo-ink);
    font: inherit;
    padding: 10px 12px;
}

.wdo-results-tools input:focus,
.wdo-results-tools select:focus {
    border-color: var(--wdo-blue);
    box-shadow: 0 0 0 3px rgba(13, 54, 109, 0.1);
    outline: 0;
}

.wdo-results-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-results-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.wdo-results-table th,
.wdo-results-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--wdo-line);
    text-align: left;
    vertical-align: top;
}

.wdo-results-table th {
    background: var(--wdo-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wdo-results-table td {
    color: #3c4652;
    font-size: 14px;
    line-height: 1.45;
}

.wdo-results-table td:first-child strong,
.wdo-results-table td:nth-child(2),
.wdo-result-table td:first-child {
    color: var(--wdo-blue);
    font-weight: 700;
}

.wdo-results-table td:first-child span {
    display: block;
    margin-top: 5px;
    color: var(--wdo-muted);
    font-size: 12px;
}

.wdo-results-table a,
.wdo-result-back {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--wdo-blue);
    background: var(--wdo-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.wdo-results-table a:hover,
.wdo-result-back:hover {
    background: #337fcf;
}

.wdo-results-empty {
    display: grid;
    min-height: 220px;
    place-items: center;
    border: 1px dashed #b7d2ef;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.wdo-results-empty h3 {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 30px;
}

.wdo-results-empty p {
    margin: 8px 0 0;
    color: var(--wdo-muted);
}

.wdo-result-back {
    width: max-content;
    margin-bottom: 22px;
}

.wdo-result-grid {
    align-items: start;
    margin-bottom: 0;
}

.wdo-result-info {
    padding: 28px;
    border: 1px solid var(--wdo-line);
    background: #fff;
}

.wdo-result-info dl {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px 18px;
    margin: 0;
}

.wdo-result-info dt {
    color: var(--wdo-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wdo-result-info dd {
    margin: 0;
    color: #3c4652;
}

.wdo-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 9, 72, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.wdo-mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.wdo-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    display: grid;
    align-content: start;
    gap: 10px;
    width: min(86vw, 360px);
    height: 100vh;
    max-height: 100dvh;
    padding: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    color: var(--wdo-navy);
    touch-action: pan-y;
    transform: translateX(110%);
    transition: transform 0.2s ease;
    -webkit-overflow-scrolling: touch;
}

.wdo-mobile-panel.open {
    transform: translateX(0);
}

.wdo-header-toggle:checked ~ .wdo-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.wdo-header-toggle:checked ~ .wdo-mobile-panel {
    transform: translateX(0);
}

.wdo-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wdo-mobile-head button,
.wdo-mobile-head label {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--wdo-line);
    background: transparent;
    color: var(--wdo-blue);
    cursor: pointer;
    font-size: 24px;
}

.wdo-mobile-panel > a {
    padding: 12px 0;
}

.wdo-mobile-panel > a.active {
    color: var(--wdo-blue);
}

.wdo-mobile-submenu {
    display: grid;
    gap: 2px;
    margin: -4px 0 8px;
    padding-left: 16px;
    border-left: 2px solid var(--wdo-line);
}

.wdo-mobile-submenu a {
    padding: 8px 0;
    color: #52606f;
    font-size: 11px;
}

@media (max-width: 1100px) {
    .wdo-header {
        grid-template-columns: 140px 1fr auto;
        padding: 0 24px;
    }

    .wdo-nav {
        gap: 14px;
    }

    .wdo-socials {
        display: none;
    }

    .wdo-member-actions {
        gap: 18px;
    }

    .wdo-current-organisation {
        font-size: 14px;
    }

    .wdo-account-trigger {
        font-size: 18px;
    }

    .wdo-notification-link {
        font-size: 29px;
    }
}

@media (max-width: 900px) {
    .wdo-header {
        grid-template-columns: 1fr auto;
    }

    .wdo-nav,
    .wdo-actions .wdo-link,
    .wdo-actions .wdo-button {
        display: none;
    }

    .wdo-actions {
        gap: 16px;
    }

    .wdo-member-actions {
        gap: 14px;
    }

    .wdo-current-organisation,
    .wdo-organisation-menu {
        display: none;
    }

    .wdo-menu-button {
        display: block;
    }

    .wdo-vision,
    .wdo-contact-grid,
    .wdo-event-layout,
    .wdo-event-filters,
    .wdo-music-toolbar,
    .wdo-results-intro,
    .wdo-results-tools,
    .wdo-result-grid,
    .wdo-directory-intro,
    .wdo-directory-search,
    .wdo-directory-card__body {
        grid-template-columns: 1fr;
    }

    .wdo-document-shell {
        grid-template-columns: 1fr;
    }

    .wdo-document-summary,
    .wdo-world-title-summary {
        position: static;
    }

    .wdo-world-title-shell,
    .wdo-world-title-grid,
    .wdo-world-title-list {
        grid-template-columns: 1fr;
    }

    .wdo-directory-member {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .wdo-directory-member > strong,
    .wdo-directory-member > button {
        justify-self: start;
    }

    .wdo-vision__image {
        min-height: 300px;
    }

    .wdo-membership-grid,
    .wdo-video-grid,
    .wdo-media-grid,
    .wdo-feature-grid,
    .wdo-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wdo-allocation-row {
        grid-template-columns: 56px minmax(0, 1fr) 120px;
    }

    .wdo-allocation-row p {
        display: none;
    }
}

@media (max-width: 640px) {
    .wdo-header-shell {
        min-height: 58px;
    }

    .wdo-header {
        min-height: 58px;
        padding: 0 16px;
    }

    .wdo-brand img {
        width: 96px;
    }

    .wdo-member-actions {
        gap: 11px;
    }

    .wdo-account-trigger {
        max-width: 108px;
        overflow: hidden;
        font-size: 16px;
        text-overflow: ellipsis;
    }

    .wdo-notification-link {
        font-size: 26px;
    }

    .wdo-home-hero__inner,
    .wdo-section,
    .wdo-events-strip,
    .wdo-rich-band,
    .wdo-feature-grid,
    .wdo-events-preview,
    .wdo-contact-grid,
    .wdo-gallery,
    .wdo-events-app {
        width: min(100% - 32px, 980px);
    }

    .wdo-home-hero {
        min-height: 360px;
    }

    .wdo-vision {
        grid-template-columns: minmax(0, 1fr);
    }

    .wdo-vision__image {
        display: none;
    }

    .wdo-check-grid,
    .wdo-statement-grid,
    .wdo-news-grid,
    .wdo-groups-grid,
    .wdo-membership-grid,
    .wdo-video-grid,
    .wdo-media-grid,
    .wdo-feature-grid,
    .wdo-gallery-grid,
    .wdo-footer {
        grid-template-columns: 1fr;
    }

    .wdo-event-row {
        grid-template-columns: 44px minmax(0, 1fr) 24px;
        gap: 10px;
        padding: 12px;
    }

    .wdo-calendar-options {
        right: -12px;
        min-width: min(240px, calc(100vw - 48px));
    }

    .wdo-event-row span,
    .wdo-event-row small {
        display: none;
    }

    .wdo-allocation-row {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
    }

    .wdo-allocation-row img {
        grid-column: 1 / -1;
        width: 100%;
        height: 120px;
    }

    .wdo-side-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .wdo-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 18px 0;
    }

    .wdo-footer-bottom nav {
        gap: 18px;
    }

    .wdo-directory-shell {
        width: min(100% - 32px, 980px);
        margin-top: 34px;
    }

    .wdo-results-shell {
        width: min(100% - 32px, 980px);
        margin-top: 34px;
    }

    .wdo-directory-card {
        padding: 24px;
    }

    .wdo-directory-card header,
    .wdo-directory-card footer,
    .wdo-directory-status,
    .wdo-directory-pager {
        align-items: flex-start;
        flex-direction: column;
    }

    .wdo-directory-card dl {
        grid-template-columns: 1fr;
    }

    .wdo-document-shell {
        width: min(100% - 32px, 980px);
        margin-top: 34px;
    }

    .wdo-world-title-shell {
        width: min(100% - 32px, 980px);
        margin-top: 34px;
    }

    .wdo-document-content,
    .wdo-document-summary,
    .wdo-world-title-summary,
    .wdo-world-title-card {
        padding: 22px;
    }

    .wdo-world-title-card dl,
    .wdo-world-title-list article {
        grid-template-columns: 1fr;
    }

    .wdo-world-title-list article span {
        justify-self: start;
    }

    .wdo-document-accordion summary {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 12px;
    }

    .wdo-document-accordion summary span {
        width: 32px;
        height: 32px;
    }

    .wdo-document-accordion summary strong {
        font-size: 20px;
    }

    .wdo-document-accordion p {
        padding: 0 16px 18px 66px;
    }

    .wdo-rules-item summary {
        min-height: 62px;
        padding: 12px;
    }

    .wdo-rules-item summary strong {
        font-size: 20px;
    }

    .wdo-rules-panel {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .wdo-rules-divider {
        margin: 28px 0 18px;
    }

    .wdo-ranking-number-list {
        padding: 0 16px 18px 36px;
    }

    .wdo-ranking-table-wrap {
        width: 100%;
        padding: 0 16px 18px 66px;
    }

    .wdo-ranking-award .wdo-document-download {
        margin-left: 66px;
    }
}
