* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--oem-surface, #ffffff);
    color: var(--oem-text, #1f2937);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: var(--oem-font-body, 16px);
    line-height: 1.55;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.oem-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.oem-updates-version-pill {
    align-self: center;
    justify-self: end;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.oem-public-updates {
    background: #f8fafc;
}

.oem-public-updates__timeline {
    display: grid;
    gap: 22px;
}

.oem-product-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    width: 100%;
    margin: 0 0 28px;
    padding: 14px;
    border: 1px solid #cbdcf3;
    border-radius: 22px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    box-shadow: 0 16px 40px rgba(8, 46, 99, .10);
}

.oem-product-tabs button {
    appearance: none;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    width: 100%;
    min-height: 76px;
    border-radius: 16px;
    border-color: #d7e2f0;
    background: rgba(255, 255, 255, .92);
    color: #17345c;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 13px 16px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(15, 45, 85, .05);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.oem-product-tabs button:hover { transform: translateY(-2px); border-color: #93b7e8; box-shadow: 0 10px 24px rgba(15, 66, 135, .11); }
.oem-product-tabs__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #e8f1ff;
    font-size: 23px;
}
.oem-product-tabs__copy { display: grid; gap: 2px; min-width: 0; }
.oem-product-tabs__copy strong { font-size: 16px; line-height: 1.25; }
.oem-product-tabs__copy small { color: #718096; font-size: 12px; font-weight: 650; line-height: 1.35; }

.oem-product-tabs button.is-active {
    border-color: #0b3b78;
    background: linear-gradient(135deg, #0b3b78, #1764bd);
    color: #fff;
    box-shadow: 0 8px 20px rgba(29, 78, 216, .18);
}
.oem-product-tabs button.is-active .oem-product-tabs__icon { background: rgba(255, 255, 255, .16); }
.oem-product-tabs button.is-active .oem-product-tabs__copy small { color: #dbeafe; }

@media (max-width: 620px) {
    .oem-product-tabs { grid-template-columns: 1fr; padding: 10px; border-radius: 17px; }
    .oem-product-tabs button { min-height: 68px; }
}

.oem-project-stats {
    margin: 0 0 24px;
    padding: 20px;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    box-shadow: 0 14px 34px rgba(8, 46, 99, .07);
}

.oem-project-stats__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.oem-project-stats__heading > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.oem-project-stats__heading h2,
.oem-project-stats__heading p {
    margin: 0;
}

.oem-project-stats__heading h2 {
    color: var(--oem-primary, #082e63);
    font-size: clamp(20px, 2.4vw, 26px);
}

.oem-project-stats__heading p {
    max-width: 520px;
    color: #64748b;
    font-size: 13px;
    text-align: right;
}

.oem-project-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.oem-project-stats__grid article {
    min-width: 0;
    padding: 14px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: rgba(255, 255, 255, .9);
}

.oem-project-stats__grid span,
.oem-project-stats__grid strong {
    display: block;
}

.oem-project-stats__grid span {
    margin-bottom: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.oem-project-stats__grid strong {
    overflow-wrap: anywhere;
    color: var(--oem-primary, #082e63);
    font-size: clamp(20px, 2.6vw, 28px);
    line-height: 1.15;
}

.oem-public-update {
    overflow: hidden;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8, 46, 99, .08);
}

.oem-public-update__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    padding: 24px 62px 24px 24px;
    background: linear-gradient(135deg, #fff, #f1f5f9);
    cursor: pointer;
    list-style: none;
}

.oem-public-update__head::-webkit-details-marker {
    display: none;
}

.oem-public-update__head::after {
    content: "⌄";
    position: absolute;
    top: 23px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 19px;
    font-weight: 900;
    transition: transform .2s ease;
}

.oem-public-update[open] .oem-public-update__head {
    border-bottom: 1px solid #e2e8f0;
}

.oem-public-update[open] .oem-public-update__head::after {
    transform: rotate(180deg);
}

.oem-public-update__head h2 {
    margin: 8px 0;
    color: var(--oem-primary, #082e63);
}

.oem-public-update__head p {
    max-width: 820px;
    margin: 0;
    color: #475569;
}

.oem-public-update__head time {
    color: #64748b;
    font-weight: 700;
    white-space: nowrap;
}

.oem-public-update__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
}

.oem-public-update__meta strong {
    color: var(--oem-primary, #082e63);
    font-size: 21px;
}

.oem-public-update__critical {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.oem-public-update__sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    padding: 20px;
}

.oem-public-update__section {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.oem-public-update__section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 11px;
    color: #1e3a5f;
}

.oem-public-update__section ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
}

.oem-public-update__section li {
    margin-bottom: 7px;
}

.oem-public-update__section li:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .oem-updates-version-pill {
        justify-self: start;
        white-space: normal;
    }

    .oem-public-update__head {
        flex-direction: column;
    }

    .oem-public-update__head time {
        white-space: normal;
    }

    .oem-public-update__sections {
        grid-template-columns: 1fr;
    }

    .oem-project-stats__heading {
        display: block;
    }

    .oem-project-stats__heading p {
        margin-top: 8px;
        text-align: left;
    }

    .oem-project-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.oem-capabilities-hero {
    position: relative;
    overflow: hidden;
}

.oem-capabilities-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -75% 35%;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 68%);
    pointer-events: none;
}

.oem-event-hero__grid.oem-capabilities-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    align-items: center;
    gap: 54px;
}

.oem-capabilities-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 24px;
}

.oem-capabilities-primary,
.oem-capabilities-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 17px;
    border-radius: 10px;
    font-weight: 850;
    text-decoration: none;
}

.oem-capabilities-primary {
    background: #fff;
    color: var(--oem-primary, #082e63);
}

.oem-capabilities-secondary {
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
}

.oem-capabilities-hero__visual {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 1;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.oem-capabilities-hero__visual::before,
.oem-capabilities-hero__visual::after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, .28);
    border-radius: 50%;
}

.oem-capabilities-hero__visual::before { inset: 15%; }
.oem-capabilities-hero__visual::after { inset: 31%; }

.oem-capabilities-hero__visual span {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: rgba(8, 46, 99, .82);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.oem-capabilities-hero__visual .is-core {
    inset: 50% auto auto 50%;
    width: 76px;
    height: 76px;
    padding: 0;
    transform: translate(-50%, -50%);
    border-width: 3px;
    background: #fff;
    color: var(--oem-primary, #082e63);
    font-size: 25px;
}

.oem-capabilities-hero__visual .is-registration { top: 7%; left: 42%; }
.oem-capabilities-hero__visual .is-scoring { top: 43%; right: -4%; }
.oem-capabilities-hero__visual .is-onb { bottom: 5%; left: 43%; }
.oem-capabilities-hero__visual .is-print { top: 43%; left: -2%; }

.oem-public-capabilities {
    background: #f8fafc;
}

.oem-capabilities-language-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    background: #fffbeb;
    color: #92400e;
    font-weight: 750;
}

.oem-capabilities-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: -78px 0 54px;
    position: relative;
    z-index: 2;
}

.oem-capabilities-stats article {
    padding: 19px;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(8, 46, 99, .1);
}

.oem-capabilities-stats strong,
.oem-capabilities-stats span {
    display: block;
}

.oem-capabilities-stats strong {
    color: var(--oem-primary, #082e63);
    font-size: clamp(27px, 3.2vw, 38px);
    line-height: 1;
}

.oem-capabilities-stats span {
    margin-top: 7px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.oem-capabilities-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}

.oem-capabilities-section-head h2 {
    margin: 5px 0 7px;
    color: var(--oem-primary, #082e63);
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.12;
}

.oem-capabilities-section-head p:last-child {
    max-width: 750px;
    margin: 0;
    color: #64748b;
}

.oem-capabilities-search {
    flex: 0 1 330px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 250px;
    padding: 0 13px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.oem-capabilities-search > span:not(.screen-reader-text) {
    color: #64748b;
    font-size: 23px;
}

.oem-capabilities-search input {
    width: 100%;
    min-height: 48px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font: inherit;
}

.oem-capabilities-jump {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 0 20px;
    padding: 2px 2px 10px;
    scrollbar-width: thin;
}

.oem-capabilities-jump a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid #dbe4ee;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.oem-capabilities-jump a:hover,
.oem-capabilities-jump a:focus {
    border-color: #93c5fd;
    background: #eff6ff;
    color: var(--oem-primary, #082e63);
}

.oem-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.oem-capability-card {
    scroll-margin-top: 110px;
    align-self: start;
    overflow: hidden;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.oem-capability-card[hidden] {
    display: none;
}

.oem-capability-card summary {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 13px;
    min-height: 118px;
    padding: 18px;
    cursor: pointer;
    list-style: none;
}

.oem-capability-card summary::-webkit-details-marker { display: none; }

.oem-capability-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    font-size: 25px;
}

.oem-capability-card__heading strong,
.oem-capability-card__heading small {
    display: block;
}

.oem-capability-card__heading strong {
    color: #0f2f57;
    font-size: 18px;
    line-height: 1.25;
}

.oem-capability-card__heading small {
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.oem-capability-card__toggle {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #eef2f7;
    color: #475569;
    font-size: 20px;
    font-weight: 700;
}

.oem-capability-card[open] {
    border-color: #bfdbfe;
    box-shadow: 0 18px 44px rgba(8, 46, 99, .1);
}

.oem-capability-card[open] summary {
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #fff, #f7fbff);
}

.oem-capability-card[open] .oem-capability-card__toggle {
    background: var(--oem-primary, #082e63);
    color: #fff;
    transform: rotate(45deg);
}

.oem-capability-card__body {
    padding: 18px;
}

.oem-capability-card__audiences {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 15px;
}

.oem-capability-card__audiences strong {
    color: #475569;
    font-size: 12px;
}

.oem-capability-card__audiences span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
}

.oem-capability-card__body ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.oem-capability-card__body li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    color: #475569;
    line-height: 1.5;
}

.oem-capability-card__body li span {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 900;
}

.oem-capabilities-empty {
    padding: 38px;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #fff;
    color: #64748b;
    text-align: center;
}

.oem-capabilities-empty span,
.oem-capabilities-empty strong { display: block; }
.oem-capabilities-empty span { margin-bottom: 8px; font-size: 31px; }

.oem-capabilities-latest {
    background: #fff;
}

.oem-capabilities-latest__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.oem-capabilities-latest__grid article {
    padding: 20px;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #f8fafc);
}

.oem-capabilities-latest__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.oem-capabilities-latest__meta span {
    padding: 4px 7px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
}

.oem-capabilities-latest h3 {
    margin: 10px 0 6px;
    color: #0f2f57;
}

.oem-capabilities-latest p {
    margin: 0 0 12px;
    color: #64748b;
}

.oem-capabilities-latest ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
}

.oem-capabilities-latest li + li { margin-top: 6px; }

@media (max-width: 920px) {
    .oem-capabilities-hero__grid {
        grid-template-columns: 1fr;
    }

    .oem-capabilities-hero__visual {
        display: none;
    }

    .oem-capabilities-stats {
        margin-top: -54px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .oem-capabilities-stats {
        margin-bottom: 40px;
    }

    .oem-capabilities-section-head {
        display: grid;
    }

    .oem-capabilities-search {
        min-width: 0;
        width: 100%;
    }

    .oem-capabilities-grid,
    .oem-capabilities-latest__grid {
        grid-template-columns: 1fr;
    }

    .oem-capability-card summary {
        grid-template-columns: 44px minmax(0, 1fr) 28px;
        min-height: 0;
        padding: 15px;
    }

    .oem-capability-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 21px;
    }
}

.oem-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid #e3e8ef;
    backdrop-filter: blur(16px);
}

.oem-site-topbar {
    position: relative;
    z-index: 60;
    min-height: 38px;
    display: flex;
    align-items: center;
    background: var(--oem-primary, #082e63);
    color: #fff;
}

.oem-site-topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.oem-top-menu-list,
.oem-bottom-menu-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.oem-top-menu li,
.oem-bottom-menu li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.oem-top-menu a {
    display: block;
    padding: 7px 9px;
    border-radius: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.oem-top-menu a:hover,
.oem-top-menu a:focus {
    background: rgba(255, 255, 255, .14);
}

.oem-social-links--topbar {
    margin-left: auto;
}

.oem-site-main--onb {
    min-height: 100vh;
    background: #f8fafc;
}

.oem-onb-context .ozdem-event-seo-view {
    margin: 0;
    padding: 0;
}

.oem-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.oem-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #082e63;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0;
}

.oem-brand img {
    max-height: var(--oem-header-logo, 72px);
    width: auto;
}

.oem-brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--oem-primary);
    color: #fff;
}

.oem-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--oem-font-menu, 14px);
    font-weight: 800;
}

