* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    background: #f3f5f7;
    color: #17212b;
}

a {
    color: inherit;
}

.container {
    width: min(
        1380px,
        calc(100% - 40px)
    );
    margin: 0 auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #dfe5ea;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.brand-radar {
    font-size: 48px;
    line-height: 1;
}

.brand strong {
    display: block;
    font-size: 25px;
    letter-spacing: 1px;
}

.brand small {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    color: #66727d;
}

.top-nav {
    display: flex;
    gap: 22px;
}

.top-nav a {
    text-decoration: none;
    font-weight: 700;
}

.hero {
    padding: 48px 0 36px;
}

.hero-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 42px;
    border: 1px solid #e1e6ea;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(
        34px,
        5vw,
        58px
    );
}

.hero p {
    margin: 0;
    font-size: 19px;
    color: #62707c;
}

.section {
    padding: 22px 0 42px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-title h2 {
    margin: 0;
    font-size: 28px;
}

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

.card {
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 14px;
    overflow: hidden;
}

.card-image {
    height: 165px;
    background:
        linear-gradient(
            135deg,
            #d8dde2,
            #eef1f3
        );
}

.card-body {
    padding: 20px;
}

.card-kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #697681;
    margin-bottom: 8px;
}

.card h3 {
    margin: 0 0 9px;
    font-size: 20px;
}

.card p {
    margin: 0;
    color: #65727d;
    line-height: 1.5;
}

.ad-banner {
    min-height: 120px;
    background: #ffffff;
    border: 2px dashed #ccd3d9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7a858e;
    padding: 20px;
}

.city-grid {
    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(270px, 1fr)
        );
    gap: 20px;
}

.city-link {
    display: block;
    text-decoration: none;
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e1e6ea;
}

.city-link strong {
    display: block;
    font-size: 24px;
}

.city-link span {
    display: block;
    margin-top: 7px;
    color: #697681;
}

.login-wrap {
    min-height: calc(100vh - 170px);
    display: grid;
    place-items: center;
    padding: 50px 20px;
}

.login-card {
    width: min(460px, 100%);
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    border: 1px solid #e1e6ea;
}

.login-card h1 {
    margin-top: 0;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

.field input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #bdc7cf;
    border-radius: 8px;
    font-size: 16px;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    padding: 13px 20px;
    background: #17212b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.error {
    padding: 13px;
    background: #fff0f0;
    border: 1px solid #efc4c4;
    border-radius: 8px;
    margin-bottom: 18px;
}

.admin-header {
    background: #17212b;
    color: #ffffff;
    padding: 18px 0;
}

.admin-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-shell {
    padding: 34px 0 60px;
}

.stats {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 25px 0 35px;
}

.stat {
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 12px;
    padding: 24px;
}

.stat-number {
    font-size: 34px;
    font-weight: 700;
}

.stat-label {
    color: #687580;
    margin-top: 5px;
}

.admin-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.admin-tile {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 12px;
    padding: 24px;
}

.admin-tile strong {
    font-size: 19px;
}

.admin-tile span {
    display: block;
    color: #687580;
    margin-top: 7px;
    line-height: 1.45;
}