.oem-menu-list,
.oem-footer-list {
    display: contents;
    margin: 0;
    padding: 0;
}

.oem-nav li,
.oem-footer-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.oem-nav a {
    padding: 10px 11px;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease;
}

.oem-nav a:hover,
.oem-nav a:focus {
    background: color-mix(in srgb, var(--oem-hover, #f97316) 14%, #fff 86%);
    color: var(--oem-primary);
}

.oem-nav .oem-nav-cta {
    background: var(--oem-primary);
    color: #fff;
}

.oem-nav .oem-nav-cta:hover,
.oem-nav .oem-nav-cta:focus {
    background: var(--oem-hover, #f97316);
    color: #fff;
}

.oem-nav .menu-item-has-children,
.oem-nav-fallback-parent {
    position: relative;
}

.oem-nav .sub-menu,
.oem-nav-fallback-submenu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 20;
    display: none;
    width: max-content;
    min-width: 210px;
    margin: 0;
    padding: 7px;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}

.oem-nav .sub-menu::before,
.oem-nav-fallback-submenu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.oem-nav .menu-item-has-children:hover > .sub-menu,
.oem-nav .menu-item-has-children:focus-within > .sub-menu,
.oem-nav-fallback-parent:hover > .oem-nav-fallback-submenu,
.oem-nav-fallback-parent:focus-within > .oem-nav-fallback-submenu {
    display: grid;
}

.oem-nav .sub-menu a,
.oem-nav-fallback-submenu a {
    display: block;
    width: 100%;
    white-space: nowrap;
}

.oem-header-bottom {
    border-top: 1px solid #e5eaf0;
    background: color-mix(in srgb, var(--oem-primary, #082e63) 5%, #fff 95%);
}

.oem-bottom-menu {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oem-bottom-menu-list {
    justify-content: center;
}

.oem-bottom-menu a {
    display: block;
    padding: 8px 11px;
    border-radius: 7px;
    color: #334155;
    font-size: calc(var(--oem-font-menu, 14px) - 1px);
    font-weight: 750;
    text-decoration: none;
}

.oem-bottom-menu a:hover,
.oem-bottom-menu a:focus {
    background: #fff;
    color: var(--oem-primary, #082e63);
}

.oem-top-menu .sub-menu,
.oem-bottom-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    display: none;
    width: max-content;
    min-width: 190px;
    margin: 0;
    padding: 6px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .16);
}

.oem-top-menu .sub-menu a,
.oem-bottom-menu .sub-menu a {
    color: #334155;
    white-space: nowrap;
}

.oem-top-menu .menu-item-has-children:hover > .sub-menu,
.oem-top-menu .menu-item-has-children:focus-within > .sub-menu,
.oem-bottom-menu .menu-item-has-children:hover > .sub-menu,
.oem-bottom-menu .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
}

.oem-langs {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
}

.oem-langs a {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid #dbe3ec;
    background: #fff;
}

.oem-langs a.is-active {
    border-color: var(--oem-primary);
    box-shadow: 0 0 0 3px rgba(8, 46, 99, .12);
}

.oem-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font-size: 22px;
    cursor: pointer;
}

.oem-hero,
.oem-event-hero {
    background:
        linear-gradient(135deg, rgba(6, 42, 91, .97), rgba(15, 23, 42, .94)),
        radial-gradient(circle at 82% 18%, rgba(107, 114, 128, .34), transparent 34%);
    color: #fff;
}

.oem-hero-grid,
.oem-event-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 34px;
    align-items: center;
    min-height: 520px;
    padding: 64px 0;
}

.oem-event-hero__grid {
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 360px;
}

.oem-event-hero__logo {
    width: 220px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, .95);
    padding: 24px;
}