.site-footer {
    background: #17212b;
    color: #ffffff;
    padding: 38px 0;
    margin-top: 50px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1000px) {

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

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

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

@media (max-width: 650px) {

    .container {
        width: min(
            100% - 24px,
            1380px
        );
    }

    .header-inner {
        min-height: 74px;
    }

    .top-nav {
        display: none;
    }

    .brand strong {
        font-size: 20px;
    }

    .brand-radar {
        font-size: 38px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-box {
        padding: 26px 20px;
    }

    .grid,
    .stats,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }
}


/* ==================================================
   ORTS RADAR ADMIN STÄDTE
   ================================================== */

.admin-brand-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.admin-user-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-user-area a {
    color: #ffffff;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.admin-page-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 25px;
}

.admin-page-heading h1 {
    margin: 0 0 7px;
}

.admin-page-heading p {
    margin: 0;
    color: #687580;
}

.admin-count {
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
}

.admin-panel {
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 14px;
    padding: 26px;
}

.admin-table-wrap {
    overflow-x: auto;
    padding: 0;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 16px 18px;
    background: #f7f8f9;
    border-bottom: 1px solid #e1e6ea;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #65727d;
}

.admin-table td {
    padding: 18px;
    border-bottom: 1px solid #edf0f2;
    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.table-subline {
    display: block;
    margin-top: 5px;
    color: #74808a;
}

.table-actions {
    text-align: right !important;
}

.table-action-group {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.inline-form {
    display: inline;
    margin: 0;
}

.small-button {
    appearance: none;
    border: 1px solid #cbd3da;
    background: #ffffff;
    border-radius: 7px;
    padding: 8px 11px;
    text-decoration: none;
    color: #17212b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.small-button:hover {
    background: #f1f3f5;
}

.button-secondary {
    background: #ffffff;
    color: #17212b;
    border: 1px solid #cbd3da;
}

.success {
    padding: 14px 16px;
    margin-bottom: 20px;
    background: #edf9f1;
    border: 1px solid #b9dfc5;
    border-radius: 8px;
}

.status-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-active {
    background: #e5f6ea;
    color: #17652f;
}

.status-inactive {
    background: #f0f1f2;
    color: #65717a;
}

.status-headquarters {
    background: #e8edf9;
    color: #294e96;
}

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

.field-full {
    grid-column: 1 / -1;
}

.field select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #bdc7cf;
    border-radius: 8px;
    background: #ffffff;
    font-size: 16px;
}

.field small {
    display: block;
    margin-top: 6px;
    line-height: 1.4;
    color: #74808a;
}

.checkbox-row {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-row input {
    width: auto;
    margin-top: 4px;
}

.checkbox-row span {
    display: block;
}

.checkbox-row strong {
    display: block;
}

.checkbox-row small {
    display: block;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.admin-tile {
    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.admin-tile:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px
        rgba(0, 0, 0, .06);
}

code {
    font-family:
        Consolas,
        Monaco,
        monospace;
    font-size: 13px;
}


@media (max-width: 750px) {

    .admin-header-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .admin-user-area {
        width: 100%;
        justify-content: space-between;
    }

    .admin-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-toolbar .button {
        width: 100%;
        text-align: center;
    }

    .admin-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .field-full {
        grid-column: auto;
    }

    .admin-table {
        min-width: 850px;
    }
}


.status-preparation {
    background: #fff5d8;
    color: #765600;
}

.status-paused {
    background: #fff0d9;
    color: #8a5100;
}



/* ==================================================
   ORTS RADAR STADTPARTNER UND LIZENZEN
   ================================================== */

.partner-editor {
    display: grid;
    gap: 22px;
}

.partner-editor .admin-panel h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.section-help {
    margin-top: 0;
    margin-bottom: 22px;
    color: #687580;
    line-height: 1.6;
}

.field textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    padding: 13px 14px;
    border: 1px solid #bdc7cf;
    border-radius: 8px;
    background: #ffffff;
    font: inherit;
    box-sizing: border-box;
}

.empty-table {
    padding: 35px !important;
    text-align: center;
    color: #74808a;
}



/* ==================================================
   ORTS RADAR CONTENT ADMIN
   ================================================== */

.content-admin-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.content-admin-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 14px;
    padding: 22px;
}

.content-admin-card h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.content-admin-card p {
    margin: 0;
    color: #74808a;
}

.content-admin-count {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f3f6;
    font-weight: 800;
    font-size: 16px;
}


@media (max-width: 1100px) {

    .content-admin-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .content-admin-grid {
        grid-template-columns: 1fr;
    }
}



/* ==================================================
   ORTS RADAR NEWS SOURCES ADMIN
   ================================================== */

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

.content-admin-link {
    color: inherit;
    text-decoration: none;
    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.content-admin-link:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px
        rgba(0, 0, 0, .07);
}

.admin-table a {
    color: inherit;
}

@media (max-width: 750px) {

    .admin-toolbar-group {
        display: grid;
        width: 100%;
    }
}



/* ==========================================================
   ORTS RADAR PUBLIC PORTAL V1
   BLOCK 11
   ========================================================== */

:root {
    --or-bg: #f4f6f8;
    --or-card: #ffffff;
    --or-text: #17202a;
    --or-muted: #667085;
    --or-border: #e4e7ec;
    --or-dark: #111827;
    --or-darker: #0b1220;
    --or-accent: #ef3e36;
    --or-accent-dark: #c92f29;
    --or-soft: #fff1f0;
    --or-blue-soft: #eef5ff;
    --or-radius: 20px;
    --or-shadow:
        0 12px 35px
        rgba(17, 24, 39, 0.08);
}


html {
    scroll-behavior: smooth;
}


body.or-public {
    margin: 0;
    background: var(--or-bg);
    color: var(--or-text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


.or-public * {
    box-sizing: border-box;
}


.or-public a {
    color: inherit;
}


.or-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==========================================================
   HEADER
   ========================================================== */

.or-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid
        rgba(255,255,255,.08);
    background:
        rgba(11, 18, 32, .96);
    backdrop-filter: blur(12px);
    color: #fff;
}


.or-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}


.or-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}


.or-brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at center,
            #fff 0 7%,
            transparent 8% 22%,
            rgba(255,255,255,.9) 23% 26%,
            transparent 27% 45%,
            rgba(255,255,255,.55) 46% 49%,
            transparent 50%
        ),
        var(--or-accent);
    color: transparent;
    box-shadow:
        0 0 0 4px
        rgba(239,62,54,.12);
}


.or-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}


.or-brand-copy strong {
    font-size: 18px;
    letter-spacing: .08em;
}


.or-brand-copy small {
    margin-top: 6px;
    color: #cbd5e1;
    font-size: 12px;
}


.or-main-nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
}


.or-main-nav a {
    text-decoration: none;
    color: #dbe2ea;
    font-size: 14px;
    font-weight: 650;
}


.or-main-nav a:hover {
    color: #fff;
}


.or-header-city-button {
    padding: 11px 16px;
    border: 1px solid
        rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* ==========================================================
   CITY HERO
   ========================================================== */

.or-city-hero {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(239,62,54,.35),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #111827,
            #0b1220
        );
    color: #fff;
}


.or-city-hero-grid {
    min-height: 340px;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
    gap: 50px;
}


.or-city-hero h1,
.or-home-hero h1 {
    margin: 10px 0 14px;
    font-size:
        clamp(38px, 6vw, 70px);
    line-height: .98;
    letter-spacing: -.045em;
}


.or-city-hero p,
.or-home-hero p {
    max-width: 660px;
    color: #d0d5dd;
    font-size: 19px;
    line-height: 1.6;
}


.or-eyebrow {
    display: inline-block;
    color: var(--or-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}


.or-eyebrow.light {
    color: #ffd1ce;
}


.or-city-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


.or-city-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid
        rgba(255,255,255,.12);
    border-radius: 999px;
    background:
        rgba(255,255,255,.06);
    color: #dbe2ea;
    font-size: 13px;
}


.or-city-stats strong {
    color: #fff;
    font-size: 16px;
}


.or-radar-visual {
    position: relative;
    width: min(290px, 100%);
    aspect-ratio: 1;
    justify-self: end;
}


.or-radar-ring {
    position: absolute;
    inset: 50%;
    border: 1px solid
        rgba(255,255,255,.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


.or-radar-ring.ring-1 {
    width: 35%;
    height: 35%;
}


.or-radar-ring.ring-2 {
    width: 66%;
    height: 66%;
}


.or-radar-ring.ring-3 {
    width: 96%;
    height: 96%;
}


.or-radar-center {
    position: absolute;
    inset: 50%;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--or-accent);
    box-shadow:
        0 0 60px
        rgba(239,62,54,.48);
    font-size: 36px;
}


/* ==========================================================
   HOME
   ========================================================== */

.or-home-hero {
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(239,62,54,.28),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #111827,
            #0b1220
        );
    color: #fff;
}


.or-city-selection {
    padding: 70px 0 100px;
}


.or-city-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}


.or-city-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 110px;
    padding: 20px;
    border: 1px solid var(--or-border);
    border-radius: var(--or-radius);
    background: #fff;
    box-shadow: var(--or-shadow);
    text-decoration: none;
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.or-city-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px
        rgba(17,24,39,.12);
}


.or-city-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--or-soft);
    color: var(--or-accent);
    font-size: 25px;
}


.or-city-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.or-city-card-content strong {
    font-size: 17px;
}


.or-city-card-content small {
    color: var(--or-muted);
}


.or-city-card-arrow {
    margin-left: auto;
    font-size: 23px;
}


/* ==========================================================
   ADVERTISING
   ========================================================== */

.or-ad-section {
    padding-top: 34px;
}


.or-ad-slot,
.or-inline-ad {
    position: relative;
    overflow: hidden;
    border: 1px dashed #cfd4dc;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #fff,
            #f8fafc
        );
    color: var(--or-muted);
}


.or-ad-slot {
    min-height: 130px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.or-ad-slot-wide {
    min-height: 150px;
}


.or-ad-slot strong,
.or-inline-ad strong {
    color: #475467;
}


.or-ad-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}


.or-inline-ad {
    grid-column: 1 / -1;
    min-height: 105px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* ==========================================================
   SECTION HEADINGS
   ========================================================== */

.or-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px;
}


.or-section-heading h2 {
    margin: 6px 0 0;
    font-size:
        clamp(28px, 4vw, 42px);
    letter-spacing: -.035em;
}


.or-section-count {
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    color: var(--or-muted);
    font-size: 13px;
    box-shadow:
        0 3px 12px
        rgba(16,24,40,.05);
}


/* ==========================================================
   NEWS
   ========================================================== */

.or-news-section {
    padding-top: 70px;
    padding-bottom: 85px;
}


.or-news-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
}


.or-news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--or-border);
    border-radius: var(--or-radius);
    background: var(--or-card);
    box-shadow:
        0 6px 22px
        rgba(16,24,40,.06);
}


.or-news-card-visual {
    position: relative;
    min-height: 148px;
    padding: 16px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(239,62,54,.22),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #172033,
            #0c1424
        );
}


.or-news-location {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--or-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}


.or-news-placeholder {
    height: 100%;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dbe2ea;
}


.or-news-placeholder-radar {
    font-size: 42px;
    line-height: 1;
}


.or-news-placeholder small {
    margin-top: 8px;
    color: #98a2b3;
}


.or-news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}


.or-news-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--or-muted);
    font-size: 11px;
}


.or-news-category {
    color: var(--or-accent-dark);
    font-weight: 800;
}


.or-news-card h3 {
    margin: 12px 0;
    font-size: 18px;
    line-height: 1.32;
    letter-spacing: -.018em;
}


.or-news-card p {
    margin: 0 0 20px;
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.6;
}


.or-news-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #edf0f3;
}