.oem-hero h1,
.oem-event-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .98;
    letter-spacing: 0;
}

.oem-event-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.oem-contact-hero .oem-event-hero__grid {
    grid-template-columns: minmax(0, 820px);
    min-height: 170px;
    padding: 34px 0;
}

.oem-contact-hero h1 {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.08;
}

.oem-contact-hero p,
.oem-contact-hero .oem-rich-text {
    max-width: 760px;
    font-size: 15px;
}

.oem-hero p,
.oem-event-hero p {
    max-width: 700px;
    font-size: 18px;
    color: rgba(255, 255, 255, .84);
}

.oem-contact-hero p,
.oem-contact-hero .oem-rich-text {
    max-width: 760px;
    font-size: 15px;
}

.oem-kicker {
    margin: 0 0 10px;
    color: var(--oem-accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.oem-hero-actions,
.oem-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.oem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: var(--oem-font-button, 14px);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.oem-btn--primary {
    background: var(--oem-primary);
    color: #fff;
}

.oem-btn--ghost {
    background: #fff;
    border-color: #cbd5e1;
    color: #0f172a;
}

.oem-btn--primary:hover,
.oem-btn--primary:focus {
    background: var(--oem-hover, #f97316);
    color: #fff;
    transform: translateY(-1px);
}

.oem-btn--ghost:hover,
.oem-btn--ghost:focus {
    border-color: var(--oem-hover, #f97316);
    background: color-mix(in srgb, var(--oem-hover, #f97316) 11%, #fff 89%);
    color: var(--oem-primary);
}

.oem-btn--light {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .34);
    color: #fff;
}

.oem-search-panel {
    background: #fff;
    color: #0f172a;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
}

.oem-search-panel--flat {
    max-width: 840px;
    margin: 0 auto;
    box-shadow: 0 12px 36px rgba(15, 23, 42, .08);
}

.oem-search-panel label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.oem-search-panel div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.oem-search-panel input,
.oem-form input,
.oem-form textarea,
.oem-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 12px;
    color: #0f172a;
    background: #fff;
    font: inherit;
    font-size: var(--oem-font-form, 14px);
}

.oem-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) 19px, calc(100% - 12px) 19px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.oem-section,
.oem-band {
    padding: 68px 0;
}

.oem-section--soft,
.oem-band {
    background: #edf3f6;
}

.oem-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.oem-section-head--compact {
    align-items: start;
    justify-content: flex-start;
}

.oem-section-head h2,
.oem-two-col h2,
.oem-application h2 {
    margin: 0;
    font-size: var(--oem-font-heading, 34px);
    line-height: 1.05;
    letter-spacing: 0;
}

.oem-register-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.oem-register-callout h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
}

.oem-register-callout p:not(.oem-kicker) {
    margin: 0;
    color: #475569;
    font-weight: 700;
}

.oem-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.oem-event-grid--list {
    grid-template-columns: 1fr;
}

.oem-event-grid--list .oem-event-card {
    grid-template-columns: 168px minmax(0, 1fr);
}

.oem-event-card,
.oem-page-card,
.oem-form {
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

body.oem-card-wide .oem-event-card {
    grid-template-columns: 168px minmax(0, 1fr);
}

.oem-event-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    min-height: 190px;
    overflow: hidden;
}

.oem-event-card__media {
    display: grid;
    place-items: center;
    background: #eef3f9;
    padding: 18px;
    text-decoration: none;
}

.oem-event-card__media img {
    max-height: 100px;
    object-fit: contain;
}

.oem-event-card__media span {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--oem-primary);
    color: #fff;
    font-size: 34px;
    font-weight: 950;
}

.oem-event-card__body {
    padding: 18px;
}

.oem-event-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.18;
}

.oem-event-card h3 a {
    text-decoration: none;
}

.oem-event-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.oem-event-card dl div {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
}

.oem-event-card dt {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.oem-event-card dd {
    margin: 0;
    color: #1f2937;
    font-weight: 750;
}

.oem-event-card__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.oem-event-card__contact li {
    flex: 0 0 auto;
    min-width: 0;
}

.oem-event-card__contact-link {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #e1e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.oem-event-card__contact-link:hover,
.oem-event-card__contact-link:focus {
    border-color: var(--oem-hover, #f97316);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
    outline: none;
}

.oem-event-card__contact-link.is-static {
    cursor: default;
}

.oem-event-card__contact-link.is-static:hover {
    border-color: #e1e8f0;
    background: #f8fafc;
    box-shadow: none;
    transform: none;
}

.oem-event-card__contact-link .dashicons {
    width: 20px;
    height: 20px;
    color: currentColor;
    font-size: 20px;
    line-height: 1;
}

.oem-event-card__contact-svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: currentColor;
}

.oem-event-card__contact-link[data-contact-type="whatsapp"] {
    color: #128c7e;
}

.oem-event-card__contact strong {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
}

.oem-reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.oem-reference-grid.is-marquee {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: oemReferenceMarquee 38s linear infinite;
}

.oem-reference-grid.is-marquee:hover {
    animation-play-state: paused;
}

.oem-reference-grid.is-marquee .oem-reference {
    width: 180px;
    flex: 0 0 180px;
}

@keyframes oemReferenceMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% + 180px)); }
}