.or-news-source {
    display: block;
    margin-bottom: 11px;
    color: #98a2b3;
    font-size: 10px;
}


.or-news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--or-accent-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


.or-empty-state {
    padding: 50px;
    border-radius: var(--or-radius);
    background: #fff;
    text-align: center;
}


/* ==========================================================
   MODULES
   ========================================================== */

.or-module-section {
    padding: 80px 0;
    background: #fff;
}


.or-module-white-section {
    padding-top: 80px;
    padding-bottom: 80px;
}


.or-module-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}


.or-module-grid-four {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.or-module-card {
    padding: 28px;
    border: 1px solid var(--or-border);
    border-radius: var(--or-radius);
    background: #fff;
    box-shadow:
        0 5px 20px
        rgba(16,24,40,.05);
}


.or-module-card.compact {
    min-height: 200px;
}


.or-module-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--or-soft);
    color: var(--or-accent);
    font-size: 22px;
    font-weight: 800;
}


.or-module-card h3 {
    margin: 0 0 9px;
}


.or-module-card p {
    color: var(--or-muted);
    line-height: 1.6;
}


.or-coming-soon {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f2f4f7;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}


/* ==========================================================
   JOBS
   ========================================================== */

.or-jobs-section {
    padding: 40px 0 80px;
}


.or-jobs-box {
    padding: 44px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(239,62,54,.35),
            transparent 30%
        ),
        var(--or-darker);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.or-jobs-box h2 {
    margin: 6px 0 12px;
    font-size: 34px;
}


.or-jobs-box p {
    max-width: 620px;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}


.or-jobs-action {
    padding: 13px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--or-dark);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}


/* ==========================================================
   BOTTOM ADS
   ========================================================== */

.or-bottom-ads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 80px;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.or-footer {
    padding: 42px 0;
    background: #080f1c;
    color: #fff;
}


.or-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}


.or-footer p {
    margin: 7px 0;
    color: #98a2b3;
}


.or-footer small {
    color: #667085;
}


.or-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}


.or-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
}


/* ==========================================================
   404
   ========================================================== */

.or-not-found {
    padding: 100px 0;
    text-align: center;
}


.or-not-found .or-brand-mark {
    margin: 0 auto;
}


.or-primary-button {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--or-accent);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

    .or-main-nav {
        display: none;
    }

    .or-header-city-button {
        margin-left: auto;
    }

    .or-news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .or-module-grid-four {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .or-city-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .or-shell {
        width:
            min(
                100% - 24px,
                1180px
            );
    }

    .or-header-inner {
        min-height: 66px;
        gap: 10px;
    }

    .or-brand-mark {
        width: 38px;
        height: 38px;
    }

    .or-brand-copy strong {
        font-size: 15px;
    }

    .or-brand-copy small {
        font-size: 10px;
    }

    .or-header-city-button {
        padding: 9px 11px;
        font-size: 11px;
    }

    .or-city-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 55px 0;
    }

    .or-radar-visual {
        display: none;
    }

    .or-city-hero h1,
    .or-home-hero h1 {
        font-size: 42px;
    }

    .or-city-hero p,
    .or-home-hero p {
        font-size: 16px;
    }

    .or-city-stats {
        gap: 7px;
    }

    .or-city-stats span {
        padding: 8px 10px;
        font-size: 11px;
    }

    .or-news-grid,
    .or-module-grid,
    .or-module-grid-four,
    .or-city-grid,
    .or-bottom-ads {
        grid-template-columns: 1fr;
    }

    .or-news-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .or-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .or-section-heading h2 {
        font-size: 30px;
    }

    .or-news-card-visual {
        min-height: 125px;
    }

    .or-module-section,
    .or-module-white-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .or-jobs-box {
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .or-bottom-ads {
        padding-bottom: 55px;
    }

    .or-footer-inner {
        flex-direction: column;
    }

    .or-home-hero {
        padding: 70px 0;
    }

    .or-city-selection {
        padding: 55px 0 70px;
    }
}



/* ==========================================================
   ORTS RADAR NEWS DETAIL V1
   BLOCK 12
   ========================================================== */

.or-article-page {
    padding: 45px 0 90px;
}


.or-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--or-muted);
    font-size: 13px;
}


.or-breadcrumb a {
    color: var(--or-muted);
    text-decoration: none;
}


.or-article-header {
    max-width: 950px;
    margin-bottom: 38px;
}


.or-article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}


.or-article-tags .or-news-location {
    position: static;
}


.or-article-category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--or-soft);
    color: var(--or-accent-dark);
    font-size: 11px;
    font-weight: 800;
}


.or-article-header h1 {
    margin: 0 0 20px;
    font-size:
        clamp(
            34px,
            5vw,
            60px
        );
    line-height: 1.06;
    letter-spacing: -.04em;
}


.or-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 24px;
    color: var(--or-muted);
    font-size: 13px;
}


.or-article-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        300px;
    gap: 35px;
    align-items: start;
}


.or-article-placeholder {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(239,62,54,.30),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #172033,
            #0b1220
        );
    color: #fff;
}


.or-article-placeholder span {
    font-size: 78px;
}


.or-article-placeholder small {
    margin-top: 12px;
    color: #cbd5e1;
}


.or-article-lead {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 550;
    color: #344054;
}


.or-article-content {
    color: #344054;
    font-size: 17px;
    line-height: 1.82;
}


.or-article-content p {
    margin-bottom: 24px;
}


.or-article-source-box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 45px;
    padding: 22px;
    border: 1px solid var(--or-border);
    border-radius: 16px;
    background: #fff;
}


.or-article-source-box a {
    margin-top: 5px;
    color: var(--or-accent-dark);
    text-decoration: none;
    font-weight: 800;
}


.or-article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.or-article-sidebar .or-ad-slot {
    min-height: 250px;
}


.or-article-back-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--or-border);
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
}


.or-article-back-card > span {
    color: var(--or-accent);
    font-size: 24px;
}


.or-article-back-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.or-article-back-card small {
    color: var(--or-muted);
}


@media (max-width: 900px) {

    .or-article-layout {
        grid-template-columns: 1fr;
    }

    .or-article-sidebar {
        position: static;
    }
}


@media (max-width: 700px) {

    .or-article-page {
        padding: 30px 0 60px;
    }

    .or-article-header h1 {
        font-size: 34px;
    }

    .or-article-placeholder {
        min-height: 210px;
    }

    .or-article-lead {
        font-size: 17px;
    }

    .or-article-content {
        font-size: 16px;
    }
}



/* ==========================================================
   ORTS RADAR EVENTS PUBLIC V1
   BLOCK 13
   ========================================================== */

.or-events-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 20px;
}


.or-event-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border:
        1px solid
        var(--or-border);
    border-radius:
        var(--or-radius);
    background: #fff;
    box-shadow:
        0 6px 22px
        rgba(16,24,40,.06);
}


.or-event-card.highlighted {
    border:
        2px solid
        rgba(239,62,54,.38);
}


.or-event-date-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );
    color: #fff;
}


.or-event-date-box strong {
    font-size: 16px;
}


.or-event-date-box span {
    color: #d0d5dd;
    font-size: 12px;
}


.or-event-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}


.or-event-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}


.or-event-type {
    color: var(--or-accent-dark);
    font-size: 12px;
    font-weight: 800;
}


.or-event-highlight {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--or-soft);
    color: var(--or-accent-dark);
    font-size: 10px;
    font-weight: 800;
}


.or-event-card h3 {
    margin: 14px 0 10px;
    font-size: 20px;
    line-height: 1.3;
}


.or-event-card p {
    margin: 0 0 18px;
    color: var(--or-muted);
    font-size: 14px;
    line-height: 1.6;
}


.or-event-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 15px;
    border-top:
        1px solid
        #edf0f3;
    color: #667085;
    font-size: 12px;
}


.or-event-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--or-accent-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


.or-events-empty {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border:
        1px dashed
        #d0d5dd;
    border-radius:
        var(--or-radius);
    background:
        #f8fafc;
}


.or-events-empty-icon {
    width: 58px;
    height: 58px;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    border-radius: 18px;
    background: var(--or-soft);
    color: var(--or-accent);
    font-size: 28px;
}


.or-events-empty strong {
    display: block;
    margin-bottom: 5px;
}


.or-events-empty p {
    margin: 0;
    color: var(--or-muted);
    line-height: 1.5;
}


@media (max-width: 1000px) {

    .or-events-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}


@media (max-width: 700px) {

    .or-events-grid {
        grid-template-columns:
            1fr;
    }

    .or-events-empty {
        align-items: flex-start;
        flex-direction: column;
    }
}



/* ==========================================================
   ORTS RADAR CLASSIFIEDS PUBLIC V1
   BLOCK 14
   ========================================================== */

.or-classified-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-top: 65px;
    margin-bottom: 28px;
}

.or-classified-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -.035em;
}

.or-classified-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 20px;
}

.or-classified-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--or-border);
    border-radius: var(--or-radius);
    background: #fff;
    box-shadow:
        0 6px 22px
        rgba(16,24,40,.06);
}

.or-classified-card.featured {
    border:
        2px solid
        rgba(239,62,54,.42);
}

.or-classified-visual {
    position: relative;
    min-height: 175px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #172033,
            #0b1220
        );
}

.or-classified-visual img {
    width: 100%;
    height: 175px;
    display: block;
    object-fit: cover;
}

.or-classified-placeholder {
    min-height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.or-classified-placeholder span {
    font-size: 46px;
    line-height: 1;
}

.or-classified-placeholder small {
    margin-top: 9px;
    color: #cbd5e1;
}

.or-private-badge,
.or-commercial-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.or-private-badge {
    background: #ecfdf3;
    color: #027a48;
}

.or-commercial-badge {
    background: #fff1f0;
    color: #b42318;
}

.or-classified-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.or-classified-topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--or-muted);
    font-size: 11px;
}

.or-classified-topline strong {
    color: var(--or-accent-dark);
}