.oem-reference {
    min-height: 126px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.oem-reference img {
    max-height: 58px;
    object-fit: contain;
}

.oem-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.oem-news-grid.is-list {
    grid-template-columns: 1fr;
}

.oem-news-card {
    display: grid;
    overflow: hidden;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.oem-news-grid.is-list .oem-news-card {
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
}

.oem-news-card__media {
    min-height: 180px;
    background: #eef3f9;
}

.oem-news-card__media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.oem-news-card__body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.oem-news-card time {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.oem-news-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.18;
}

.oem-news-card h3 a,
.oem-text-link {
    color: inherit;
    text-decoration: none;
}

.oem-news-card p {
    margin: 0;
    color: #475569;
}

.oem-text-link {
    color: var(--oem-primary);
    font-weight: 950;
}

.oem-single-article {
    background: #f8fafc;
}

.oem-single-header {
    max-width: 840px;
    margin: 0 auto 22px;
}

.oem-single-header h1 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

.oem-single-header time {
    color: #64748b;
    font-size: 13px;
    font-weight: 850;
}

.oem-single-media {
    max-width: 720px;
    margin: 0 auto 22px;
}

.oem-single-media img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .1);
}

.oem-single-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 28px;
}

.oem-single-content > :first-child {
    margin-top: 0;
}

.oem-single-content > :last-child {
    margin-bottom: 0;
}

.oem-single-content p,
.oem-single-content li {
    font-size: 17px;
    line-height: 1.75;
}

.oem-single-content img {
    border-radius: 8px;
}

.oem-page-links {
    margin-top: 24px;
    font-weight: 900;
}

.oem-two-col,
.oem-application__grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: start;
}

.oem-contact-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--oem-primary);
    font-weight: 900;
}

.oem-form {
    display: grid;
    gap: 13px;
    padding: 18px;
}

.oem-step {
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #f8fafc;
    overflow: hidden;
}

.oem-step summary {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    color: #0f172a;
    font-weight: 950;
    cursor: pointer;
}