.or-classified-card h3 {
    margin: 11px 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.or-classified-price {
    margin-bottom: 12px;
    color: var(--or-dark);
    font-size: 21px;
    font-weight: 850;
}

.or-classified-card p {
    margin: 0 0 18px;
    color: var(--or-muted);
    font-size: 14px;
    line-height: 1.55;
}

.or-classified-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #edf0f3;
    color: #667085;
    font-size: 11px;
}

.or-classified-empty {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border: 1px dashed #d0d5dd;
    border-radius: var(--or-radius);
    background: #f8fafc;
}

.or-classified-empty-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--or-soft);
    color: var(--or-accent);
    font-size: 27px;
    font-weight: 850;
}

.or-classified-empty strong {
    display: block;
    margin-bottom: 5px;
}

.or-classified-empty p {
    margin: 0;
    color: var(--or-muted);
    line-height: 1.5;
}

@media (max-width: 1050px) {

    .or-classified-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 700px) {

    .or-classified-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .or-classified-grid {
        grid-template-columns: 1fr;
    }

    .or-classified-empty {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* ==========================================================
   ORTS RADAR CLASSIFIED SUBMIT V1
   BLOCK 15
   ========================================================== */

.or-classified-heading-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}


.or-classified-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--or-accent);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


.or-submit-page {
    min-height: 70vh;
    padding: 55px 0 90px;
    background: #f7f8fa;
}


.or-submit-shell {
    max-width: 1180px;
}


.or-submit-heading {
    margin-bottom: 32px;
}


.or-submit-heading h1 {
    margin: 7px 0 7px;
    font-size:
        clamp(
            34px,
            5vw,
            56px
        );
    letter-spacing: -.045em;
}


.or-submit-heading p {
    margin: 0;
    color: var(--or-muted);
    font-size: 17px;
}


.or-submit-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        290px;
    gap: 28px;
    align-items: start;
}


.or-submit-card {
    padding: 30px;
    border: 1px solid var(--or-border);
    border-radius: 24px;
    background: #fff;
    box-shadow:
        0 10px 35px
        rgba(16,24,40,.06);
}


.or-submit-section-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 8px 0 20px;
}


.or-submit-section-title:not(:first-child) {
    margin-top: 42px;
}


.or-submit-section-title > span {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--or-soft);
    color: var(--or-accent-dark);
    font-weight: 900;
}


.or-submit-section-title div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.or-submit-section-title small {
    color: var(--or-muted);
}


.or-submit-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 17px;
}


.or-submit-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.or-submit-field.full {
    grid-column: 1 / -1;
}


.or-submit-field label {
    font-size: 13px;
    font-weight: 800;
}


.or-submit-field input,
.or-submit-field select,
.or-submit-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #d0d5dd;
    border-radius: 11px;
    background: #fff;
    color: #101828;
    font: inherit;
}


.or-submit-field textarea {
    min-height: 180px;
    resize: vertical;
}


.or-submit-field small {
    color: var(--or-muted);
    font-size: 11px;
}


.or-submit-field.checkbox {
    justify-content: end;
}


.or-submit-field.checkbox label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
}


.or-submit-field.checkbox input {
    width: auto;
}


.or-submit-info {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e4e7ec;
}


.or-submit-info strong {
    display: block;
    margin-bottom: 7px;
}


.or-submit-info p {
    margin: 0;
    color: var(--or-muted);
    font-size: 13px;
    line-height: 1.55;
}


.or-submit-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.55;
}


.or-submit-terms input {
    margin-top: 4px;
}


.or-submit-primary,
.or-submit-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
}


.or-submit-primary {
    background: var(--or-accent);
    color: #fff;
}


.or-submit-secondary {
    background: #111827;
    color: #fff;
}


.or-submit-large {
    width: 100%;
    min-height: 50px;
}


.or-submit-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.or-submit-side-card {
    padding: 21px;
    border: 1px solid var(--or-border);
    border-radius: 18px;
    background: #fff;
}


.or-submit-side-card strong {
    display: block;
    margin-bottom: 9px;
}


.or-submit-side-card p {
    margin: 0;
    color: var(--or-muted);
    font-size: 13px;
    line-height: 1.55;
}


.or-submit-side-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--or-muted);
    font-size: 13px;
    line-height: 1.8;
}


.or-submit-free {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 11px;
    font-weight: 900;
}


.or-submit-error {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    padding: 15px 18px;
    border: 1px solid #fecdca;
    border-radius: 13px;
    background: #fff1f0;
    color: #b42318;
}


.or-submit-success {
    max-width: 700px;
    margin: 30px auto;
    padding: 45px;
    text-align: center;
    border: 1px solid var(--or-border);
    border-radius: 24px;
    background: #fff;
}


.or-submit-success-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ecfdf3;
    color: #027a48;
    font-size: 34px;
    font-weight: 900;
}


.or-submit-success h1 {
    margin: 0 0 15px;
}


.or-submit-success p {
    color: var(--or-muted);
    line-height: 1.65;
}


.or-submit-success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}


.or-submit-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}


@media (max-width: 900px) {

    .or-submit-layout {
        grid-template-columns: 1fr;
    }

    .or-submit-sidebar {
        display: grid;
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            );
    }
}


@media (max-width: 700px) {

    .or-submit-page {
        padding: 35px 0 60px;
    }

    .or-submit-card {
        padding: 20px;
    }

    .or-submit-grid {
        grid-template-columns: 1fr;
    }

    .or-submit-field.full {
        grid-column: auto;
    }

    .or-submit-sidebar {
        grid-template-columns: 1fr;
    }

    .or-classified-heading-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .or-classified-submit-button {
        width: 100%;
        box-sizing: border-box;
    }

    .or-submit-success {
        padding: 28px 20px;
    }
}



/* ==========================================================
   ORTS RADAR BUSINESSES PUBLIC V1
   BLOCK 17
   ========================================================== */

.or-business-section {
    padding: 70px 0;
    background: #f8fafc;
}

.or-business-group + .or-business-group {
    margin-top: 70px;
}

.or-business-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );
    gap: 20px;
}

.or-business-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e4e7ec;
    border-radius: 18px;
    background: #fff;
    box-shadow:
        0 6px 22px
        rgba(16,24,40,.06);
}

.or-business-card.featured {
    border: 2px solid rgba(239,62,54,.38);
}

.or-business-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #172033,
            #0b1220
        );
}

.or-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.or-business-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 50px;
}

.or-business-type-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #101828;
    font-size: 10px;
    font-weight: 850;
}

.or-business-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.or-business-topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #667085;
    font-size: 11px;
}

.or-business-card h3 {
    margin: 11px 0 10px;
    font-size: 19px;
}

.or-business-card p {
    margin: 0 0 17px;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.or-business-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 13px;
    border-top: 1px solid #edf0f3;
    color: #667085;
    font-size: 11px;
}

.or-business-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.or-business-links a {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff1f0;
    color: #b42318;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

.or-business-empty {
    padding: 28px;
    border: 1px dashed #d0d5dd;
    border-radius: 18px;
    background: #fff;
}

.or-business-empty strong {
    display: block;
    margin-bottom: 6px;
}

.or-business-empty p {
    margin: 0;
    color: #667085;
}

@media (max-width:1100px) {

    .or-business-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }
}

@media (max-width:700px) {

    .or-business-grid {
        grid-template-columns: 1fr;
    }

    .or-business-section {
        padding: 50px 0;
    }
}



/* ==========================================================
   ORTS RADAR JOBS PUBLIC V1
   BLOCK 18
   ========================================================== */

.or-jobs-section {
    padding:70px 0;
    background:#fff;
}

.or-jobs-grid {
    display:grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );
    gap:20px;
}

.or-job-card {
    display:flex;
    flex-direction:column;
    padding:23px;
    border:1px solid #e4e7ec;
    border-radius:18px;
    background:#fff;
    box-shadow:
        0 7px 24px
        rgba(16,24,40,.06);
}

.or-job-card.featured {
    border:2px solid rgba(239,62,54,.42);
}

.or-job-card-top {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.or-job-company-icon {
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#f2f4f7;
    font-size:22px;
}

.or-job-badges {
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    justify-content:flex-end;
}

.or-job-badges span,
.or-job-badges strong {
    padding:5px 8px;
    border-radius:999px;
    font-size:10px;
}

.or-job-badges span {
    background:#f2f4f7;
    color:#475467;
}

.or-job-badges strong {
    background:#fff1f0;
    color:#b42318;
}

.or-job-card h3 {
    margin:18px 0 7px;
    font-size:20px;
    line-height:1.3;
}

.or-job-company {
    margin-bottom:13px;
    color:#344054;
    font-weight:750;
}

.or-job-card p {
    margin:0 0 18px;
    color:#667085;
    font-size:14px;
    line-height:1.55;
}

.or-job-meta {
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-top:auto;
    padding-top:14px;
    border-top:1px solid #edf0f3;
    color:#667085;
    font-size:12px;
}

.or-job-actions {
    margin-top:17px;
}

.or-job-actions a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 13px;
    border-radius:999px;
    background:#ef3e36;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:800;
}

.or-jobs-empty {
    display:flex;
    gap:20px;
    align-items:center;
    padding:30px;
    border:1px dashed #d0d5dd;
    border-radius:18px;
    background:#f8fafc;
}

.or-jobs-empty-icon {
    width:60px;
    height:60px;
    display:grid;
    place-items:center;
    border-radius:17px;
    background:#fff;
    font-size:28px;
}

.or-jobs-empty strong {
    display:block;
    margin-bottom:5px;
}

.or-jobs-empty p {
    margin:0;
    color:#667085;
}

@media(max-width:1000px) {

    .or-jobs-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }
}

@media(max-width:700px) {

    .or-jobs-grid {
        grid-template-columns:1fr;
    }

    .or-jobs-section {
        padding:50px 0;
    }

    .or-jobs-empty {
        align-items:flex-start;
        flex-direction:column;
    }
}