.oem-step[open] summary {
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.oem-step-body {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.oem-form h3 {
    margin: 8px 0 2px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 18px;
}

.oem-form label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.oem-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.oem-form-row--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.oem-fee-grid {
    display: grid;
    grid-template-columns: minmax(110px, .9fr) repeat(5, minmax(82px, 1fr));
    gap: 8px;
    align-items: center;
    padding: 12px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #f8fafc;
}

.oem-fee-grid strong,
.oem-fee-grid span {
    color: #1e293b;
    font-size: 12px;
    font-weight: 950;
}

.oem-phone-row {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    gap: 8px;
}

.oem-field-phone {
    grid-column: 1 / -1;
}

.oem-application-form .oem-field-phone {
    width: 100%;
}

.oem-phone-row select,
.oem-phone-row input {
    min-width: 0;
}

.oem-phone-row input[type="tel"],
.oem-phone-row input[type="text"] {
    width: 100%;
}

.oem-alert {
    border: 1px solid #c6d4e5;
    border-radius: 8px;
    background: #eef3f9;
    color: var(--oem-primary);
    padding: 10px 12px;
    font-weight: 900;
}

.oem-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.oem-application-form {
    min-width: 0;
    padding: 12px;
    background: #f8fafc;
}

.oem-application {
    padding-top: 46px;
}

.oem-application__grid {
    grid-template-columns: minmax(190px, .34fr) minmax(0, 1.66fr);
    gap: 24px;
}

.oem-application h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.oem-application p {
    font-size: 14px;
    color: #475569;
}

.oem-application-form {
    gap: 12px;
    grid-template-columns: 1fr;
}

.oem-application-form > .oem-step[open],
.oem-application-form > .oem-alert,
.oem-application-form > .oem-application-note,
.oem-application-form > button[type="submit"] {
    grid-column: 1 / -1;
}

.oem-application-form .oem-step {
    --step-color: var(--oem-primary);
    background: #fff;
    border-left: 4px solid var(--step-color);
    box-shadow: 0 4px 14px rgba(8, 46, 99, .05);
}

.oem-application-form .oem-step:nth-of-type(1) { --step-color: #2563eb; }
.oem-application-form .oem-step:nth-of-type(2) { --step-color: #e1262f; }
.oem-application-form .oem-step:nth-of-type(3) { --step-color: #0f766e; }
.oem-application-form .oem-step:nth-of-type(4) { --step-color: #d97706; }
.oem-application-form .oem-step:nth-of-type(5) { --step-color: #7c3aed; }
.oem-application-form .oem-step:nth-of-type(6) { --step-color: #0891b2; }
.oem-application-form .oem-step:nth-of-type(7) { --step-color: #be123c; }
.oem-application-form .oem-step:nth-of-type(8) { --step-color: #4f46e5; }
.oem-application-form .oem-step:nth-of-type(9) { --step-color: #15803d; }
.oem-application-form .oem-step:nth-of-type(10) { --step-color: #b45309; }
.oem-application-form .oem-step:nth-of-type(11) { --step-color: #0369a1; }

.oem-application-form .oem-step summary {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 850;
}
.oem-application-form .oem-step.is-passive{opacity:.64;border-left-color:#94a3b8;box-shadow:none}.oem-application-form .oem-step.is-passive summary{cursor:not-allowed;background:#f1f5f9;color:#64748b}.oem-application-form .oem-step.is-passive summary::before{content:"•";margin-right:7px;color:#94a3b8}

.oem-application-form .oem-step-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--step-color) 5%, #fff 95%), #fff 84px);
}

.oem-application-form .oem-step-body > h3,
.oem-application-form .oem-step-body > p,
.oem-application-form .oem-step-body > .oem-alert,
.oem-application-form .oem-step-body > .oem-form-row,
.oem-application-form .oem-step-body > .oem-form-row--three,
.oem-application-form .oem-step-body > .oem-form-row--five,
.oem-application-form .oem-step-body > .oem-check-grid,
.oem-application-form .oem-step-body > .oem-fee-grid,
.oem-application-form .oem-step-body > .oem-repeater,
.oem-application-form .oem-step-body > .oem-repeater-list,
.oem-application-form .oem-step-body > .oem-nested-steps,
.oem-application-form .oem-step-body > .oem-table-scroll,
.oem-application-form .oem-step-body > .oem-substep {
    grid-column: 1 / -1;
}

.oem-application-form .oem-step[open] summary {
    background: color-mix(in srgb, var(--step-color) 9%, #fff 91%);
}

.oem-application-form h3 {
    margin-top: 4px;
    font-size: 15px;
}

.oem-application-form label {
    gap: 5px;
    font-size: 12px;
    font-weight: 800;
}

.oem-application-form .oem-step-body > label,
.oem-application-form .oem-form-row > label,
.oem-application-form .oem-form-row--three > label,
.oem-application-form .oem-form-row--five > label {
    min-width: 0;
    padding: 9px;
    border: 1px solid #dbe3ec;
    border-top: 3px solid #60a5fa;
    border-radius: 7px;
    background: #f8fbff;
}

.oem-application-form .oem-step-body > label:nth-of-type(4n+2),
.oem-application-form .oem-form-row > label:nth-child(4n+2),
.oem-application-form .oem-form-row--three > label:nth-child(4n+2),
.oem-application-form .oem-form-row--five > label:nth-child(4n+2) {
    border-top-color: #34d399;
    background: #f3fcf8;
}

.oem-application-form .oem-step-body > label:nth-of-type(4n+3),
.oem-application-form .oem-form-row > label:nth-child(4n+3),
.oem-application-form .oem-form-row--three > label:nth-child(4n+3),
.oem-application-form .oem-form-row--five > label:nth-child(4n+3) {
    border-top-color: #f59e0b;
    background: #fffbeb;
}

.oem-application-form .oem-step-body > label:nth-of-type(4n+4),
.oem-application-form .oem-form-row > label:nth-child(4n+4),
.oem-application-form .oem-form-row--three > label:nth-child(4n+4),
.oem-application-form .oem-form-row--five > label:nth-child(4n+4) {
    border-top-color: #a78bfa;
    background: #faf7ff;
}

.oem-application-form input:not([type="checkbox"]):not([type="radio"]),
.oem-application-form textarea,
.oem-application-form select {
    min-height: 39px;
    padding: 8px 10px;
    font-size: var(--oem-font-form, 14px);
}

.oem-application-form input[type="checkbox"],
.oem-application-form input[type="radio"] {
    width: 16px;
    height: 16px;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.oem-application-form .oem-check-grid { gap: 6px; }
.oem-application-form .oem-form-row,
.oem-application-form .oem-form-row--three {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.oem-application-form .oem-form-row--five {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}
.oem-application-form .oem-check-grid label {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    min-height: 32px;
    padding: 6px 8px;
    border: 1px solid #dbe3ec;
    border-radius: 6px;
    background: #fff;
}
.oem-application-step-settings{display:grid;grid-template-columns:1fr;gap:8px}.oem-application-step-setting{display:grid;grid-template-columns:minmax(250px,1fr) auto auto;align-items:center;gap:14px;padding:10px 12px;border:1px solid #dbe3ec;border-radius:8px;background:#fff}.oem-application-step-setting strong{font-size:13px;color:#1e293b}.oem-step-visible{display:inline-flex!important;grid-template-columns:none!important;align-items:center;gap:7px!important;min-height:34px;padding:7px 10px!important;border:1px solid #bfdbfe!important;border-radius:7px!important;background:#eff6ff!important;color:#1d4ed8!important}.oem-step-mode{display:inline-flex;overflow:hidden;border:1px solid #cbd5e1;border-radius:7px;background:#f8fafc}.oem-step-mode label{position:relative;display:inline-flex!important;grid-template-columns:none!important;align-items:center;min-height:34px;padding:0!important;border:0!important;background:transparent!important}.oem-step-mode input{position:absolute;opacity:0;pointer-events:none}.oem-step-mode span{display:inline-flex;align-items:center;min-height:34px;padding:7px 11px;color:#64748b}.oem-step-mode input:checked+span{background:var(--oem-primary);color:#fff}.oem-application-step-setting.is-hidden{border-style:dashed;background:#f8fafc;opacity:.72}.oem-application-step-setting.is-hidden .oem-step-mode{opacity:.42}.oem-application-step-setting.is-hidden strong{color:#64748b}
@media(max-width:760px){.oem-application-step-setting{grid-template-columns:1fr auto}.oem-application-step-setting strong{grid-column:1/-1}.oem-step-mode{justify-self:end}}

.oem-calendar-head{display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:18px}.oem-calendar-head h2{margin:2px 0 0}.oem-calendar-head nav{display:flex;gap:8px}.oem-calendar-head nav a{padding:8px 11px;border:1px solid #cbd5e1;border-radius:6px;background:#fff;color:var(--oem-primary);font-weight:850;text-decoration:none}.oem-calendar-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));overflow:hidden;border:1px solid #dbe3ec;border-radius:8px;background:#fff}.oem-calendar-dayname{padding:9px 6px;background:var(--oem-primary);color:#fff;font-size:12px;font-weight:900;text-align:center}.oem-calendar-day{min-height:126px;padding:8px;border-top:1px solid #e2e8f0;border-right:1px solid #e2e8f0}.oem-calendar-day:nth-child(7n+7){border-right:0}.oem-calendar-day>time{display:inline-grid;width:25px;height:25px;place-items:center;border-radius:50%;color:#334155;font-size:12px;font-weight:900}.oem-calendar-day.is-muted{background:#f8fafc;opacity:.55}.oem-calendar-events{display:grid;gap:5px;margin-top:5px}.oem-calendar-events a{display:grid;gap:2px;padding:6px;border-left:3px solid var(--oem-accent);border-radius:4px;background:#eef3f9;color:#0f172a;text-decoration:none}.oem-calendar-events strong{font-size:11px;line-height:1.25}.oem-calendar-events small{color:#64748b;font-size:9px;line-height:1.25}.oem-calendar-list{display:grid;gap:8px}.oem-calendar-list a{display:grid;grid-template-columns:110px minmax(160px,1fr) minmax(180px,.8fr);gap:12px;align-items:center;padding:12px;border:1px solid #dbe3ec;border-radius:7px;background:#fff;color:#0f172a;text-decoration:none}.oem-calendar-list time{color:var(--oem-primary);font-weight:900}.oem-calendar-list span{color:#64748b;font-size:13px}
.oem-event-explorer__top{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:16px}.oem-event-explorer__top h2{margin:2px 0 0}.oem-view-tabs{display:inline-flex;padding:4px;border:1px solid #dbe3ec;border-radius:8px;background:#fff}.oem-view-tabs a{min-width:92px;padding:8px 13px;border-radius:6px;color:#475569;font-weight:900;text-align:center;text-decoration:none}.oem-view-tabs a.is-active{background:var(--oem-primary);color:#fff}
.oem-calendar-before-list{margin-bottom:24px}

@media(max-width:760px){.oem-event-explorer__top,.oem-calendar-head{align-items:stretch;flex-direction:column}.oem-view-tabs{align-self:stretch}.oem-view-tabs a{flex:1}.oem-calendar-grid{min-width:760px}.oem-calendar-grid.is-week{min-width:680px}.oem-calendar-grid{overflow:visible}.oem-section:has(.oem-calendar-grid) .oem-container{overflow-x:auto}.oem-calendar-list a{grid-template-columns:1fr}.oem-calendar-day{min-height:110px}}

.oem-application-form textarea {
    line-height: 1.45;
}

.oem-application-form .oem-repeater-card,
.oem-application-form .oem-substep {
    padding: 10px;
}

.oem-application-form .oem-repeater-head {
    margin-bottom: 9px;
    font-size: 13px;
}

.oem-application-form .oem-config-table {
    font-size: 12px;
}

.oem-application-note {
    display: grid;
    gap: 8px;
    margin: 2px 0 0;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--oem-accent, #e1262f) 32%, #dbe3ec 68%);
    border-left: 4px solid var(--oem-accent, #e1262f);
    border-radius: 8px;
    background: color-mix(in srgb, var(--oem-accent, #e1262f) 5%, #fff 95%);
}

.oem-application-note label {
    margin: 0;
}

.oem-application-note p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.oem-application-form .oem-step summary::after,
.oem-substep summary::after {
    content: "+";
    width: 26px;
    height: 26px;
    margin-left: auto;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #e8eef6;
    color: var(--oem-primary);
}

.oem-application-form .oem-step[open] > summary::after,
.oem-substep[open] > summary::after {
    content: "-";
}

.oem-repeater,
.oem-repeater-list,
.oem-nested-steps,
.oem-category-list {
    display: grid;
    gap: 10px;
}

.oem-repeater-card,
.oem-substep {
    min-width: 0;
    padding: 12px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #f8fafc;
}

.oem-repeater-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--oem-primary);
}

.oem-icon-btn {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #fecaca;
    border-radius: 6px;
    background: #fff;
    color: #b91c1c;
    font-size: 22px;
    cursor: pointer;
}

.oem-inline-row {
    display: grid;
    grid-template-columns: minmax(130px, .45fr) minmax(220px, 1fr) 36px;
    gap: 8px;
    align-items: center;
}

.oem-category-row {
    grid-template-columns: minmax(180px, 1fr) 110px 72px 110px 36px;
    padding: 8px;
    border: 1px solid #dbe3ec;
    border-radius: 6px;
    background: #fff;
}

.oem-form-row--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oem-split-input {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 6px;
}

.oem-rental-prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 8px;
}

.oem-price-pair {
    display: grid;
    gap: 7px;
    padding: 10px;
    border: 1px solid #dbe3ec;
    border-radius: 7px;
    background: #fff;
}

.oem-check-line {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 8px !important;
}

.oem-check-line input {
    width: auto;
}

.oem-substep {
    padding: 0;
    overflow: hidden;
}

.oem-substep summary {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 900;
}

.oem-substep-body {
    padding: 10px;
    border-top: 1px solid #dbe3ec;
}

.oem-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.oem-config-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
}

.oem-config-table th,
.oem-config-table td {
    padding: 7px;
    border: 1px solid #dbe3ec;
    text-align: left;
    vertical-align: middle;
}

.oem-config-table input,
.oem-config-table select {
    min-width: 76px;
    width: 100%;
}

.oem-config-table--compact {
    min-width: 520px;
}

.oem-config-table--compact th:not(:first-child),
.oem-config-table--compact td:not(:first-child) {
    width: 64px;
    text-align: center;
}

.oem-config-table--compact input[type="checkbox"] {
    min-width: 0;
    width: auto;
}

.oem-social-icon-font {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.oem-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.oem-radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
}

.oem-check-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #fff;
}

.oem-locked-box {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px dashed #f59e0b;
    border-radius: 8px;
    background: #fffbeb;
    color: #78350f;
}

.oem-locked-box p {
    margin: 0;
    color: #92400e;
}

.oem-locked-box button[disabled] {
    opacity: .55;
    cursor: not-allowed;
}

.oem-empty {
    border: 1px dashed #b8c4d2;
    border-radius: 8px;
    padding: 26px;
    background: #fff;
    color: #64748b;
    font-weight: 900;
    text-align: center;
}

.oem-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.oem-event-meta span {
    display: inline-flex;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    font-weight: 850;
}

.oem-page-card {
    padding: 28px;
}

.oem-page-card h1,
.oem-page-card h2 {
    margin-top: 0;
}

.oem-site-footer {
    padding: 36px 0;
    background: #0f172a;
    color: #cbd5e1;
}

.oem-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.oem-footer-inner strong {
    color: #fff;
}

.oem-footer-inner p {
    max-width: 680px;
    margin: 6px 0 0;
}

.oem-footer-inner img {
    max-height: var(--oem-footer-logo, 56px);
    object-fit: contain;
}

.oem-footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-bottom: 28px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.oem-footer-widget h3 {
    margin: 0 0 10px;
    color: #fff;
}

.oem-footer-widget p,
.oem-footer-widget ul {
    margin-top: 0;
}

.oem-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    font-size: var(--oem-font-menu, 14px);
}

.oem-footer-menu a {
    color: #e2e8f0;
    font-weight: 800;
    text-decoration: none;
}

.oem-footer-menu a:hover {
    color: #fff;
}

.oem-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.oem-social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(8, 46, 99, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: var(--oem-primary);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.oem-social-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
    border-radius: 4px;
}

.oem-social-links--topbar {
    justify-content: flex-end;
}

.oem-social-links--topbar a {
    min-height: 28px;
    padding: 4px 8px;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.oem-social-links--topbar a:hover,
.oem-social-links--topbar a:focus {
    background: rgba(255, 255, 255, .18);
}

.oem-social-links--footer {
    margin-top: 14px;
}

.oem-social-links--footer a {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.oem-rich-text > :first-child {
    margin-top: 0;
}

.oem-rich-text > :last-child {
    margin-bottom: 0;
}

.oem-contact-actions-section {
    padding-bottom: 0;
}

.oem-contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.oem-contact-action {
    display: grid;
    gap: 5px;
    padding: 18px;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(8, 46, 99, .08);
    color: #0f172a;
    text-decoration: none;
    min-width: 0;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.oem-contact-action span {
    color: #64748b;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.oem-contact-action strong {
    overflow-wrap: anywhere;
}

.oem-contact-action:hover,
.oem-contact-action:focus {
    border-color: var(--oem-hover, #f97316);
    box-shadow: 0 18px 42px color-mix(in srgb, var(--oem-hover, #f97316) 18%, transparent 82%);
    transform: translateY(-1px);
}

.oem-contact-action.is-whatsapp {
    border-color: rgba(37, 211, 102, .38);
    background: linear-gradient(180deg, #fff, #f0fdf4);
}

.oem-contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.oem-contact-info,
.oem-contact-form-card {
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(8, 46, 99, .08);
}

.oem-contact-info {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.oem-contact-form-card {
    padding: 18px;
}

.oem-contact-card {
    padding: 14px;
    border: 1px solid #e5ebf3;
    border-radius: 10px;
    background: #f8fafc;
}

.oem-contact-card span {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.oem-contact-card a,
.oem-contact-card strong,
.oem-contact-card p {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.oem-contact-icon-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 4px 0;
}

.oem-contact-icon-action {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dbe3ec;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.oem-contact-icon-action:hover,
.oem-contact-icon-action:focus {
    border-color: var(--oem-hover, #f97316);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
    transform: translateY(-1px);
    outline: none;
}

.oem-contact-icon-action .dashicons,
.oem-contact-icon-action .oem-event-card__contact-svg,
.oem-contact-icon-img {
    width: 21px;
    height: 21px;
    font-size: 21px;
    line-height: 1;
}

.oem-contact-icon-img {
    display: block;
    object-fit: contain;
    border-radius: 4px;
}

.oem-contact-icon-action[data-contact-type="whatsapp"] {
    color: #128c7e;
}

.oem-social-links--contact {
    flex-direction: row;
    align-items: center;
}

.oem-social-links--contact a {
    flex: 0 1 auto;
}

.oem-form-notice {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 800;
}

.oem-form-notice.is-success {
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
}

.oem-form-notice.is-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.oem-hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.oem-human-check {
    max-width: 280px;
}

.oem-map-frame {
    overflow: hidden;
    border: 1px solid #dbe3ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(8, 46, 99, .08);
}

.oem-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

.oem-event-filter {
    display: grid;
    grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(140px, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(8, 46, 99, .07);
}

.oem-event-filter label {
    display: grid;
    gap: 6px;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
}

.oem-event-filter input,
.oem-event-filter select {
    min-height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
    color: #0f172a;
    font: inherit;
    font-size: var(--oem-font-form, 14px);
}

.oem-table-wrap {
    overflow-x: auto;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(8, 46, 99, .08);
}

.oem-events-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.oem-events-table th,
.oem-events-table td {
    padding: 12px;
    border-bottom: 1px solid #e5ebf3;
    text-align: left;
    vertical-align: middle;
}

.oem-events-table th {
    background: #eef4fb;
    color: #082e63;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.oem-event-table-title {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 260px;
}

.oem-event-table-title img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: contain;
    background: #f8fafc;
}

.oem-event-table-title a {
    color: #0f172a;
    text-decoration: none;
}

.oem-table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 920px) {
    .oem-site-topbar__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .oem-top-menu,
    .oem-bottom-menu {
        width: 100%;
        overflow-x: auto;
    }

    .oem-top-menu-list,
    .oem-bottom-menu-list {
        width: max-content;
        min-width: 100%;
        flex-wrap: nowrap;
    }

    .oem-social-links--topbar {
        align-self: flex-end;
    }

    .oem-menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .oem-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid #dbe3ec;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 20px 60px rgba(15, 23, 42, .18);
    }

    .oem-nav.is-open {
        display: flex;
    }

    .oem-nav a {
        text-align: center;
    }

    .oem-nav .menu-item-has-children,
    .oem-nav-fallback-parent {
        display: grid;
    }

    .oem-nav .sub-menu,
    .oem-nav-fallback-submenu {
        position: static;
        display: grid;
        width: auto;
        min-width: 0;
        margin: 0 10px 5px;
        padding: 5px;
        border-radius: 9px;
        background: #f8fafc;
        box-shadow: none;
    }

    .oem-nav .sub-menu a,
    .oem-nav-fallback-submenu a {
        white-space: normal;
    }

    .oem-langs {
        justify-content: center;
        padding-left: 0;
    }

    .oem-hero-grid,
    .oem-event-hero__grid,
    .oem-two-col,
    .oem-application__grid,
    .oem-contact-actions,
    .oem-contact-layout,
    .oem-footer-widgets {
        grid-template-columns: 1fr;
    }

    .oem-event-filter {
        grid-template-columns: 1fr 1fr;
    }

    .oem-reference-grid.is-marquee {
        width: 100%;
        overflow-x: auto;
        animation: none;
        scroll-snap-type: x proximity;
    }

    .oem-event-hero__logo {
        width: min(220px, 100%);
    }

    .oem-hero-grid,
    .oem-event-hero__grid {
        min-height: auto;
        padding: 44px 0;
    }

    .oem-contact-hero .oem-event-hero__grid {
        padding: 28px 0;
    }

    .oem-register-callout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .oem-container {
        width: min(100% - 22px, 1160px);
    }

    .oem-header-inner {
        min-height: 66px;
    }

    .oem-nav {
        top: 66px;
    }

    .oem-hero h1,
    .oem-event-hero h1 {
        font-size: 38px;
    }

    .oem-contact-hero h1 {
        font-size: 30px;
    }

    .oem-search-panel div,
    .oem-event-filter,
    .oem-event-card,
    .oem-event-grid--list .oem-event-card,
    .oem-news-grid.is-list .oem-news-card,
    .oem-form-row,
    .oem-form-row--five,
    .oem-form-row--three,
    .oem-fee-grid,
    .oem-phone-row,
    body.oem-card-wide .oem-event-card {
        grid-template-columns: 1fr;
    }

    .oem-application__grid {
        gap: 22px;
    }

    .oem-application-form .oem-step-body,
    .oem-repeater-card {
        padding: 10px;
    }

    .oem-application-form .oem-step-body {
        grid-template-columns: 1fr;
    }

    .oem-application-form .oem-step-body > * {
        grid-column: auto;
    }

    .oem-application {
        padding-top: 34px;
    }

    .oem-application h2 {
        font-size: 26px;
    }

    .oem-application-form .oem-step summary {
        font-size: 13px;
    }

    .oem-application-form {
        grid-template-columns: 1fr;
    }

    .oem-application-form > .oem-step[open],
    .oem-application-form > .oem-alert,
    .oem-application-form > .oem-application-note,
    .oem-application-form > button[type="submit"] {
        grid-column: auto;
    }

    .oem-inline-row,
    .oem-category-row {
        grid-template-columns: 1fr;
    }

    .oem-inline-row .oem-icon-btn,
    .oem-category-row .oem-icon-btn {
        justify-self: end;
    }

    .oem-section,
    .oem-band {
        padding: 44px 0;
    }

    .oem-section-head {
        display: block;
    }

    .oem-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

.oem-limit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.oem-limit-row label {
    display: inline-grid;
    grid-template-columns: auto 4.8rem;
    gap: 8px;
    align-items: center;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    background: #fff;
}

.oem-limit-row label span {
    margin: 0;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.2;
}

.oem-limit-row .oem-compact-number {
    width: 4.8rem;
    min-width: 0;
    max-width: 4.8rem;
    text-align: center;
}

@media (max-width: 620px) {
    .oem-limit-row label {
        grid-template-columns: minmax(0, 1fr) 4.8rem;
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 420px) {
    .oem-limit-row label {
        flex-basis: 100%;
    }
}

/* Küçük ekranlarda uzun çeviriler ve dinamik tablolar için ortak taşma koruması. */
@media (max-width: 760px) {
    html,
    body,
    .oem-site,
    .oem-container,
    .oem-section,
    .oem-page-card,
    .oem-event-card {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .oem-rich-text,
    .oem-public-update__head,
    .oem-public-update__section,
    .oem-update-release__head {
        overflow-wrap: anywhere;
    }
    .oem-public-update__head,
    .oem-update-release__head {
        align-items: flex-start;
        flex-direction: column;
    }
    .oem-table-scroll,
    .oem-responsive-table,
    .oem-public-updates table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }
    .oem-nav a,
    .oem-btn,
    .oem-menu-toggle {
        min-height: 44px;
    }
}

.oem-hero h1,
.oem-event-hero h1,
.oem-contact-hero h1,
.oem-single-header h1,
.oem-page-card h1,
.oem-page-card h2,
.oem-section-head h2,
.oem-two-col h2,
.oem-application h2,
.oem-event-explorer__top h2 {
    font-size: var(--oem-font-heading, 34px);
}
/* Public results, references and consent-based feedback. */
.oem-feature-filter{display:grid;grid-template-columns:minmax(240px,1.5fr) repeat(2,minmax(150px,.65fr)) auto;gap:12px;align-items:end;margin:0 0 24px;padding:18px;border:1px solid #dbe4ef;border-radius:18px;background:#fff;box-shadow:0 14px 35px rgba(15,42,74,.06)}
.oem-feature-filter label{display:grid;gap:6px;color:#475569;font-size:12px;font-weight:800}
.oem-feature-filter input,.oem-feature-filter select{width:100%;min-height:45px;box-sizing:border-box;padding:9px 12px;border:1px solid #cbd5e1;border-radius:10px;background:#fff;color:#0f172a;font:inherit;font-weight:600}
.oem-feature-filter input:focus,.oem-feature-filter select:focus{outline:3px solid rgba(37,99,235,.16);border-color:#2563eb}
.oem-result-list{display:grid;gap:16px}
.oem-result-event{overflow:hidden;border:1px solid #dbe4ef;border-radius:20px;background:#fff;box-shadow:0 18px 44px rgba(15,42,74,.07)}
.oem-result-event>summary{display:grid;grid-template-columns:74px minmax(0,1fr) auto auto;gap:15px;align-items:center;padding:16px 18px;cursor:pointer;list-style:none}
.oem-result-event>summary::-webkit-details-marker{display:none}
.oem-result-event[open]>summary{border-bottom:1px solid #dbe4ef;background:linear-gradient(135deg,#f8fbff,#eff6ff)}
.oem-result-event__logo,.oem-reference-card__logo{display:grid;place-items:center;overflow:hidden;background:#fff;border:1px solid #dbe4ef;border-radius:14px;color:var(--oem-primary,#082e63);font-size:25px;font-weight:900}
.oem-result-event__logo{width:72px;height:64px}
.oem-result-event__logo img,.oem-reference-card__logo img{width:100%;height:100%;padding:7px;box-sizing:border-box;object-fit:contain}
.oem-result-event__identity{display:grid;gap:5px;min-width:0}
.oem-result-event__identity strong{color:#0f172a;font-size:18px;line-height:1.25}
.oem-result-event__identity small{color:#64748b;line-height:1.5}
.oem-result-status{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;background:#e2e8f0;color:#334155;font-size:11px;font-weight:900;white-space:nowrap}
.oem-result-status.is-final{background:#dcfce7;color:#166534}.oem-result-status.is-provisional{background:#dbeafe;color:#1d4ed8}.oem-result-status.is-documents{background:#fef3c7;color:#92400e}
.oem-result-event__open{color:#1d4ed8;font-size:12px;font-weight:900;white-space:nowrap}
.oem-result-event[open] .oem-result-event__open{color:transparent;font-size:0}.oem-result-event[open] .oem-result-event__open:after{content:'⌃';color:#1d4ed8;font-size:18px}
.oem-result-event__content{display:grid;gap:20px;padding:20px;min-width:0;overflow:hidden}
.oem-result-documents{display:grid;gap:10px}.oem-result-documents h3{margin:0 0 4px}
.oem-result-document{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;align-items:center;padding:13px 14px;border:1px solid #dbe4ef;border-radius:12px;background:#f8fafc;color:#0f172a;text-decoration:none}
.oem-result-document:hover{border-color:#93c5fd;background:#eff6ff}.oem-result-document>span:first-child{font-size:24px}.oem-result-document>span:nth-child(2){display:grid;gap:3px}.oem-result-document small,.oem-result-document time{color:#64748b;font-size:12px}.oem-result-onb-link{margin:0;text-align:right}
.oem-reference-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.oem-reference-card{display:grid;grid-template-columns:88px minmax(0,1fr) auto;gap:15px;align-items:center;min-height:112px;padding:16px;border:1px solid #dbe4ef;border-radius:20px;background:#fff;color:#0f172a;text-decoration:none;box-shadow:0 16px 38px rgba(15,42,74,.07);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.oem-reference-card:hover{transform:translateY(-3px);border-color:#93c5fd;box-shadow:0 20px 45px rgba(15,42,74,.12)}
.oem-reference-card__logo{width:86px;height:78px}.oem-reference-card__body{display:grid;gap:6px;min-width:0}.oem-reference-card__body strong{font-size:16px;line-height:1.3}.oem-reference-card__body small{color:#64748b;font-size:12px;line-height:1.4}
.ozdem-feedback-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ozdem-feedback-card{display:flex;flex-direction:column;min-height:230px;margin:0;padding:20px;border:1px solid #dbe4ef;border-radius:20px;background:linear-gradient(155deg,#fff,#f8fbff);box-shadow:0 16px 38px rgba(15,42,74,.07)}
.ozdem-feedback-card__person{display:flex;gap:12px;align-items:center}.ozdem-feedback-card__person>div{display:grid;gap:4px}.ozdem-feedback-card__photo,.ozdem-feedback-card__avatar{width:56px;height:56px;flex:0 0 56px;border-radius:50%;object-fit:cover}
.ozdem-feedback-card__avatar{display:grid;place-items:center;background:linear-gradient(135deg,var(--oem-primary,#082e63),#2563eb);color:#fff;font-size:22px;font-weight:900}
.ozdem-feedback-card__stars{display:block;color:#f59e0b;font-size:16px;letter-spacing:1px}.ozdem-feedback-card blockquote{margin:18px 0 0;color:#334155;font-size:15px;line-height:1.75}.ozdem-feedback-card blockquote:before{content:'“';display:block;height:24px;color:#93c5fd;font:900 38px/1 Georgia,serif}.ozdem-feedback-card blockquote p{margin:0}
.ozdem-feedback-form-wrap{max-width:900px;margin:34px auto 0;padding:26px;border:1px solid #dbe4ef;border-radius:22px;background:#fff;box-shadow:0 20px 50px rgba(15,42,74,.08)}
.ozdem-feedback-form-wrap>header{margin-bottom:18px}.ozdem-feedback-form-wrap h2{margin:4px 0 0}.ozdem-feedback-form{display:grid;gap:16px}.ozdem-feedback-form__grid{display:grid;grid-template-columns:1fr 1fr;gap:15px}.ozdem-feedback-form label{display:grid;gap:7px;color:#334155;font-size:13px;font-weight:800}.ozdem-feedback-form input[type=text],.ozdem-feedback-form input[type=email],.ozdem-feedback-form input[type=file],.ozdem-feedback-form textarea{width:100%;box-sizing:border-box;padding:11px 12px;border:1px solid #cbd5e1;border-radius:10px;background:#fff;color:#0f172a;font:inherit;font-weight:500}.ozdem-feedback-form textarea{resize:vertical}.ozdem-feedback-form small{color:#64748b;font-weight:500}
.ozdem-feedback-rating{min-width:0;margin:0;padding:0;border:0}.ozdem-feedback-rating legend{margin-bottom:7px;color:#334155;font-size:13px;font-weight:800}.ozdem-feedback-rating>div{display:flex;flex-direction:row-reverse;justify-content:flex-end;gap:2px}.ozdem-feedback-rating input{position:absolute;opacity:0;pointer-events:none}.ozdem-feedback-rating label{display:block;color:#cbd5e1;font-size:29px;line-height:1;cursor:pointer}.ozdem-feedback-rating input:checked~label,.ozdem-feedback-rating label:hover,.ozdem-feedback-rating label:hover~label{color:#f59e0b}
.ozdem-feedback-consent{grid-template-columns:auto 1fr!important;align-items:flex-start;padding:14px;border:1px solid #bfdbfe;border-radius:12px;background:#eff6ff;line-height:1.55}.ozdem-feedback-consent input{margin-top:4px}.ozdem-feedback-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.ozdem-feedback-message{margin:0 0 18px;padding:12px 14px;border-radius:10px;font-weight:750}.ozdem-feedback-message.is-success{border:1px solid #86efac;background:#f0fdf4;color:#166534}.ozdem-feedback-message.is-error{border:1px solid #fecaca;background:#fef2f2;color:#b91c1c}
@media(max-width:980px){.oem-feature-filter{grid-template-columns:1fr 1fr}.oem-reference-page-grid,.ozdem-feedback-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.oem-feature-filter,.ozdem-feedback-form__grid{grid-template-columns:1fr}.oem-result-event>summary{grid-template-columns:58px minmax(0,1fr);padding:13px}.oem-result-event__logo{width:56px;height:54px}.oem-result-status,.oem-result-event__open{grid-column:2;justify-self:start}.oem-result-event__content{padding:14px}.oem-result-document{grid-template-columns:auto minmax(0,1fr)}.oem-result-document time{grid-column:2}.oem-reference-page-grid,.ozdem-feedback-grid{grid-template-columns:1fr}.oem-reference-card{grid-template-columns:72px minmax(0,1fr) auto}.oem-reference-card__logo{width:70px;height:68px}.ozdem-feedback-form-wrap{padding:18px}}