/* ==========================================================
   ORTS RADAR FUN PUBLIC V1
   BLOCK 19
   ========================================================== */

.or-fun-section {
    padding:70px 0;
    background:#f8fafc;
}

.or-fun-grid {
    display:grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );
    gap:24px;
}

.or-fun-card {
    display:grid;
    grid-template-columns:
        auto
        1fr;
    gap:22px;
    min-height:250px;
    padding:30px;
    border:1px solid #e4e7ec;
    border-radius:24px;
    background:#fff;
    box-shadow:
        0 12px 35px
        rgba(16,24,40,.06);
}

.or-fun-icon {
    display:grid;
    place-items:center;
    width:70px;
    height:70px;
    border-radius:20px;
    background:#f2f4f7;
    font-size:38px;
}

.or-fun-content h2 {
    margin:7px 0 18px;
}

.or-joke-text,
.or-riddle-question {
    margin:0;
    font-size:19px;
    line-height:1.65;
    font-weight:650;
}

.or-riddle-details {
    margin-top:15px;
    padding:12px 15px;
    border:1px solid #e4e7ec;
    border-radius:12px;
    background:#f9fafb;
}

.or-riddle-details summary {
    cursor:pointer;
    font-weight:800;
}

.or-riddle-details p {
    margin:12px 0 0;
    line-height:1.6;
}

.or-riddle-details.answer {
    background:#f0fdf4;
}


@media(max-width:760px) {

    .or-fun-grid {
        grid-template-columns:1fr;
    }

    .or-fun-card {
        grid-template-columns:1fr;
    }
}


/* ==========================================================
   ENDE ORTS RADAR FUN PUBLIC V1
   ========================================================== */



/* ==========================================================
   ORTS RADAR WEATHER PUBLIC V1
   BLOCK 20
   ========================================================== */

.or-weather-section {
    padding:70px 0;
    background:#fff;
}

.or-weather-current {
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:24px;
    align-items:center;
    padding:28px;
    border:1px solid #e4e7ec;
    border-radius:24px;
    background:
        linear-gradient(
            135deg,
            #eff8ff,
            #ffffff
        );
    box-shadow:
        0 12px 35px
        rgba(16,24,40,.06);
}

.or-weather-current-icon {
    display:grid;
    place-items:center;
    width:95px;
    height:95px;
    border-radius:24px;
    background:#fff;
    font-size:56px;
}

.or-weather-temperature {
    margin-bottom:4px;
    font-size:44px;
    line-height:1;
    font-weight:900;
}

.or-weather-current-main strong {
    display:block;
    margin-bottom:4px;
    font-size:18px;
}

.or-weather-feels {
    color:#667085;
}

.or-weather-current-stats {
    display:grid;
    grid-template-columns:
        repeat(2,minmax(130px,1fr));
    gap:12px;
}

.or-weather-current-stats > div {
    padding:15px;
    border-radius:14px;
    background:#fff;
}

.or-weather-current-stats span {
    display:block;
    margin-bottom:4px;
    color:#667085;
    font-size:13px;
}

.or-weather-current-stats strong {
    font-size:17px;
}

.or-weather-forecast {
    display:grid;
    grid-template-columns:
        repeat(7,minmax(0,1fr));
    gap:12px;
    margin-top:20px;
}

.or-weather-day {
    padding:18px 12px;
    border:1px solid #e4e7ec;
    border-radius:18px;
    background:#fff;
    text-align:center;
}

.or-weather-day-name {
    display:block;
    margin-bottom:10px;
}

.or-weather-day-icon {
    min-height:48px;
    margin-bottom:6px;
    font-size:34px;
}

.or-weather-day-description {
    min-height:40px;
    margin-bottom:8px;
    color:#667085;
    font-size:12px;
    line-height:1.4;
}

.or-weather-day-temp {
    display:flex;
    justify-content:center;
    gap:7px;
    margin-bottom:7px;
}

.or-weather-day-temp strong {
    font-size:18px;
}

.or-weather-day-temp span {
    color:#667085;
}

.or-weather-rain {
    color:#475467;
    font-size:13px;
}

.or-weather-source {
    margin-top:13px;
    color:#98a2b3;
    font-size:12px;
    text-align:right;
}

.or-weather-unavailable {
    padding:24px;
    border:1px solid #e4e7ec;
    border-radius:16px;
    background:#f9fafb;
}


@media(max-width:1050px) {

    .or-weather-forecast {
        grid-template-columns:
            repeat(4,minmax(0,1fr));
    }

}


@media(max-width:760px) {

    .or-weather-current {
        grid-template-columns:auto 1fr;
    }

    .or-weather-current-stats {
        grid-column:1 / -1;
    }

    .or-weather-forecast {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


@media(max-width:430px) {

    .or-weather-current {
        grid-template-columns:1fr;
        text-align:center;
    }

    .or-weather-current-icon {
        margin:0 auto;
    }

    .or-weather-current-stats {
        grid-template-columns:1fr;
    }

}


/* ==========================================================
   ENDE WEATHER PUBLIC V1
   ========================================================== */

