.dtp-register-wrap {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    font-family: inherit;
}

.dtp-front-card {
    box-sizing: border-box;
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid rgba(245, 200, 75, 0.35);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(4, 14, 33, 0.96), rgba(10, 40, 78, 0.94));
    color: #ffffff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.dtp-front-card h2,
.dtp-front-card h3 {
    color: #ffffff;
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
}

.dtp-front-kicker {
    margin: 0 0 8px;
    color: #f5c84b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dtp-front-intro,
.dtp-form-note,
.dtp-front-card-info p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

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

.dtp-register-form p,
.dtp-resend-form p,
.dtp-login-form p {
    margin: 0 0 18px;
}

.dtp-register-form label,
.dtp-resend-form label,
.dtp-login-form label,
.dtp-checkbox-row {
    display: block;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.dtp-register-form input[type="text"],
.dtp-register-form input[type="email"],
.dtp-register-form input[type="tel"],
.dtp-register-form input[type="url"],
.dtp-register-form input[type="password"],
.dtp-register-form select,
.dtp-resend-form input[type="email"],
.dtp-login-form input[type="text"],
.dtp-login-form input[type="password"] {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtp-register-form select option {
    color: #10213d;
}

.dtp-register-form input:focus,
.dtp-register-form select:focus,
.dtp-resend-form input:focus,
.dtp-login-form input:focus {
    border-color: rgba(245, 200, 75, 0.72);
    box-shadow: 0 0 0 4px rgba(245, 200, 75, 0.13);
    background: rgba(255, 255, 255, 0.12);
}

.dtp-checkbox-row {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 12px 0 22px;
    line-height: 1.5;
}

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

.dtp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 1px solid rgba(245, 200, 75, 0.78);
    border-radius: 999px;
    background: #f5c84b;
    color: #081426;
    padding: 12px 24px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtp-button:hover,
.dtp-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(245, 200, 75, 0.22);
    background: #ffd95d;
}

.dtp-button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.dtp-register-message {
    display: none;
    margin: 18px 0 22px;
    padding: 14px 16px;
    border-radius: 16px;
    line-height: 1.55;
    font-weight: 700;
}

.dtp-register-message.dtp-message-info,
.dtp-register-message.dtp-message-success,
.dtp-register-message.dtp-message-error {
    display: block;
}

.dtp-message-info {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.dtp-message-success {
    background: rgba(49, 196, 141, 0.16);
    border: 1px solid rgba(49, 196, 141, 0.38);
    color: #dffcef;
}

.dtp-message-error {
    background: rgba(255, 85, 85, 0.16);
    border: 1px solid rgba(255, 85, 85, 0.36);
    color: #ffe6e6;
}

.dtp-hp-field {
    position: absolute !important;
    left: -99999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.dtp-form-success input,
.dtp-form-success select,
.dtp-form-success .dtp-checkbox-row,
.dtp-form-success .dtp-button {
    opacity: 0.72;
}

@media (max-width: 760px) {
    .dtp-front-card {
        padding: 24px;
        border-radius: 20px;
    }

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


.dtp-login-card {
    max-width: 720px;
}

.dtp-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.dtp-status-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(245, 200, 75, 0.32);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(245, 200, 75, 0.10);
    color: rgba(255, 255, 255, 0.90);
    font-size: 13px;
    font-weight: 800;
}

.dtp-login-actions {
    margin: 20px 0 0;
}

.dtp-form-note a {
    color: #f5c84b;
    font-weight: 800;
    text-decoration: none;
}

.dtp-form-note a:hover,
.dtp-form-note a:focus {
    text-decoration: underline;
}

/* Basis-Dashboard v0.1.4 */
.dtp-dashboard-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    font-family: inherit;
}

.dtp-dashboard-card {
    max-width: none;
    margin-bottom: 18px;
}

.dtp-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.dtp-dashboard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.dtp-button-outline {
    background: transparent;
    color: #ffffff;
}

.dtp-button-outline:hover,
.dtp-button-outline:focus {
    background: rgba(245, 200, 75, 0.12);
    color: #ffffff;
}

.dtp-dashboard-grid {
    display: grid;
    gap: 18px;
    margin: 18px 0;
}

.dtp-dashboard-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dtp-dashboard-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtp-dashboard-tile,
.dtp-dashboard-mini-card {
    max-width: none;
    min-height: 100%;
    padding: 24px;
}

.dtp-dashboard-tile {
    position: relative;
    overflow: hidden;
}

.dtp-dashboard-tile-title {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dtp-dashboard-tile strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.dtp-dashboard-tile p,
.dtp-dashboard-mini-card p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.62;
}

.dtp-dashboard-status-dot {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #f5c84b;
    box-shadow: 0 0 0 8px rgba(245, 200, 75, 0.10);
}

.dtp-dashboard-tile-ok .dtp-dashboard-status-dot {
    background: #31c48d;
    box-shadow: 0 0 0 8px rgba(49, 196, 141, 0.12);
}

.dtp-dashboard-tile-warning .dtp-dashboard-status-dot {
    background: #ffb24b;
    box-shadow: 0 0 0 8px rgba(255, 178, 75, 0.12);
}

.dtp-dashboard-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.dtp-dashboard-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(245, 200, 75, 0.35);
    border-radius: 999px;
    padding: 7px 13px;
    background: rgba(245, 200, 75, 0.10);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.dtp-dashboard-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dtp-dashboard-detail-row {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
}

.dtp-dashboard-detail-row span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.dtp-dashboard-detail-row strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    word-break: break-word;
}

.dtp-dashboard-warning .dtp-register-wrap {
    margin-top: 18px;
}

.dtp-dashboard-warning .dtp-front-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.dtp-dashboard-mini-card a {
    color: #f5c84b;
    font-weight: 900;
    text-decoration: none;
}

.dtp-dashboard-mini-card a:hover,
.dtp-dashboard-mini-card a:focus {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .dtp-dashboard-status-grid,
    .dtp-dashboard-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .dtp-dashboard-hero,
    .dtp-dashboard-section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .dtp-dashboard-status-grid,
    .dtp-dashboard-info-grid,
    .dtp-dashboard-details {
        grid-template-columns: 1fr;
    }

    .dtp-dashboard-actions {
        justify-content: flex-start;
    }

    .dtp-dashboard-chip {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

/* Firmenprofil & Admin-Freigabe v0.1.5 */
.dtp-company-edit-card {
    margin-top: 18px;
}

.dtp-company-profile-form p {
    margin: 0 0 18px;
}

.dtp-company-profile-form label,
.dtp-display-field label {
    display: block;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.dtp-company-profile-form input[type="text"],
.dtp-company-profile-form input[type="url"],
.dtp-company-profile-form select,
.dtp-company-profile-form textarea {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtp-company-profile-form textarea {
    min-height: 140px;
    resize: vertical;
}

.dtp-company-profile-form select option {
    color: #10213d;
}

.dtp-company-profile-form input:focus,
.dtp-company-profile-form select:focus,
.dtp-company-profile-form textarea:focus {
    border-color: rgba(245, 200, 75, 0.72);
    box-shadow: 0 0 0 4px rgba(245, 200, 75, 0.13);
    background: rgba(255, 255, 255, 0.12);
}

.dtp-display-field span {
    display: flex;
    align-items: center;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.80);
    padding: 12px 14px;
}

.dtp-dashboard-description {
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px;
}

.dtp-dashboard-description span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dtp-dashboard-description p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

/* Frontend Tender Submission v0.1.7 */
.dtp-tender-submit-card,
.dtp-my-tenders-card {
    margin-top: 18px;
}

.dtp-tender-submit-wrap .dtp-form-grid,
.dtp-tender-submit-form .dtp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dtp-tender-submit-form p {
    margin: 0 0 18px;
}

.dtp-tender-submit-form label {
    display: block;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.dtp-tender-submit-form input[type="text"],
.dtp-tender-submit-form input[type="url"],
.dtp-tender-submit-form input[type="date"],
.dtp-tender-submit-form select,
.dtp-tender-submit-form textarea {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtp-tender-submit-form textarea {
    min-height: 140px;
    resize: vertical;
}

.dtp-tender-submit-form select option {
    color: #10213d;
}

.dtp-tender-submit-form input:focus,
.dtp-tender-submit-form select:focus,
.dtp-tender-submit-form textarea:focus {
    border-color: rgba(245, 200, 75, 0.72);
    box-shadow: 0 0 0 4px rgba(245, 200, 75, 0.13);
    background: rgba(255, 255, 255, 0.12);
}

.dtp-field-hint {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
}

.dtp-dashboard-warning-inline {
    border: 1px solid rgba(255, 178, 75, 0.35);
    border-radius: 18px;
    background: rgba(255, 178, 75, 0.10);
    padding: 16px 18px;
}

.dtp-dashboard-warning-inline strong {
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.dtp-dashboard-warning-inline p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.dtp-responsive-table-wrap {
    overflow-x: auto;
}

.dtp-frontend-table {
    width: 100%;
    border-collapse: collapse;
    color: rgba(255, 255, 255, 0.88);
}

.dtp-frontend-table th,
.dtp-frontend-table td {
    text-align: left;
    vertical-align: top;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dtp-frontend-table th {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dtp-frontend-table strong {
    color: #ffffff;
}

.dtp-frontend-table small {
    color: rgba(255, 255, 255, 0.62);
}

.dtp-chip-small {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12px;
}

@media (max-width: 760px) {
    .dtp-tender-submit-wrap .dtp-form-grid,
    .dtp-tender-submit-form .dtp-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Öffentliche Tender-Liste v0.1.8 */
.dtp-tender-list-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    font-family: inherit;
}

.dtp-tender-list-head {
    max-width: none;
    margin-bottom: 18px;
}

.dtp-tender-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.dtp-tender-list-meta span,
.dtp-tender-muted-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.dtp-tender-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dtp-tender-public-card {
    max-width: none;
    min-height: 100%;
}

.dtp-tender-public-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.dtp-tender-public-card h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 18px;
}

.dtp-tender-public-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.dtp-tender-public-facts div,
.dtp-tender-public-description,
.dtp-tender-protected-preview,
.dtp-tender-access-note {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
}

.dtp-tender-public-facts span,
.dtp-tender-public-description span,
.dtp-tender-protected-preview span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dtp-tender-public-facts strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    word-break: break-word;
}

.dtp-tender-public-description,
.dtp-tender-protected-preview,
.dtp-tender-access-note {
    margin-top: 12px;
}

.dtp-tender-public-description p,
.dtp-tender-protected-preview p,
.dtp-tender-access-note {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.62;
}

.dtp-tender-public-description p,
.dtp-tender-protected-preview p {
    margin: 0;
}

.dtp-tender-protected-preview {
    border-color: rgba(245, 200, 75, 0.30);
    background: rgba(245, 200, 75, 0.09);
}

.dtp-tender-access-note {
    border-color: rgba(245, 200, 75, 0.25);
    background: rgba(245, 200, 75, 0.08);
    font-weight: 700;
}

.dtp-tender-empty-card {
    max-width: none;
}

@media (max-width: 900px) {
    .dtp-tender-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .dtp-tender-public-facts {
        grid-template-columns: 1fr;
    }
}


/* Tender-Detail / geschützte Details v0.1.9 */
.dtp-tender-detail-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    font-family: inherit;
}

.dtp-tender-detail-head {
    max-width: none;
    margin-bottom: 18px;
}

.dtp-tender-detail-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.dtp-tender-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.75fr);
    gap: 18px;
    align-items: start;
}

.dtp-tender-detail-main,
.dtp-tender-detail-side {
    max-width: none;
}

.dtp-tender-detail-main h3,
.dtp-tender-detail-side h3 {
    margin-top: 0;
}

.dtp-tender-detail-facts {
    margin-top: 12px;
}

.dtp-tender-protected-box,
.dtp-tender-locked-box,
.dtp-tender-external-link,
.dtp-detail-side-note,
.dtp-detail-status-list div,
.dtp-tender-card-actions {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
    margin-top: 12px;
}

.dtp-tender-protected-box {
    border-color: rgba(56, 211, 159, 0.35);
    background: rgba(56, 211, 159, 0.10);
}

.dtp-tender-locked-box {
    border-color: rgba(245, 200, 75, 0.30);
    background: rgba(245, 200, 75, 0.08);
}

.dtp-tender-protected-box span,
.dtp-tender-locked-box span,
.dtp-detail-side-note span,
.dtp-detail-status-list span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dtp-tender-protected-box p,
.dtp-tender-locked-box p,
.dtp-detail-side-note p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.64;
    margin: 0;
}

.dtp-detail-status-list {
    display: grid;
    gap: 10px;
}

.dtp-detail-status-list div {
    margin-top: 0;
}

.dtp-detail-status-list strong {
    color: #ffffff;
    line-height: 1.35;
}

.dtp-tender-detail-actions,
.dtp-tender-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.dtp-tender-card-actions {
    border: 0;
    background: transparent;
    padding: 0;
    margin-top: 14px;
}

.dtp-primary-link,
.dtp-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    text-decoration: none !important;
    line-height: 1.2;
}

.dtp-primary-link {
    background: #f5c84b;
    color: #10243b !important;
}

.dtp-secondary-link {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88) !important;
}

@media (max-width: 980px) {
    .dtp-tender-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Basisfilter für öffentliche Tender-Liste v0.2.0 */
.dtp-tender-filter-card {
    max-width: none;
    margin-bottom: 18px;
    padding: 26px;
}

.dtp-tender-filter-head {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dtp-tender-filter-head h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 0;
}

.dtp-tender-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dtp-tender-filter-grid label {
    display: block;
    margin: 0;
}

.dtp-tender-filter-grid span {
    display: block;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dtp-tender-filter-grid input,
.dtp-tender-filter-grid select {
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 11px 13px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtp-tender-filter-grid select option {
    color: #10213d;
}

.dtp-tender-filter-grid input:focus,
.dtp-tender-filter-grid select:focus {
    border-color: rgba(245, 200, 75, 0.72);
    box-shadow: 0 0 0 4px rgba(245, 200, 75, 0.13);
    background: rgba(255, 255, 255, 0.12);
}

.dtp-tender-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.dtp-tender-filter-actions button.dtp-primary-link {
    border: 0;
    cursor: pointer;
}

.dtp-tender-filter-actions span {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .dtp-tender-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .dtp-tender-filter-grid {
        grid-template-columns: 1fr;
    }

    .dtp-tender-filter-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Meine Einträge Dashboard v0.2.2 */
.dtp-my-tenders-pro-card {
    margin-top: 18px;
}

.dtp-my-tenders-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 22px;
}

.dtp-my-tenders-stat {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.dtp-my-tenders-stat::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    right: 14px;
    top: 14px;
    background: #f5c84b;
    box-shadow: 0 0 0 7px rgba(245, 200, 75, 0.10);
}

.dtp-my-tenders-stat-ok::after {
    background: #31c48d;
    box-shadow: 0 0 0 7px rgba(49, 196, 141, 0.12);
}

.dtp-my-tenders-stat-warning::after {
    background: #ffb24b;
    box-shadow: 0 0 0 7px rgba(255, 178, 75, 0.12);
}

.dtp-my-tenders-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.dtp-my-tenders-stat strong {
    display: block;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 8px;
}

.dtp-my-tenders-stat p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

.dtp-my-tenders-table-pro td {
    min-width: 150px;
}

.dtp-my-tenders-table-pro td:first-child {
    min-width: 220px;
}

.dtp-my-tenders-status-note,
.dtp-my-tenders-action-note {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.45;
}

.dtp-status-chip-ok {
    border-color: rgba(49, 196, 141, 0.42);
    background: rgba(49, 196, 141, 0.14);
}

.dtp-status-chip-warning {
    border-color: rgba(255, 178, 75, 0.42);
    background: rgba(255, 178, 75, 0.12);
}

.dtp-status-chip-info {
    border-color: rgba(120, 180, 255, 0.35);
    background: rgba(120, 180, 255, 0.10);
}

.dtp-status-chip-foundation {
    border-color: rgba(245, 200, 75, 0.35);
    background: rgba(245, 200, 75, 0.10);
}

.dtp-my-tenders-empty {
    border: 1px dashed rgba(245, 200, 75, 0.35);
    border-radius: 18px;
    background: rgba(245, 200, 75, 0.07);
    padding: 18px;
}

.dtp-my-tenders-empty strong {
    display: block;
    color: #ffffff;
    margin-bottom: 7px;
}

.dtp-my-tenders-empty p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .dtp-my-tenders-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .dtp-my-tenders-stats {
        grid-template-columns: 1fr;
    }
}

/* Meine Einträge Bearbeiten v0.2.2a */
.dtp-my-tenders-actions,
.dtp-my-tender-inline-actions,
.dtp-tender-edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.dtp-my-tender-inline-actions {
    margin-top: 12px;
}

.dtp-my-tenders-actions .dtp-secondary-link,
.dtp-my-tender-inline-actions .dtp-secondary-link,
.dtp-tender-edit-actions .dtp-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(245, 200, 75, 0.52);
    color: #f5c84b;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
}

.dtp-my-tenders-actions .dtp-action-edit,
.dtp-my-tender-inline-actions .dtp-action-edit {
    background: #f5c84b;
    color: #081426;
}

.dtp-tender-edit-card {
    border-color: rgba(245, 200, 75, 0.62);
    box-shadow: 0 22px 80px rgba(245, 200, 75, 0.10), 0 22px 70px rgba(0, 0, 0, 0.28);
}

.dtp-tender-edit-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 14px;
    outline: none;
}

/* v0.2.3 Interesse / Kontakt */
.dtp-tender-interest-box {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(241, 198, 92, .38);
    border-radius: 20px;
    background: rgba(8, 26, 55, .72);
}
.dtp-tender-interest-box > span {
    display: block;
    color: #f1c65c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    margin-bottom: 10px;
}
.dtp-interest-form label {
    display: block;
    margin: 14px 0 7px;
    font-weight: 700;
}
.dtp-interest-form textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: inherit;
    padding: 14px;
}
.dtp-interest-notice {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 15px;
    font-weight: 700;
}
.dtp-interest-notice-ok {
    background: rgba(16, 185, 129, .14);
    border: 1px solid rgba(16, 185, 129, .34);
}
.dtp-interest-notice-warning {
    background: rgba(241, 198, 92, .14);
    border: 1px solid rgba(241, 198, 92, .34);
}

/* v0.2.5 Packages & permissions */
.dtp-package-summary-card { border:1px solid rgba(0,0,0,.08); }
.dtp-package-rule-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-top:16px; }
.dtp-package-rule-grid div { border:1px solid rgba(0,0,0,.08); border-radius:14px; padding:12px; background:rgba(255,255,255,.72); }
.dtp-package-rule-grid span { display:block; opacity:.7; font-size:.86rem; margin-bottom:4px; }
.dtp-featured-chip { background:#fff7d6 !important; color:#7a5600 !important; }
@media (max-width: 780px) { .dtp-package-rule-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 520px) { .dtp-package-rule-grid { grid-template-columns:1fr; } }

/* v0.2.6 Package runtime & limits */
.dtp-package-summary-card.dtp-package-expired {
    border-color: rgba(180, 35, 24, .35);
    background: linear-gradient(135deg, rgba(255, 241, 241, .95), rgba(255,255,255,.98));
}
.dtp-package-summary-card.dtp-package-active {
    border-color: rgba(38, 120, 80, .25);
}


/* v0.2.8 Paketübersicht */
.dtp-packages-wrap { max-width: 1180px; margin: 0 auto; }
.dtp-packages-hero { margin-bottom: 24px; }
.dtp-package-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; align-items: stretch; }
.dtp-package-card { position: relative; display: flex; flex-direction: column; gap: 12px; border: 1px solid rgba(15, 23, 42, 0.12); }
.dtp-package-card-recommended { border-width: 2px; transform: translateY(-2px); box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14); }
.dtp-package-card-current { outline: 2px solid rgba(22, 163, 74, 0.35); }
.dtp-package-badge,
.dtp-package-current-badge { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; background: rgba(245, 158, 11, 0.14); color: #92400e; }
.dtp-package-current-badge { background: rgba(22, 163, 74, 0.14); color: #166534; }
.dtp-package-card h3 { margin: 0; font-size: 24px; }
.dtp-package-description { min-height: 48px; margin: 0; color: #475569; }
.dtp-package-price { font-size: 30px; font-weight: 900; line-height: 1; }
.dtp-package-duration { margin: -4px 0 0; font-size: 14px; color: #64748b; }
.dtp-package-feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.dtp-package-feature-list li { position: relative; padding-left: 22px; color: #334155; }
.dtp-package-feature-list li:before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 900; }
.dtp-package-actions { margin-top: auto; padding-top: 8px; }
.dtp-button-disabled { opacity: .65; cursor: not-allowed; pointer-events: none; }
@media (max-width: 640px) { .dtp-package-card-recommended { transform: none; } }


/* v0.3.6b Frontend Layout Bridge: keep DTP shortcode pages usable after the old Core is disabled. */
.dtp-register-wrap,
.dtp-dashboard-wrap,
.dtp-tender-list-wrap,
.dtp-tender-detail-wrap,
.dtp-package-overview-wrap,
.dtp-post-tender-wrap,
.dtp-my-tenders-wrap {
    max-width: 1180px;
    margin: 38px auto;
    padding: 0 18px;
}

.entry-content > .dtp-register-wrap:first-child,
.elementor-widget-container > .dtp-register-wrap:first-child,
.wp-block-post-content > .dtp-register-wrap:first-child {
    margin-top: 34px;
}

.dtp-front-card,
.dtp-dashboard-shell,
.dtp-tender-list-shell,
.dtp-tender-detail-shell,
.dtp-package-overview,
.dtp-post-tender-shell,
.dtp-my-tenders-shell {
    color: #fff;
}

.dtp-front-card a,
.dtp-dashboard-shell a,
.dtp-tender-list-shell a,
.dtp-tender-detail-shell a,
.dtp-package-overview a {
    color: #f5c84b;
}

.dtp-front-card input,
.dtp-front-card select,
.dtp-front-card textarea,
.dtp-dashboard-shell input,
.dtp-dashboard-shell select,
.dtp-dashboard-shell textarea,
.dtp-tender-list-shell input,
.dtp-tender-list-shell select,
.dtp-post-tender-shell input,
.dtp-post-tender-shell select,
.dtp-post-tender-shell textarea {
    max-width: 100%;
}

.dtp-front-card .dtp-button,
.dtp-dashboard-shell .dtp-button,
.dtp-tender-list-shell .dtp-button,
.dtp-tender-detail-shell .dtp-button,
.dtp-package-overview .dtp-button,
.dtp-post-tender-shell .dtp-button {
    text-decoration: none !important;
}

/* Hide accidental empty paragraphs around removed legacy shortcodes. */
.entry-content p:empty,
.elementor-widget-container p:empty {
    display: none;
}

@media (max-width: 760px) {
    .dtp-register-wrap,
    .dtp-dashboard-wrap,
    .dtp-tender-list-wrap,
    .dtp-tender-detail-wrap,
    .dtp-package-overview-wrap,
    .dtp-post-tender-wrap,
    .dtp-my-tenders-wrap {
        margin: 24px auto;
        padding: 0 12px;
    }

    .dtp-front-card {
        padding: 24px 18px;
        border-radius: 20px;
    }
}

/* v0.3.6f: Premium Anmelden view with registration CTA, password reveal and social-login-ready buttons */
.dtp-login-page-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: calc(100vh - 110px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(26px, 5vw, 76px) clamp(18px, 5vw, 72px);
    background:
        radial-gradient(circle at 12% 15%, rgba(245, 200, 75, 0.18), transparent 34%),
        radial-gradient(circle at 88% 10%, rgba(41, 125, 255, 0.16), transparent 35%),
        linear-gradient(135deg, rgba(255, 246, 231, 0.92), rgba(255, 255, 255, 0.72));
}

.dtp-login-page-full .dtp-login-premium-card {
    width: min(1180px, 100%);
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(22px, 3vw, 38px);
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    position: relative;
}

.dtp-login-page-full .dtp-login-premium-card::before {
    content: "";
    position: absolute;
    inset: -120px auto auto -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(245, 200, 75, 0.16);
    pointer-events: none;
}

.dtp-login-main,
.dtp-login-side {
    position: relative;
    z-index: 1;
}

.dtp-login-main h2 {
    margin-bottom: 10px;
}

.dtp-password-field {
    position: relative;
    display: block;
}

.dtp-login-form .dtp-password-field input[type="password"],
.dtp-login-form .dtp-password-field input[type="text"] {
    padding-right: 58px;
}

.dtp-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 200, 75, 0.35);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: #f5c84b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.dtp-password-toggle svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.dtp-password-toggle:hover,
.dtp-password-toggle:focus {
    background: rgba(245, 200, 75, 0.16);
    border-color: rgba(245, 200, 75, 0.72);
}

.dtp-login-submit-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.dtp-button-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #f5c84b;
}

.dtp-button-outline:hover,
.dtp-button-outline:focus {
    background: rgba(245, 200, 75, 0.12);
    color: #ffd95d;
}

.dtp-login-help-note {
    margin-top: 16px !important;
}

.dtp-login-side {
    display: grid;
    gap: 18px;
    align-content: center;
}

.dtp-login-side-box {
    border: 1px solid rgba(245, 200, 75, 0.28);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: clamp(18px, 2.5vw, 26px);
}

.dtp-login-side-box h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.12;
    margin: 0 0 10px;
}

.dtp-login-side-box p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
    margin: 0 0 16px;
}

.dtp-button-wide {
    width: 100%;
}

.dtp-social-login-grid {
    display: grid;
    gap: 11px;
}

.dtp-social-login-button {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.93);
    color: #10213d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dtp-social-login-button:hover,
.dtp-social-login-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    border-color: rgba(245, 200, 75, 0.48);
    background: #ffffff;
}

.dtp-social-login-button.dtp-social-disabled {
    opacity: 0.88;
}

.dtp-social-login-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.dtp-social-login-icon svg {
    width: 24px;
    height: 24px;
}

.dtp-social-linkedin .dtp-social-login-icon svg {
    fill: #0a66c2;
}

.dtp-social-login-note {
    margin: 12px 0 0 !important;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 13px;
}

@media (max-width: 900px) {
    .dtp-login-page-full {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .dtp-login-page-full .dtp-login-premium-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .dtp-login-submit-row .dtp-button,
    .dtp-login-submit-row .dtp-button-outline {
        width: 100%;
    }

    .dtp-login-side-box {
        border-radius: 18px;
    }
}


/* v0.3.6g: Premium registration form with legal links, split address, select catalogs and password reveal. */
.dtp-register-page-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: calc(100vh - 110px);
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(24px, 4vw, 70px) clamp(16px, 5vw, 72px);
    background:
        radial-gradient(circle at 10% 12%, rgba(245, 200, 75, 0.18), transparent 32%),
        radial-gradient(circle at 92% 16%, rgba(41, 125, 255, 0.15), transparent 36%),
        linear-gradient(135deg, rgba(255, 246, 231, 0.92), rgba(255, 255, 255, 0.72));
}

.dtp-register-page-full .dtp-register-premium-card {
    width: min(1240px, 100%);
    max-width: 1240px;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    position: relative;
}

.dtp-register-page-full .dtp-register-premium-card::before {
    content: "";
    position: absolute;
    inset: -130px auto auto -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(245, 200, 75, 0.15);
    pointer-events: none;
}

.dtp-register-head,
.dtp-register-section,
.dtp-register-message,
.dtp-register-form {
    position: relative;
    z-index: 1;
}

.dtp-register-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: 22px;
    align-items: start;
    margin-bottom: 24px;
}

.dtp-register-head-box {
    border: 1px solid rgba(245, 200, 75, 0.28);
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    display: grid;
    gap: 12px;
}

.dtp-register-head-box strong {
    color: #fff;
    font-size: 17px;
}

.dtp-register-section {
    border: 1px solid rgba(245, 200, 75, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    padding: clamp(18px, 2.5vw, 26px);
    margin-top: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dtp-register-section-title {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.dtp-register-section-title > span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    background: #f5c84b;
    color: #081426;
    font-weight: 900;
}

.dtp-register-section-title h3 {
    margin: 0 0 4px;
    font-size: clamp(20px, 2.2vw, 28px);
}

.dtp-register-section-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.45;
}

.dtp-address-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.45fr) minmax(160px, 0.55fr);
}

.dtp-address-grid .dtp-field-street {
    grid-column: span 1;
}

.dtp-register-form .dtp-password-field input[type="password"],
.dtp-register-form .dtp-password-field input[type="text"] {
    padding-right: 58px;
}

.dtp-register-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.dtp-legal-row a {
    color: #f5c84b;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dtp-legal-row a:hover,
.dtp-legal-row a:focus {
    color: #ffd95d;
}

@media (max-width: 960px) {
    .dtp-register-head,
    .dtp-address-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dtp-register-head-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .dtp-register-page-full {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .dtp-register-head,
    .dtp-address-grid,
    .dtp-register-page-full .dtp-form-grid {
        grid-template-columns: 1fr;
    }

    .dtp-register-actions .dtp-button,
    .dtp-register-actions .dtp-button-outline,
    .dtp-register-head-box .dtp-button {
        width: 100%;
    }
}


/* v0.3.6h: Strong fullscreen auth wrappers plus alphabetic catalog-ready layout. */
.entry-content .dtp-register-wrap.dtp-login-page-full,
.entry-content .dtp-register-wrap.dtp-register-page-full,
.elementor-widget-container .dtp-register-wrap.dtp-login-page-full,
.elementor-widget-container .dtp-register-wrap.dtp-register-page-full,
.wp-block-post-content .dtp-register-wrap.dtp-login-page-full,
.wp-block-post-content .dtp-register-wrap.dtp-register-page-full,
.dtp-register-wrap.dtp-login-page-full,
.dtp-register-wrap.dtp-register-page-full {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.dtp-login-page-full .dtp-login-premium-card {
    width: min(1420px, calc(100vw - 48px));
    max-width: 1420px;
}

.dtp-register-page-full .dtp-register-premium-card {
    width: min(1560px, calc(100vw - 48px));
    max-width: 1560px;
}

.dtp-register-page-full .dtp-form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtp-register-page-full .dtp-address-grid {
    grid-template-columns: minmax(240px, 1.45fr) minmax(120px, 0.55fr) minmax(150px, 0.7fr) minmax(190px, 0.95fr) minmax(190px, 1fr);
}

.dtp-register-page-full .dtp-address-grid p {
    min-width: 0;
}

.dtp-register-page-full .dtp-register-section-title p {
    max-width: 980px;
}

@media (max-width: 1180px) {
    .dtp-register-page-full .dtp-form-grid,
    .dtp-register-page-full .dtp-address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .dtp-login-page-full .dtp-login-premium-card,
    .dtp-register-page-full .dtp-register-premium-card {
        width: min(100%, calc(100vw - 24px));
    }

    .dtp-register-page-full .dtp-form-grid,
    .dtp-register-page-full .dtp-address-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Premium / Firmenprofil v0.3.6j */
.dtp-dashboard-premium-wrap {
    max-width: 1320px;
}

.dtp-dashboard-premium-hero {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background-size: cover;
    background-position: center;
}

.dtp-dashboard-premium-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(245, 200, 75, 0.14);
    filter: blur(2px);
    pointer-events: none;
}

.dtp-dashboard-brand-row {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.dtp-company-logo-box {
    width: 94px;
    height: 94px;
    flex: 0 0 94px;
    border: 1px solid rgba(245, 200, 75, 0.42);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.dtp-company-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.96);
    padding: 10px;
    box-sizing: border-box;
}

.dtp-company-logo-box span {
    color: #f5c84b;
    font-weight: 950;
    font-size: 28px;
    letter-spacing: .06em;
}

.dtp-dashboard-hero-side {
    position: relative;
    z-index: 1;
    min-width: 260px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    backdrop-filter: blur(8px);
}

.dtp-dashboard-hero-side strong,
.dtp-dashboard-hero-side span {
    display: block;
}

.dtp-dashboard-hero-side strong {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.dtp-dashboard-hero-side span {
    color: rgba(255, 255, 255, .74);
    font-weight: 800;
    margin-bottom: 14px;
}

.dtp-dashboard-status-grid-premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dtp-dashboard-action-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dtp-dashboard-ready-card {
    position: relative;
    max-width: none;
    min-height: 100%;
    padding: 24px;
    overflow: hidden;
    transform: translateZ(0);
}

.dtp-dashboard-ready-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 200, 75, .16), transparent 45%);
    pointer-events: none;
}

.dtp-dashboard-ready-card h3,
.dtp-dashboard-ready-card p,
.dtp-dashboard-ready-card a,
.dtp-ready-number {
    position: relative;
    z-index: 1;
}

.dtp-ready-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(245, 200, 75, 0.14);
    color: #f5c84b;
    font-weight: 950;
    margin-bottom: 16px;
}

.dtp-dashboard-ready-card h3 {
    font-size: 23px;
}

.dtp-dashboard-ready-card p,
.dtp-dashboard-ready-panel p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.62;
}

.dtp-company-snapshot-card,
.dtp-company-edit-premium {
    max-width: none;
}

.dtp-dashboard-details-premium {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dtp-public-profile-url {
    margin-top: 16px;
    border: 1px solid rgba(245, 200, 75, .28);
    border-radius: 16px;
    background: rgba(245, 200, 75, .08);
    padding: 14px 16px;
}

.dtp-public-profile-url span,
.dtp-public-profile-url a {
    display: block;
}

.dtp-public-profile-url span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dtp-public-profile-url a {
    color: #f5c84b;
    font-weight: 900;
    word-break: break-all;
}

.dtp-profile-media-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
    gap: 18px;
    margin-bottom: 22px;
}

.dtp-media-upload-box {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    padding: 18px;
}

.dtp-media-upload-box label:first-child {
    display: block;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dtp-media-preview {
    min-height: 150px;
    border: 1px dashed rgba(245, 200, 75, .36);
    border-radius: 18px;
    background: rgba(0, 0, 0, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.dtp-media-preview img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: contain;
    background: rgba(255,255,255,.96);
    padding: 12px;
    box-sizing: border-box;
}

.dtp-media-preview span {
    color: rgba(255,255,255,.68);
    font-weight: 800;
}

.dtp-media-upload-box input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.86);
}

.dtp-media-upload-box small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.62);
    line-height: 1.45;
}

.dtp-remove-media-row {
    margin-bottom: 0;
    margin-top: 12px;
}

.dtp-form-grid-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtp-dashboard-options-grid {
    align-items: end;
}

.dtp-dashboard-preference-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
    gap: 22px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    padding: 20px;
    margin: 18px 0;
}

.dtp-dashboard-preference-panel h4 {
    color: #ffffff;
    font-size: 22px;
    margin: 0 0 8px;
}

.dtp-dashboard-preference-panel p:not(.dtp-front-kicker) {
    color: rgba(255,255,255,.74);
    margin: 0;
    line-height: 1.6;
}

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

.dtp-checkbox-grid-single {
    grid-template-columns: 1fr;
}

.dtp-checkbox-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    border: 1px solid rgba(245, 200, 75, .26);
    border-radius: 16px;
    background: rgba(245, 200, 75, .08);
    padding: 10px 12px;
    color: rgba(255,255,255,.88);
    font-weight: 900;
    cursor: pointer;
}

.dtp-checkbox-card input {
    width: 18px;
    height: 18px;
}

.dtp-dashboard-save-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.dtp-dashboard-block-anchor {
    scroll-margin-top: 90px;
}

.dtp-public-company-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 18px;
    box-sizing: border-box;
    font-family: inherit;
}

.dtp-public-company-hero {
    max-width: none;
    display: flex;
    align-items: center;
    gap: 22px;
    background-size: cover;
    background-position: center;
}

.dtp-public-company-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 12px;
}

.dtp-company-logo-public {
    width: 112px;
    height: 112px;
    flex-basis: 112px;
}

.dtp-public-company-card {
    max-width: none;
    margin-top: 18px;
}

.dtp-public-company-action {
    margin-top: 18px;
}

@media (max-width: 1120px) {
    .dtp-dashboard-status-grid-premium,
    .dtp-dashboard-action-grid,
    .dtp-dashboard-details-premium,
    .dtp-form-grid-premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .dtp-dashboard-premium-hero,
    .dtp-dashboard-brand-row,
    .dtp-public-company-hero,
    .dtp-dashboard-preference-panel,
    .dtp-profile-media-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .dtp-dashboard-status-grid-premium,
    .dtp-dashboard-action-grid,
    .dtp-dashboard-details-premium,
    .dtp-form-grid-premium,
    .dtp-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .dtp-dashboard-hero-side {
        min-width: 0;
    }

    .dtp-company-logo-box {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }
}

/* Dashboard root public profile + premium 3-column redesign v0.3.6k */
.dtp-dashboard-redesign-wrap {
    width: 100vw;
    max-width: min(1560px, calc(100vw - 32px));
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 0 26px;
    box-sizing: border-box;
}

.dtp-dashboard-redesign-form {
    display: block;
    width: 100%;
}

.dtp-dashboard-top-warning {
    max-width: none;
    margin-bottom: 18px;
}

.dtp-dashboard-redesign-hero {
    min-height: 330px;
    border-radius: 34px;
    padding: clamp(26px, 4vw, 44px);
    background:
        radial-gradient(circle at 18% 20%, rgba(245,200,75,.20), transparent 36%),
        linear-gradient(135deg, rgba(4,14,33,.96), rgba(10,37,72,.92));
    box-shadow: 0 36px 80px rgba(0,0,0,.33), inset 0 1px 0 rgba(255,255,255,.10);
}

.dtp-dashboard-redesign-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.07), transparent 58%);
    pointer-events: none;
}

.dtp-cover-upload-hotspot {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    border: 1px solid rgba(245,200,75,.45);
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(3,14,32,.70);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 34px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.10);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.dtp-cover-upload-hotspot:hover,
.dtp-cover-upload-hotspot:focus-within {
    transform: translateY(-2px);
    border-color: rgba(245,200,75,.78);
    background: rgba(10,35,70,.88);
}

.dtp-media-file-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dtp-dashboard-brand-row-redesign {
    align-items: flex-end;
    gap: 24px;
}

.dtp-company-logo-box-clickable {
    width: 126px;
    height: 126px;
    flex: 0 0 126px;
    border-radius: 34px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(245,200,75,.62);
    box-shadow: 0 26px 60px rgba(0,0,0,.38), 0 0 0 8px rgba(245,200,75,.09);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dtp-company-logo-box-clickable:hover,
.dtp-company-logo-box-clickable:focus-within {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(245,200,75,.92);
    box-shadow: 0 34px 70px rgba(0,0,0,.42), 0 0 0 10px rgba(245,200,75,.12);
}

.dtp-company-logo-box-clickable em {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #071426;
    background: linear-gradient(145deg, #f8d872, #c9961d);
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 14px 26px rgba(0,0,0,.28);
    font-style: normal;
}

.dtp-company-logo-box-clickable em svg,
.dtp-cover-upload-hotspot svg,
.dtp-dashboard-icon-frame svg,
.dtp-sidebar-icon-frame svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dtp-dashboard-redesign-hero h2 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.04em;
    margin: 0 0 12px;
}

.dtp-dashboard-hero-side-redesign {
    align-self: flex-end;
    min-width: 310px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 22px 46px rgba(0,0,0,.22);
}

.dtp-media-remove-chip {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 10px !important;
    width: fit-content;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.dtp-media-remove-cover {
    position: absolute;
    top: 74px;
    right: 20px;
    z-index: 3;
}

.dtp-dashboard-status-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 20px;
}

.dtp-dashboard-status-mini {
    padding: 16px 16px 14px;
    border-radius: 22px;
    min-height: auto;
    background: linear-gradient(145deg, rgba(5,18,40,.96), rgba(10,37,72,.88));
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 18px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.08);
}

.dtp-dashboard-status-mini .dtp-dashboard-icon-frame {
    margin-bottom: 10px;
}

.dtp-dashboard-status-mini .dtp-dashboard-status-dot {
    right: 14px;
    top: 14px;
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 6px rgba(245,200,75,.10);
}

.dtp-dashboard-status-mini strong {
    font-size: 17px;
    margin-bottom: 3px;
}

.dtp-dashboard-status-mini p:last-child {
    font-size: 12px;
    margin: 0;
}

.dtp-dashboard-redesign-layout {
    display: grid;
    grid-template-columns: minmax(240px, 285px) minmax(0, 1fr) minmax(255px, 315px);
    gap: 18px;
    align-items: start;
}

.dtp-dashboard-sidebar-left,
.dtp-dashboard-contact-right {
    display: grid;
    gap: 16px;
    align-content: start;
}

.dtp-dashboard-sidebar-card,
.dtp-dashboard-edit-panel,
.dtp-dashboard-contact-card,
.dtp-dashboard-public-url-card {
    max-width: none;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg, rgba(5,18,40,.96), rgba(9,34,67,.90));
    box-shadow: 0 24px 54px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
}

.dtp-dashboard-sidebar-card {
    padding: 22px;
}

.dtp-dashboard-sidebar-card h3,
.dtp-dashboard-contact-card h3,
.dtp-dashboard-public-url-card h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.16;
    margin: 0 0 12px;
}

.dtp-dashboard-sidebar-card p:not(.dtp-front-kicker),
.dtp-dashboard-contact-card p,
.dtp-dashboard-public-url-card p {
    color: rgba(255,255,255,.74);
    line-height: 1.58;
}

.dtp-dashboard-nav-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.dtp-dashboard-nav-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;
    padding: 12px;
    background: rgba(255,255,255,.055);
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.06);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.dtp-dashboard-nav-card:hover,
.dtp-dashboard-nav-card:focus {
    transform: translateX(4px);
    border-color: rgba(245,200,75,.42);
    background: rgba(245,200,75,.08);
}

.dtp-dashboard-nav-card strong,
.dtp-dashboard-nav-card em {
    display: block;
}

.dtp-dashboard-nav-card strong {
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 2px;
}

.dtp-dashboard-nav-card em {
    color: rgba(255,255,255,.63);
    font-style: normal;
    font-size: 12px;
    font-weight: 750;
}

.dtp-dashboard-icon-frame,
.dtp-sidebar-icon-frame {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #f5c84b;
    background: linear-gradient(145deg, rgba(245,200,75,.18), rgba(245,200,75,.06));
    border: 1px solid rgba(245,200,75,.28);
    box-shadow: 0 14px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
}

.dtp-sidebar-icon-frame {
    margin-bottom: 14px;
}

.dtp-dashboard-partner-card {
    position: relative;
    overflow: hidden;
}

.dtp-dashboard-partner-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    bottom: -70px;
    border-radius: 999px;
    background: rgba(245,200,75,.12);
    pointer-events: none;
}

.dtp-dashboard-main-center {
    min-width: 0;
}

.dtp-dashboard-edit-panel {
    padding: clamp(22px, 3vw, 32px);
}

.dtp-dashboard-section-head-clean {
    align-items: flex-start;
    margin-bottom: 22px;
}

.dtp-dashboard-description-field {
    margin-bottom: 22px !important;
}

.dtp-dashboard-description-field textarea {
    min-height: 190px;
    font-size: 15px;
    line-height: 1.65;
}

.dtp-dashboard-main-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dtp-dashboard-main-fields p,
.dtp-dashboard-contact-right p {
    margin-bottom: 0;
}

.dtp-dashboard-contact-card,
.dtp-dashboard-public-url-card {
    padding: 22px;
}

.dtp-checkbox-grid-vertical {
    grid-template-columns: 1fr;
    margin-top: 14px;
}

.dtp-checkbox-card {
    position: relative;
    box-shadow: 0 14px 26px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.08);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.dtp-checkbox-card:hover,
.dtp-checkbox-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(245,200,75,.52);
    background: rgba(245,200,75,.12);
}

.dtp-public-url-pill {
    display: block;
    margin-top: 14px;
    border: 1px solid rgba(245,200,75,.32);
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(245,200,75,.09);
    color: #f5c84b !important;
    font-weight: 900;
    text-decoration: none !important;
    word-break: break-all;
}

.dtp-dashboard-sticky-save {
    position: sticky;
    bottom: 14px;
    z-index: 20;
    justify-content: center;
    border: 1px solid rgba(245,200,75,.26);
    border-radius: 24px;
    padding: 14px 18px;
    background: rgba(5,18,40,.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 54px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
}

.dtp-dashboard-sticky-save .dtp-form-note {
    margin: 0;
    color: rgba(255,255,255,.70);
}

.dtp-dashboard-entries-block {
    margin-top: 24px;
}

@media (max-width: 1280px) {
    .dtp-dashboard-redesign-layout {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    }
    .dtp-dashboard-contact-right {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .dtp-dashboard-redesign-wrap {
        max-width: calc(100vw - 22px);
    }
    .dtp-dashboard-status-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dtp-dashboard-redesign-layout,
    .dtp-dashboard-contact-right {
        grid-template-columns: 1fr;
    }
    .dtp-dashboard-sidebar-left {
        order: 2;
    }
    .dtp-dashboard-main-center {
        order: 1;
    }
    .dtp-dashboard-contact-right {
        order: 3;
    }
}

@media (max-width: 760px) {
    .dtp-dashboard-redesign-hero {
        min-height: auto;
        padding-top: 82px;
    }
    .dtp-dashboard-brand-row-redesign {
        align-items: flex-start;
    }
    .dtp-cover-upload-hotspot {
        left: 16px;
        right: 16px;
        justify-content: center;
    }
    .dtp-media-remove-cover {
        position: static;
        margin: 10px 0 0 !important;
    }
    .dtp-company-logo-box-clickable {
        width: 96px;
        height: 96px;
        flex-basis: 96px;
    }
    .dtp-dashboard-hero-side-redesign {
        min-width: 0;
        width: 100%;
    }
    .dtp-dashboard-status-strip,
    .dtp-dashboard-main-fields {
        grid-template-columns: 1fr;
    }
    .dtp-dashboard-sticky-save {
        position: static;
        justify-content: flex-start;
    }
}

/* Dashboard/Public Profile premium fix v0.3.6l */
body.dtp-dashboard-page,
body:has(.dtp-dashboard-redesign-wrap) {
    background: #06111f !important;
}

body.dtp-dashboard-page .dt-topzone,
body:has(.dtp-dashboard-redesign-wrap) .dt-topzone,
body.dtp-dashboard-page .page-header,
body:has(.dtp-dashboard-redesign-wrap) .page-header,
body.dtp-dashboard-page header.page-header,
body:has(.dtp-dashboard-redesign-wrap) header.page-header,
body.dtp-dashboard-page main header.entry-header,
body:has(.dtp-dashboard-redesign-wrap) main header.entry-header,
body.dtp-dashboard-page .entry-header:not(.dtp-dashboard-redesign-wrap .entry-header),
body:has(.dtp-dashboard-redesign-wrap) .entry-header:not(.dtp-dashboard-redesign-wrap .entry-header),
body.dtp-dashboard-page .elementor-page-title,
body:has(.dtp-dashboard-redesign-wrap) .elementor-page-title,
body.dtp-dashboard-page .elementor-heading-title.elementor-size-default,
body:has(.dtp-dashboard-redesign-wrap) .elementor-heading-title.elementor-size-default,
.dtp-dashboard-hidden-page-head {
    display: none !important;
}

body.dtp-dashboard-page #content,
body.dtp-dashboard-page .site-content,
body.dtp-dashboard-page .content-area,
body.dtp-dashboard-page .site-main,
body.dtp-dashboard-page main,
body:has(.dtp-dashboard-redesign-wrap) #content,
body:has(.dtp-dashboard-redesign-wrap) .site-content,
body:has(.dtp-dashboard-redesign-wrap) .content-area,
body:has(.dtp-dashboard-redesign-wrap) .site-main,
body:has(.dtp-dashboard-redesign-wrap) main {
    max-width: none !important;
    width: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: transparent !important;
}

body.dtp-dashboard-page .entry-content,
body:has(.dtp-dashboard-redesign-wrap) .entry-content,
body.dtp-dashboard-page .elementor-widget-container,
body:has(.dtp-dashboard-redesign-wrap) .elementor-widget-container {
    max-width: none !important;
}

.dtp-dashboard-redesign-wrap {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    transform: none !important;
    padding: clamp(24px, 3.2vw, 54px) clamp(14px, 2.4vw, 34px) 56px !important;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(245,200,75,.18), transparent 28%),
        radial-gradient(circle at 82% 2%, rgba(32,118,220,.22), transparent 26%),
        linear-gradient(180deg, #050e1b 0%, #071629 42%, #081a31 100%) !important;
    box-sizing: border-box;
}

.dtp-dashboard-redesign-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.56), transparent 76%);
}

.dtp-dashboard-redesign-form,
.dtp-dashboard-entries-block,
.dtp-dashboard-top-warning,
.dtp-register-message {
    position: relative;
    z-index: 1;
    width: min(1480px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.dtp-dashboard-redesign-hero {
    min-height: 360px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
    gap: clamp(24px, 3vw, 44px) !important;
    align-items: end !important;
    margin: 0 auto 18px !important;
    border-radius: 38px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden !important;
    box-shadow: 0 34px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.dtp-dashboard-redesign-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(3,10,22,.72));
    pointer-events: none;
}

.dtp-dashboard-redesign-hero > * {
    position: relative;
    z-index: 2;
}

.dtp-cover-upload-hotspot,
.dtp-company-logo-box-clickable {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.dtp-cover-upload-hotspot {
    top: 22px !important;
    right: 22px !important;
    min-height: 46px !important;
    border-width: 1px !important;
    background: rgba(5,16,34,.82) !important;
}

.dtp-media-file-input {
    position: fixed !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: .01 !important;
    pointer-events: auto !important;
}

.dtp-company-logo-box-clickable {
    width: 138px !important;
    height: 138px !important;
    flex: 0 0 138px !important;
    border-radius: 36px !important;
}

.dtp-dashboard-brand-row-redesign {
    display: flex !important;
    align-items: end !important;
    gap: clamp(18px, 2.5vw, 34px) !important;
}

.dtp-dashboard-redesign-hero h2 {
    font-size: clamp(44px, 5.4vw, 82px) !important;
    line-height: .92 !important;
    margin-bottom: 12px !important;
}

.dtp-dashboard-hero-side-redesign {
    align-self: center !important;
    min-width: 0 !important;
    padding: 22px !important;
    border: 1px solid rgba(245,200,75,.26) !important;
}

.dtp-dashboard-status-strip {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(168px, 1fr)) !important;
    gap: 12px !important;
    width: min(1480px, 100%) !important;
    margin: 18px auto 22px !important;
}

.dtp-dashboard-status-mini {
    min-height: 74px !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 10px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border-radius: 22px !important;
    background: linear-gradient(145deg, rgba(8,28,55,.96), rgba(6,20,40,.94)) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.dtp-dashboard-status-mini .dtp-dashboard-icon-frame {
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    grid-column: 1;
}

.dtp-dashboard-status-mini .dtp-dashboard-status-dot {
    position: static !important;
    grid-column: 3;
    width: 10px !important;
    height: 10px !important;
    align-self: start;
    margin-top: 8px;
}

.dtp-dashboard-status-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.dtp-dashboard-status-mini .dtp-dashboard-tile-title {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: rgba(245,200,75,.92) !important;
}

.dtp-dashboard-status-mini strong {
    font-size: 15px !important;
    line-height: 1.18 !important;
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dtp-dashboard-status-mini small {
    display: block;
    color: rgba(255,255,255,.58) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.dtp-dashboard-redesign-layout {
    width: min(1480px, 100%) !important;
    margin: 0 auto !important;
    grid-template-columns: minmax(245px, 300px) minmax(540px, 1fr) minmax(270px, 330px) !important;
    gap: 20px !important;
}

.dtp-dashboard-sidebar-card,
.dtp-dashboard-edit-panel,
.dtp-dashboard-contact-card,
.dtp-dashboard-public-url-card,
.dtp-dashboard-entries-block > .dtp-front-card,
.dtp-dashboard-entries-block .dtp-front-card {
    background: linear-gradient(145deg, rgba(7,25,50,.96), rgba(4,15,31,.94)) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.dtp-dashboard-edit-panel {
    padding: clamp(24px, 3vw, 40px) !important;
}

.dtp-dashboard-description-field textarea {
    min-height: 170px !important;
}

.dtp-dashboard-sticky-save {
    width: min(1180px, 100%);
    margin-left: auto !important;
    margin-right: auto !important;
}

.dtp-public-company-wrap.dtp-public-company-premium {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: clamp(28px, 4vw, 62px) clamp(14px, 2.4vw, 34px) 78px !important;
    min-height: 72vh;
    background:
        radial-gradient(circle at 18% 2%, rgba(245,200,75,.18), transparent 28%),
        radial-gradient(circle at 86% 8%, rgba(35,122,223,.22), transparent 28%),
        linear-gradient(180deg, #050e1b 0%, #071629 100%) !important;
    box-sizing: border-box;
}

.dtp-public-company-shell {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.dtp-public-company-hero-premium {
    min-height: 360px;
    border-radius: 38px !important;
    padding: clamp(28px, 4vw, 54px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px) !important;
    align-items: end !important;
    gap: 28px !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.dtp-public-company-hero-premium:not([style]) {
    background:
        radial-gradient(circle at 18% 20%, rgba(245,200,75,.18), transparent 34%),
        linear-gradient(135deg, rgba(5,18,40,.98), rgba(11,44,82,.92)) !important;
}

.dtp-public-company-brand {
    display: flex;
    align-items: end;
    gap: 24px;
}

.dtp-company-logo-public-premium {
    width: 132px !important;
    height: 132px !important;
    flex: 0 0 132px !important;
    border-radius: 34px !important;
    border: 1px solid rgba(245,200,75,.58) !important;
    box-shadow: 0 24px 58px rgba(0,0,0,.34), 0 0 0 8px rgba(245,200,75,.08) !important;
}

.dtp-public-company-hero-premium h1 {
    font-size: clamp(42px, 6vw, 84px) !important;
    line-height: .94 !important;
    margin: 0 0 12px !important;
}

.dtp-public-profile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.dtp-public-profile-chips span,
.dtp-public-company-hero-card {
    border: 1px solid rgba(245,200,75,.26);
    background: rgba(5,18,40,.62);
    color: rgba(255,255,255,.86);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 34px rgba(0,0,0,.20);
}

.dtp-public-profile-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 12px;
}

.dtp-public-company-hero-card {
    border-radius: 28px;
    padding: 22px;
}

.dtp-public-company-hero-card strong,
.dtp-public-company-hero-card span {
    display: block;
}

.dtp-public-company-hero-card strong {
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}

.dtp-public-company-hero-card span {
    color: rgba(255,255,255,.68);
    font-weight: 800;
}

.dtp-public-company-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
    gap: 22px;
    margin-top: 22px;
}

.dtp-public-company-about-card,
.dtp-public-company-facts-card,
.dtp-public-company-not-found {
    max-width: none !important;
    border-radius: 32px !important;
    padding: clamp(26px, 3.5vw, 44px) !important;
    background: linear-gradient(145deg, rgba(7,25,50,.96), rgba(4,15,31,.94)) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.dtp-public-company-about-card h2 {
    color: #fff !important;
    font-size: clamp(34px, 4vw, 56px) !important;
    line-height: 1 !important;
    margin: 0 0 18px !important;
}

.dtp-public-company-about-card p {
    color: rgba(255,255,255,.76) !important;
    font-size: 17px !important;
    line-height: 1.72 !important;
}

.dtp-public-company-facts .dtp-dashboard-detail-row {
    background: rgba(255,255,255,.055) !important;
    border-color: rgba(255,255,255,.10) !important;
}

@media (max-width: 1220px) {
    .dtp-dashboard-redesign-layout {
        grid-template-columns: minmax(230px, 285px) minmax(0, 1fr) !important;
    }
    .dtp-dashboard-contact-right {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    .dtp-dashboard-status-strip {
        grid-template-columns: repeat(3, minmax(168px, 1fr)) !important;
    }
}

@media (max-width: 920px) {
    .dtp-dashboard-redesign-hero,
    .dtp-public-company-hero-premium,
    .dtp-public-company-content-grid {
        grid-template-columns: 1fr !important;
    }
    .dtp-dashboard-status-strip {
        grid-template-columns: repeat(2, minmax(150px, 1fr)) !important;
    }
    .dtp-dashboard-redesign-layout,
    .dtp-dashboard-contact-right {
        grid-template-columns: 1fr !important;
    }
    .dtp-dashboard-sidebar-left,
    .dtp-dashboard-main-center,
    .dtp-dashboard-contact-right {
        order: initial !important;
    }
}

@media (max-width: 620px) {
    .dtp-dashboard-redesign-wrap,
    .dtp-public-company-wrap.dtp-public-company-premium {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .dtp-dashboard-redesign-hero {
        padding-top: 96px !important;
        border-radius: 28px !important;
    }
    .dtp-dashboard-brand-row-redesign,
    .dtp-public-company-brand {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    .dtp-dashboard-status-strip {
        grid-template-columns: 1fr !important;
    }
    .dtp-company-logo-box-clickable,
    .dtp-company-logo-public-premium {
        width: 104px !important;
        height: 104px !important;
        flex-basis: 104px !important;
    }
}

/* Phase 28m: automated public profile SEO readiness */
.dtp-dashboard-seo-card .dtp-seo-readiness{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:14px 0;padding:12px 14px;border:1px solid rgba(214,170,80,.22);border-radius:16px;background:rgba(4,14,33,.42);box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}
.dtp-dashboard-seo-card .dtp-seo-readiness span{display:inline-flex;align-items:center;justify-content:center;min-width:52px;height:38px;border-radius:14px;background:linear-gradient(135deg,rgba(214,170,80,.95),rgba(146,96,20,.88));color:#071222;font-weight:900;box-shadow:0 10px 22px rgba(0,0,0,.26)}
.dtp-dashboard-seo-card .dtp-seo-readiness strong{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:#f5d991}
.dtp-seo-missing-list{margin:10px 0 0;padding:0;list-style:none;display:grid;gap:7px}
.dtp-seo-missing-list li{position:relative;padding-left:18px;font-size:12px;color:#f4d8a8;line-height:1.35}
.dtp-seo-missing-list li:before{content:"";position:absolute;left:0;top:.55em;width:7px;height:7px;border-radius:50%;background:#f0ad4e;box-shadow:0 0 0 4px rgba(240,173,78,.12)}
.dtp-dashboard-tile-warning .dtp-dashboard-status-dot{background:#f0ad4e;box-shadow:0 0 0 5px rgba(240,173,78,.14),0 0 18px rgba(240,173,78,.38)}

/* Phase 28n: dashboard layout polish, upload-no-popup, contrast pass */
body.dtp-dashboard-page,
body.dtp-dashboard-page #page,
body.dtp-dashboard-page .site,
body.dtp-dashboard-page .site-content,
body.dtp-dashboard-page .entry-content {
    background: #050d18 !important;
}

.dtp-dashboard-redesign-wrap {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    transform: none !important;
    padding: clamp(16px, 2.2vw, 34px) clamp(12px, 2vw, 28px) 58px !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(245,200,75,.13), transparent 28%),
        radial-gradient(circle at 92% 6%, rgba(31,106,199,.24), transparent 30%),
        linear-gradient(180deg, #050d18 0%, #07182b 42%, #050d18 100%) !important;
}

.dtp-dashboard-redesign-form,
.dtp-dashboard-redesign-wrap > .dtp-register-message {
    width: min(1540px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.dtp-dashboard-hero-v2 {
    position: relative !important;
    width: min(1540px, 100%) !important;
    max-width: none !important;
    min-height: 360px !important;
    margin: 0 auto 18px !important;
    padding: clamp(26px, 3vw, 46px) !important;
    display: flex !important;
    align-items: flex-end !important;
    border: 1px solid rgba(245,200,75,.18) !important;
    border-radius: 38px !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: 0 34px 95px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.dtp-dashboard-hero-v2::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,10,22,.78), rgba(4,17,36,.34) 46%, rgba(3,10,22,.70)),
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 36%, rgba(0,0,0,.24));
    pointer-events: none;
    z-index: 0;
}

.dtp-dashboard-hero-shell-v2 {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(130px, 185px) minmax(0, 1fr) minmax(260px, 340px);
    align-items: end;
    gap: clamp(20px, 3vw, 42px);
}

.dtp-dashboard-hero-logo-area-v2 {
    display: grid;
    align-items: end;
    justify-items: start;
    gap: 12px;
}

.dtp-dashboard-hero-title-area-v2 {
    text-align: center;
    min-width: 0;
}

.dtp-dashboard-hero-title-area-v2 .dtp-front-kicker {
    justify-content: center;
    margin-bottom: 10px !important;
}

.dtp-dashboard-hero-title-area-v2 h2 {
    font-size: clamp(46px, 6vw, 92px) !important;
    line-height: .88 !important;
    letter-spacing: -.055em !important;
    margin: 0 0 14px !important;
    color: #ffffff !important;
    text-shadow: 0 18px 46px rgba(0,0,0,.48);
}

.dtp-dashboard-hero-title-area-v2 .dtp-front-intro {
    margin: 0 !important;
    color: rgba(255,255,255,.86) !important;
    font-weight: 850 !important;
}

.dtp-dashboard-hero-side-v2 {
    align-self: end !important;
    border-radius: 26px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(3,12,28,.56) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 52px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.dtp-cover-upload-hotspot-v2 {
    top: 18px !important;
    right: 18px !important;
    z-index: 5 !important;
    background: rgba(4,14,31,.78) !important;
    border: 1px solid rgba(245,200,75,.58) !important;
}

.dtp-media-remove-cover {
    top: 72px !important;
    right: 18px !important;
    z-index: 5 !important;
}

.dtp-logo-remove-chip {
    margin-left: 0 !important;
}

.dtp-dashboard-redesign-wrap .dtp-media-file-input {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: .001 !important;
    pointer-events: auto !important;
}

.dtp-company-logo-box-clickable,
.dtp-cover-upload-hotspot-v2 {
    user-select: none;
}

.dtp-dashboard-status-strip {
    width: min(1540px, 100%) !important;
    grid-template-columns: repeat(6, minmax(150px, 1fr)) !important;
    gap: 12px !important;
    margin: 0 auto 22px !important;
}

.dtp-dashboard-status-mini {
    min-height: 66px !important;
    padding: 10px 12px !important;
    grid-template-columns: 38px minmax(0, 1fr) 9px !important;
    border-radius: 20px !important;
    background: linear-gradient(145deg, rgba(8,29,56,.70), rgba(4,15,31,.84)) !important;
    border: 1px solid rgba(245,200,75,.18) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08) !important;
    backdrop-filter: blur(10px);
}

.dtp-dashboard-status-mini .dtp-dashboard-icon-frame {
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
}

.dtp-dashboard-status-mini strong {
    color: #fff !important;
    font-size: 14px !important;
}

.dtp-dashboard-status-mini small {
    color: rgba(255,255,255,.60) !important;
}

.dtp-dashboard-redesign-layout {
    width: min(1540px, 100%) !important;
    grid-template-columns: minmax(245px, 300px) minmax(620px, 1fr) minmax(270px, 330px) !important;
    gap: 20px !important;
}

.dtp-dashboard-profile-head-v2 {
    align-items: flex-start !important;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(245,200,75,.15);
    margin-bottom: 22px !important;
}

.dtp-dashboard-head-actions-v2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.dtp-dashboard-save-top {
    white-space: nowrap;
    box-shadow: 0 18px 34px rgba(245,158,11,.18), 0 0 0 1px rgba(255,255,255,.16) inset !important;
}

.dtp-dashboard-main-fields-v2 {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    padding: 18px !important;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    background: rgba(255,255,255,.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.dtp-dashboard-description-field-v2 {
    margin-top: 4px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(245,200,75,.14);
}

.dtp-dashboard-description-field-v2 textarea {
    min-height: 150px !important;
}

.dtp-dashboard-edit-panel input,
.dtp-dashboard-edit-panel select,
.dtp-dashboard-edit-panel textarea,
.dtp-dashboard-contact-right input,
.dtp-dashboard-contact-right select,
.dtp-dashboard-contact-right textarea {
    color: #fff !important;
    background: rgba(255,255,255,.075) !important;
    border-color: rgba(255,255,255,.18) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 24px rgba(0,0,0,.12) !important;
}

.dtp-dashboard-edit-panel input::placeholder,
.dtp-dashboard-edit-panel textarea::placeholder {
    color: rgba(255,255,255,.52) !important;
}

.dtp-dashboard-save-row-secondary {
    width: min(1540px, 100%) !important;
    margin: 14px auto 0 !important;
    justify-content: center;
    opacity: .82;
}

.dtp-dashboard-block-anchor.dtp-dashboard-entries-block {
    display: none !important;
}

/* Improve package/permission cards when package blocks are shown on dark Direct Tender screens. */
.dtp-dashboard-redesign-wrap .dtp-package-rule-grid div,
.dtp-tender-submit-card .dtp-package-rule-grid div,
.dtp-package-summary-card .dtp-package-rule-grid div {
    color: #fff !important;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
    border: 1px solid rgba(245,200,75,.22) !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.dtp-dashboard-redesign-wrap .dtp-package-rule-grid span,
.dtp-tender-submit-card .dtp-package-rule-grid span,
.dtp-package-summary-card .dtp-package-rule-grid span {
    color: rgba(245,200,75,.90) !important;
    opacity: 1 !important;
    font-weight: 900 !important;
}

.dtp-dashboard-redesign-wrap .dtp-package-rule-grid strong,
.dtp-tender-submit-card .dtp-package-rule-grid strong,
.dtp-package-summary-card .dtp-package-rule-grid strong {
    color: #fff !important;
    font-weight: 950 !important;
}

.dtp-dashboard-redesign-wrap .dtp-package-summary-card,
.dtp-tender-submit-card .dtp-package-summary-card {
    background: rgba(3,12,28,.52) !important;
    border-color: rgba(255,255,255,.12) !important;
}

@media (max-width: 1280px) {
    .dtp-dashboard-status-strip {
        grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    }
    .dtp-dashboard-hero-shell-v2,
    .dtp-dashboard-redesign-layout {
        grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) !important;
    }
    .dtp-dashboard-hero-side-v2,
    .dtp-dashboard-contact-right {
        grid-column: 1 / -1;
    }
    .dtp-dashboard-contact-right {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 920px) {
    .dtp-dashboard-hero-shell-v2,
    .dtp-dashboard-redesign-layout,
    .dtp-dashboard-contact-right {
        grid-template-columns: 1fr !important;
    }
    .dtp-dashboard-hero-title-area-v2 {
        text-align: left;
    }
    .dtp-dashboard-hero-title-area-v2 .dtp-front-kicker {
        justify-content: flex-start;
    }
    .dtp-dashboard-status-strip {
        grid-template-columns: repeat(2, minmax(150px, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .dtp-dashboard-status-strip {
        grid-template-columns: 1fr !important;
    }
    .dtp-dashboard-hero-v2 {
        min-height: auto !important;
        padding-top: 94px !important;
    }
    .dtp-dashboard-profile-head-v2,
    .dtp-dashboard-head-actions-v2 {
        display: grid !important;
        justify-content: stretch !important;
    }
    .dtp-dashboard-save-top {
        width: 100%;
    }
}

/* Phase 28o: dashboard tabs logic, aligned columns, circular logo and clean save flow */
.dtp-dashboard-redesign-wrap .dtp-company-logo-box-clickable {
    width: 124px !important;
    height: 124px !important;
    flex: 0 0 124px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.16), rgba(5,18,40,.30) 46%, rgba(4,12,28,.62)) !important;
    border: 3px solid rgba(245,200,75,.86) !important;
    box-shadow:
        0 28px 72px rgba(0,0,0,.48),
        0 0 0 8px rgba(245,200,75,.10),
        inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.dtp-dashboard-redesign-wrap .dtp-company-logo-box-clickable img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 14px !important;
    background: transparent !important;
    border-radius: 999px !important;
}
.dtp-dashboard-redesign-wrap .dtp-company-logo-box-clickable > span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c84b !important;
    font-size: 32px !important;
    font-weight: 950 !important;
    letter-spacing: -.04em;
}
.dtp-dashboard-redesign-wrap .dtp-company-logo-box-clickable em {
    right: 4px !important;
    bottom: 4px !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    z-index: 4;
}
.dtp-dashboard-hero-v2 {
    min-height: 330px !important;
}
.dtp-dashboard-hero-shell-v2 {
    grid-template-columns: 160px minmax(0, 1fr) 310px !important;
    align-items: center !important;
}
.dtp-dashboard-hero-title-area-v2 {
    justify-self: center !important;
    text-align: center !important;
}
.dtp-dashboard-hero-side-v2 {
    align-self: center !important;
}
.dtp-cover-upload-hotspot-v2 {
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    width: auto !important;
    max-width: calc(100% - 36px);
}
.dtp-dashboard-status-strip {
    align-items: stretch !important;
}
.dtp-dashboard-status-mini {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) 10px !important;
    align-items: center !important;
    column-gap: 10px !important;
    min-height: 62px !important;
    padding: 10px 12px !important;
}
.dtp-dashboard-status-mini .dtp-dashboard-icon-frame {
    margin: 0 !important;
}
.dtp-dashboard-status-copy {
    min-width: 0;
}
.dtp-dashboard-status-copy .dtp-dashboard-tile-title,
.dtp-dashboard-status-copy strong,
.dtp-dashboard-status-copy small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dtp-dashboard-status-mini .dtp-dashboard-status-dot {
    position: static !important;
    justify-self: end;
}
.dtp-dashboard-redesign-layout {
    grid-template-columns: minmax(250px, 292px) minmax(0, 1fr) minmax(250px, 300px) !important;
    align-items: start !important;
}
.dtp-dashboard-sidebar-left,
.dtp-dashboard-contact-right {
    align-self: start !important;
}
.dtp-dashboard-contact-right {
    gap: 14px !important;
}
.dtp-dashboard-contact-right .dtp-dashboard-card {
    padding: 18px !important;
}
.dtp-dashboard-contact-right .dtp-dashboard-card h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
}
.dtp-dashboard-contact-right .dtp-dashboard-card p {
    font-size: 13px !important;
    line-height: 1.45 !important;
}
.dtp-dashboard-contact-right .dtp-sidebar-icon-frame {
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
    margin-bottom: 10px !important;
}
.dtp-dashboard-nav-card {
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    appearance: none;
}
.dtp-dashboard-nav-card.is-active,
.dtp-dashboard-nav-card[aria-selected="true"] {
    border-color: rgba(245,200,75,.68) !important;
    background: linear-gradient(145deg, rgba(245,200,75,.17), rgba(255,255,255,.055)) !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.10) !important;
}
.dtp-dashboard-tab-panel[hidden] {
    display: none !important;
}
.dtp-dashboard-tab-panel.is-active {
    display: block !important;
    animation: dtpDashboardPanelIn .18s ease both;
}
@keyframes dtpDashboardPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dtp-dashboard-info-panel,
.dtp-dashboard-edit-panel,
.dtp-dashboard-seo-card {
    background: linear-gradient(145deg, rgba(5,18,40,.92), rgba(9,34,67,.82)) !important;
    border: 1px solid rgba(245,200,75,.16) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.dtp-dashboard-save-row-inline {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    justify-content: flex-start !important;
    margin: 18px 0 0 !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(245,200,75,.16) !important;
}
.dtp-dashboard-save-primary {
    flex: 0 0 auto;
    box-shadow: 0 18px 34px rgba(245,158,11,.18), 0 0 0 1px rgba(255,255,255,.16) inset !important;
}
.dtp-dashboard-save-row-inline .dtp-form-note {
    margin: 0 !important;
    color: rgba(255,255,255,.66) !important;
    font-size: 13px !important;
}
.dtp-dashboard-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.dtp-dashboard-metric-card,
.dtp-dashboard-package-stat,
.dtp-dashboard-package-metrics .dtp-dashboard-package-stat {
    min-height: 84px;
    padding: 15px 16px !important;
    border-radius: 19px !important;
    color: #fff !important;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.028)) !important;
    border: 1px solid rgba(245,200,75,.24) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.dtp-dashboard-metric-card span,
.dtp-dashboard-package-stat span {
    display: block;
    color: rgba(245,200,75,.90) !important;
    font-weight: 950 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.dtp-dashboard-metric-card strong,
.dtp-dashboard-package-stat strong {
    display: block;
    color: #fff !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin: 5px 0 2px !important;
}
.dtp-dashboard-metric-card small,
.dtp-dashboard-package-stat small {
    color: rgba(255,255,255,.64) !important;
    font-weight: 800;
}
.dtp-dashboard-empty-state {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.11);
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.76);
}
.dtp-dashboard-empty-state strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.dtp-dashboard-empty-state p {
    margin: 0 !important;
}
.dtp-dashboard-partner-wide .dtp-checkbox-card {
    margin-top: 12px;
}
.dtp-dashboard-sidebar-card .dtp-front-kicker,
.dtp-dashboard-contact-right .dtp-front-kicker,
.dtp-dashboard-main-center .dtp-front-kicker {
    color: #f5c84b !important;
}
.dtp-dashboard-redesign-wrap .dtp-dashboard-save-row-secondary {
    display: none !important;
}
.dtp-dashboard-redesign-wrap .dtp-dashboard-block-anchor.dtp-dashboard-entries-block,
.dtp-dashboard-redesign-wrap .dtp-tender-submit-card {
    display: none !important;
}
@media (max-width: 1280px) {
    .dtp-dashboard-redesign-layout,
    .dtp-dashboard-hero-shell-v2 {
        grid-template-columns: 280px minmax(0, 1fr) !important;
    }
    .dtp-dashboard-contact-right,
    .dtp-dashboard-hero-side-v2 {
        grid-column: 1 / -1 !important;
    }
    .dtp-dashboard-contact-right {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    .dtp-dashboard-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 920px) {
    .dtp-dashboard-redesign-layout,
    .dtp-dashboard-hero-shell-v2,
    .dtp-dashboard-contact-right {
        grid-template-columns: 1fr !important;
    }
    .dtp-dashboard-hero-title-area-v2 {
        text-align: left !important;
        justify-self: stretch !important;
    }
    .dtp-dashboard-hero-title-area-v2 .dtp-front-kicker {
        justify-content: flex-start !important;
    }
    .dtp-dashboard-save-row-inline {
        display: grid !important;
    }
}
@media (max-width: 620px) {
    .dtp-dashboard-metric-grid {
        grid-template-columns: 1fr;
    }
    .dtp-dashboard-redesign-wrap .dtp-company-logo-box-clickable {
        width: 104px !important;
        height: 104px !important;
        flex-basis: 104px !important;
    }
}


/* Phase 28p: default company header asset fallback */
.dtp-dashboard-hero-has-default-cover,
.dtp-public-company-hero-has-default-cover {
    background-size: cover !important;
    background-position: center !important;
}

.dtp-dashboard-hero-has-default-cover::before,
.dtp-public-company-hero-has-default-cover::before {
    background:
        radial-gradient(circle at 72% 32%, rgba(84, 191, 255, .18), transparent 34%),
        radial-gradient(circle at 18% 78%, rgba(214, 163, 58, .16), transparent 32%),
        linear-gradient(135deg, rgba(2, 8, 20, .18), rgba(5, 20, 46, .32));
}

.dtp-dashboard-hero-has-default-cover .dtp-dashboard-hero-title-area-v2,
.dtp-public-company-hero-has-default-cover .dtp-public-company-brand {
    text-shadow: 0 14px 30px rgba(0, 0, 0, .32);
}


/* Phase 28q: small dashboard polish - gold divider, stronger cards, readable CTA and home return */
.dtp-dashboard-redesign-wrap {
    position: relative !important;
}
.dtp-dashboard-home-return {
    position: fixed;
    right: 24px;
    top: 96px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #061528 !important;
    text-decoration: none !important;
    font-weight: 950;
    letter-spacing: .01em;
    background: linear-gradient(135deg, #f8d765, #d99b22) !important;
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 0 1px rgba(245,200,75,.28), inset 0 1px 0 rgba(255,255,255,.42);
}
.dtp-dashboard-home-return span {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,21,40,.13);
    font-size: 18px;
    line-height: 1;
}
.dtp-dashboard-home-return:hover,
.dtp-dashboard-home-return:focus {
    transform: translateY(-2px);
    filter: brightness(1.05);
    color: #061528 !important;
}
.dtp-dashboard-hero-divider {
    width: min(1180px, calc(100% - 34px));
    height: 5px;
    margin: -2px auto 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(245,200,75,.35), #f5c84b, rgba(245,200,75,.35), transparent);
    box-shadow: 0 14px 34px rgba(245,158,11,.22), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.dtp-dashboard-status-strip {
    margin-top: 0 !important;
}
.dtp-dashboard-status-mini,
.dtp-dashboard-nav-card,
.dtp-dashboard-sidebar-card,
.dtp-dashboard-contact-right .dtp-dashboard-card,
.dtp-dashboard-edit-panel,
.dtp-dashboard-info-panel,
.dtp-dashboard-metric-card,
.dtp-dashboard-package-stat,
.dtp-dashboard-public-url-card,
.dtp-dashboard-seo-card {
    border-color: rgba(245,200,75,.34) !important;
    box-shadow:
        0 22px 52px rgba(0,0,0,.34),
        0 0 0 1px rgba(245,200,75,.08),
        inset 0 1px 0 rgba(255,255,255,.11) !important;
}
.dtp-dashboard-status-mini,
.dtp-dashboard-nav-card,
.dtp-dashboard-metric-card,
.dtp-dashboard-package-stat {
    background: linear-gradient(145deg, rgba(13,46,86,.76), rgba(5,18,40,.88)) !important;
}
.dtp-dashboard-status-mini:hover,
.dtp-dashboard-nav-card:hover,
.dtp-dashboard-metric-card:hover,
.dtp-dashboard-package-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(245,200,75,.54) !important;
    box-shadow:
        0 28px 64px rgba(0,0,0,.42),
        0 0 0 1px rgba(245,200,75,.16),
        inset 0 1px 0 rgba(255,255,255,.14) !important;
}
.dtp-dashboard-status-copy .dtp-dashboard-tile-title,
.dtp-dashboard-status-copy strong,
.dtp-dashboard-status-copy small,
.dtp-dashboard-metric-card,
.dtp-dashboard-package-stat {
    text-shadow: 0 2px 12px rgba(0,0,0,.24);
}
.dtp-dashboard-info-panel .dtp-button:not(.dtp-button-outline),
.dtp-dashboard-edit-panel .dtp-button:not(.dtp-button-outline),
.dtp-post-tender-shell .dtp-button:not(.dtp-button-outline),
.dtp-tender-submit-card .dtp-button:not(.dtp-button-outline),
.dtp-dashboard-save-primary {
    color: #061528 !important;
    text-shadow: none !important;
    font-weight: 950 !important;
}
.dtp-dashboard-info-panel .dtp-button:not(.dtp-button-outline) *,
.dtp-dashboard-edit-panel .dtp-button:not(.dtp-button-outline) *,
.dtp-post-tender-shell .dtp-button:not(.dtp-button-outline) *,
.dtp-tender-submit-card .dtp-button:not(.dtp-button-outline) *,
.dtp-dashboard-save-primary * {
    color: #061528 !important;
    text-shadow: none !important;
}
.dtp-dashboard-section-head-clean .dtp-button:not(.dtp-button-outline) {
    min-width: 170px;
    justify-content: center;
}
@media (max-width: 920px) {
    .dtp-dashboard-home-return {
        position: sticky;
        top: 12px;
        right: auto;
        margin: 0 18px 12px auto;
        width: max-content;
    }
    .dtp-dashboard-hero-divider {
        width: calc(100% - 28px);
        margin-bottom: 16px;
    }
}


/* Post Tender radio category variant v0.3.7i */
.dtp-pt-radio-shell{width:min(1320px,calc(100vw - 32px))!important;max-width:1320px!important;box-sizing:border-box!important;margin-left:auto!important;margin-right:auto!important}
.dtp-pt-radio-shell.dtp-front-card{padding:28px!important}.dtp-pt-radio-embedded{width:100%!important;max-width:100%!important}
.dtp-pt-radio-hero{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(260px,.75fr);gap:18px;align-items:stretch}
.dtp-pt-radio-hero>div,.dtp-pt-radio-note,.dtp-pt-radio-section{border:1px solid rgba(245,200,75,.34);border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));box-shadow:0 18px 42px rgba(0,0,0,.22)}
.dtp-pt-radio-hero>div:first-child{padding:28px}.dtp-pt-radio-note{padding:22px}.dtp-pt-radio-note span{display:block;margin-bottom:6px;color:rgba(255,255,255,.68);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.dtp-pt-radio-note strong{display:block;margin-bottom:6px;color:#fff;font-size:24px}.dtp-pt-radio-note small{color:rgba(255,255,255,.72);line-height:1.55}
.dtp-pt-radio-kicker{display:inline-flex;padding:10px 16px;border-radius:999px;border:1px solid rgba(245,200,75,.48);background:rgba(245,200,75,.12)}
.dtp-pt-radio-divider{height:3px;margin:22px 0 24px;border-radius:999px;background:linear-gradient(90deg,rgba(245,200,75,.15),rgba(245,200,75,.95),rgba(245,200,75,.15));box-shadow:0 8px 18px rgba(245,200,75,.18)}
.dtp-pt-radio-form{display:grid;gap:18px}.dtp-pt-radio-section{padding:22px}.dtp-pt-radio-section-head{display:flex;gap:14px;align-items:flex-start;margin-bottom:14px}.dtp-pt-radio-section-head h3{margin:0 0 6px;color:#fff;font-size:clamp(21px,2.1vw,29px)}.dtp-pt-radio-section-head p{margin:0;color:rgba(255,255,255,.76);line-height:1.6}
.dtp-pt-radio-step{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;background:rgba(245,200,75,.16);color:#f5c84b;border:1px solid rgba(245,200,75,.38);font-weight:900;flex:0 0 auto}
.dtp-pt-type-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.dtp-pt-type-card{position:relative;display:flex;flex-direction:column;gap:10px;min-height:164px;padding:20px;border-radius:24px;border:1px solid rgba(245,200,75,.24);background:linear-gradient(160deg,rgba(9,27,49,.95),rgba(6,17,33,.98));box-shadow:0 18px 40px rgba(0,0,0,.22);cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.dtp-pt-type-card:hover{transform:translateY(-4px);border-color:rgba(245,200,75,.54);box-shadow:0 26px 52px rgba(0,0,0,.30)}.dtp-pt-type-card.is-active{border-color:rgba(245,200,75,.88);box-shadow:inset 0 0 0 1px rgba(245,200,75,.22),0 26px 52px rgba(0,0,0,.32)}.dtp-pt-type-card input{position:absolute;inset:0;opacity:0;pointer-events:none}.dtp-pt-type-card>span{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:16px;background:linear-gradient(135deg,rgba(245,200,75,.2),rgba(245,200,75,.08));color:#f5c84b;font-size:20px;font-weight:900;border:1px solid rgba(245,200,75,.28)}.dtp-pt-type-card strong{color:#fff;font-size:21px}.dtp-pt-type-card small{color:rgba(255,255,255,.78);line-height:1.55;font-size:13px}
.dtp-pt-subcat-group[hidden]{display:none!important}.dtp-pt-subcat-group{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.dtp-pt-subcat-card{position:relative;display:flex;align-items:center;min-height:56px;gap:10px;padding:13px 14px;border-radius:16px;border:1px solid rgba(245,200,75,.22);background:rgba(255,255,255,.045);cursor:pointer;transition:transform .16s ease,border-color .16s ease,background .16s ease}.dtp-pt-subcat-card:hover{transform:translateY(-2px);border-color:rgba(245,200,75,.48);background:rgba(245,200,75,.07)}.dtp-pt-subcat-card.is-selected{border-color:rgba(245,200,75,.9);background:rgba(245,200,75,.14);box-shadow:inset 0 0 0 1px rgba(245,200,75,.16)}.dtp-pt-subcat-card input{appearance:none;width:19px;height:19px;flex:0 0 auto;border-radius:5px;border:1px solid rgba(245,200,75,.55);background:rgba(255,255,255,.06);box-shadow:inset 0 0 0 2px rgba(4,14,31,.85)}.dtp-pt-subcat-card input:checked{background:#f5c84b;border-color:#f5c84b}.dtp-pt-subcat-card span{color:rgba(255,255,255,.9);font-weight:800;line-height:1.35}
.dtp-pt-selected-line{margin-top:16px;padding:13px 15px;border:1px solid rgba(245,200,75,.28);border-radius:16px;background:rgba(245,200,75,.08);color:rgba(255,255,255,.78);display:flex;gap:10px;flex-wrap:wrap}.dtp-pt-selected-line strong{color:#f5c84b}
.dtp-pt-radio-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:14px 16px!important}.dtp-pt-radio-form p{margin-bottom:14px}.dtp-pt-radio-form textarea{min-height:118px}
.dtp-pt-preview-card{border:1px solid rgba(245,200,75,.34);border-radius:22px;background:linear-gradient(145deg,rgba(8,28,55,.92),rgba(4,14,31,.96));box-shadow:0 18px 38px rgba(0,0,0,.24),inset 0 0 0 1px rgba(255,255,255,.035);padding:22px}.dtp-pt-preview-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px}.dtp-pt-preview-badges span{display:inline-flex;align-items:center;min-height:30px;border-radius:999px;border:1px solid rgba(245,200,75,.42);background:rgba(245,200,75,.10);color:#f5c84b;font-size:12px;font-weight:900;padding:6px 12px}.dtp-pt-preview-card h4{margin:0 0 12px;color:#fff;font-size:clamp(22px,2.4vw,34px);line-height:1.14}.dtp-pt-preview-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-bottom:14px}.dtp-pt-preview-meta span{border:1px solid rgba(255,255,255,.10);border-radius:14px;background:rgba(255,255,255,.055);color:rgba(255,255,255,.82);padding:10px 12px;font-size:13px;font-weight:700}.dtp-pt-preview-card p{margin:0;color:rgba(255,255,255,.76);line-height:1.65}
.dtp-pt-radio-section .dtp-checkbox-row{border:1px solid rgba(245,200,75,.18);border-radius:16px;padding:14px 16px;background:rgba(255,255,255,.04);margin-bottom:14px}
@media (max-width:1100px){.dtp-pt-radio-shell{width:min(100%,calc(100vw - 18px))!important;padding:22px!important}.dtp-pt-radio-hero{grid-template-columns:1fr}.dtp-pt-type-grid,.dtp-pt-subcat-group,.dtp-pt-radio-grid{grid-template-columns:1fr 1fr!important}}
@media (max-width:760px){.dtp-pt-radio-shell{width:min(100%,calc(100vw - 10px))!important;padding:16px!important}.dtp-pt-type-grid,.dtp-pt-subcat-group,.dtp-pt-radio-grid,.dtp-pt-preview-meta{grid-template-columns:1fr!important}.dtp-pt-radio-section-head{flex-direction:column}}


/* Post Tender radio collapse + mobile refinement v0.3.7j */
.dtp-pt-subcat-group.is-collapsed {
    display: none !important;
}

.dtp-pt-selected-line {
    cursor: pointer;
    align-items: center;
    justify-content: flex-start;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.dtp-pt-selected-line:hover {
    border-color: rgba(245,200,75,.58);
    background: rgba(245,200,75,.12);
    transform: translateY(-1px);
}

.dtp-pt-selected-line em {
    margin-left: auto;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dtp-pt-selected-line::after {
    content: "▾";
    color: #f5c84b;
    font-weight: 900;
    margin-left: 8px;
    transition: transform .16s ease;
}

.dtp-pt-selected-line.is-open::after {
    transform: rotate(180deg);
}

@media (max-width: 760px) {
    .dtp-pt-radio-hero > div:first-child,
    .dtp-pt-radio-note,
    .dtp-pt-radio-section {
        border-radius: 18px;
    }

    .dtp-pt-type-card {
        min-height: auto;
        padding: 16px;
    }

    .dtp-pt-subcat-card {
        min-height: 52px;
        padding: 12px;
    }

    .dtp-pt-selected-line {
        position: sticky;
        top: 8px;
        z-index: 3;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 14px 30px rgba(0,0,0,.22);
    }

    .dtp-pt-selected-line em {
        margin-left: 0;
    }

    .dtp-pt-selected-line::after {
        position: absolute;
        right: 14px;
        top: 14px;
    }
}


/* Real dashboard Meine Tender + profile save message fix v0.3.7m */
.dtp-dashboard-form-message{margin:14px 0}.dtp-dashboard-entry-metrics-real .dtp-dashboard-metric-filter-card{text-decoration:none;cursor:pointer;transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease}.dtp-dashboard-entry-metrics-real .dtp-dashboard-metric-filter-card:hover{transform:translateY(-3px);border-color:rgba(245,200,75,.62);box-shadow:0 18px 38px rgba(0,0,0,.24)}.dtp-dashboard-entry-metrics-real .dtp-dashboard-metric-filter-card.is-active{border-color:rgba(245,200,75,.9);box-shadow:inset 0 0 0 1px rgba(245,200,75,.22),0 18px 38px rgba(0,0,0,.24)}
.dtp-dashboard-entry-filterbar-real{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin:16px 0;padding:14px 16px;border-radius:16px;border:1px solid rgba(245,200,75,.22);background:rgba(255,255,255,.035)}.dtp-dashboard-entry-filterbar-real span{color:rgba(255,255,255,.72);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.dtp-dashboard-entry-filter-btn{display:inline-flex;align-items:center;min-height:34px;padding:7px 13px;border-radius:999px;border:1px solid rgba(245,200,75,.28);background:rgba(255,255,255,.045);color:rgba(255,255,255,.88);text-decoration:none;font-weight:800}.dtp-dashboard-entry-filter-btn:hover,.dtp-dashboard-entry-filter-btn.is-active{border-color:rgba(245,200,75,.86);background:rgba(245,200,75,.14);color:#f5c84b}
.dtp-dashboard-entry-filter-note{display:flex;align-items:center;justify-content:space-between;gap:14px;margin:14px 0 18px;padding:14px 16px;border-radius:16px;border:1px solid rgba(245,200,75,.28);background:rgba(245,200,75,.08);color:rgba(255,255,255,.84);flex-wrap:wrap}.dtp-dashboard-entry-filter-note strong{color:#f5c84b}.dtp-dashboard-entry-list-real{display:grid;gap:14px;margin-top:18px}.dtp-dashboard-entry-row-real{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;padding:18px;border-radius:20px;border:1px solid rgba(245,200,75,.22);background:rgba(255,255,255,.04);box-shadow:0 12px 28px rgba(0,0,0,.16)}.dtp-dashboard-entry-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:9px}.dtp-dashboard-entry-title-row h4{margin:0;color:#fff;font-size:20px}.dtp-dashboard-entry-meta-real,.dtp-dashboard-entry-facts-real{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0}.dtp-dashboard-entry-meta-real span,.dtp-dashboard-entry-facts-real span{display:inline-flex;align-items:center;min-height:27px;padding:4px 9px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04);color:rgba(255,255,255,.78);font-size:12px;font-weight:700}.dtp-dashboard-entry-main-real p{margin:8px 0;color:rgba(255,255,255,.76);line-height:1.55}.dtp-dashboard-entry-actions-real{display:flex;flex-direction:column;gap:8px;align-items:stretch;min-width:160px}.dtp-my-tender-btn{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:7px 12px;border-radius:999px;border:1px solid rgba(245,200,75,.28);background:rgba(255,255,255,.045);color:rgba(255,255,255,.88);text-decoration:none;font-weight:800;line-height:1.2;text-align:center}.dtp-my-tender-btn-edit{border-color:rgba(245,200,75,.66);color:#f5c84b}.dtp-my-tender-btn-public{border-color:rgba(82,220,145,.42)}
.dtp-dashboard-tender-detail-panel,.dtp-dashboard-tender-edit-panel{margin:22px auto 0;width:min(1320px,calc(100vw - 32px))}.dtp-dashboard-tender-detail-grid,.dtp-dashboard-tender-edit-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:18px 0}.dtp-dashboard-tender-detail-grid>div{padding:15px;border-radius:16px;border:1px solid rgba(245,200,75,.22);background:rgba(255,255,255,.04)}.dtp-dashboard-tender-detail-grid span{display:block;color:rgba(255,255,255,.62);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px}.dtp-dashboard-tender-detail-grid strong{color:#fff;line-height:1.35}.dtp-dashboard-tender-detail-text{padding:18px;border-radius:18px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.035)}.dtp-dashboard-tender-detail-text h4{margin:0 0 8px;color:#f5c84b}.dtp-dashboard-tender-detail-text p{margin:0 0 16px;color:rgba(255,255,255,.82);line-height:1.65}.dtp-dashboard-tender-detail-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-top:18px}
@media (max-width:900px){.dtp-dashboard-entry-row-real{grid-template-columns:1fr}.dtp-dashboard-entry-actions-real{flex-direction:row;flex-wrap:wrap;min-width:0}.dtp-dashboard-tender-detail-grid,.dtp-dashboard-tender-edit-grid{grid-template-columns:1fr 1fr}}@media (max-width:640px){.dtp-dashboard-entry-filter-btn,.dtp-my-tender-btn{width:100%}.dtp-dashboard-tender-detail-grid,.dtp-dashboard-tender-edit-grid{grid-template-columns:1fr}}


/* 0.4.0a frontend tender cards widgets */
.dtp-tender-widget-wrap,
.dtp-tender-list-wrap {
    width: 100%;
}

.dtp-tender-widget-head {
    margin: 0 0 22px;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(213, 184, 112, .34);
    background: linear-gradient(135deg, rgba(255, 246, 222, .08), rgba(255, 255, 255, .025));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.dtp-tender-widget-head h2 {
    margin: 4px 0 8px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.05;
}

.dtp-tender-widget-head p:last-child {
    max-width: 820px;
    margin: 0;
    opacity: .82;
}

.dtp-tender-widget-grid,
.dtp-tender-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

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

.dtp-tender-card-v2 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(213, 184, 112, .34);
    background:
        radial-gradient(circle at top right, rgba(213, 184, 112, .13), transparent 32%),
        linear-gradient(145deg, rgba(20, 28, 42, .94), rgba(10, 17, 29, .96));
    box-shadow: 0 22px 48px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .05);
    transform: translateY(0);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.dtp-tender-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(213, 184, 112, .62);
    box-shadow: 0 28px 64px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.dtp-tender-card-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.dtp-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
}

.dtp-source-badge-ted {
    border-color: rgba(58, 180, 255, .45);
    background: rgba(58, 180, 255, .14);
}

.dtp-source-badge-redaktion {
    border-color: rgba(213, 184, 112, .52);
    background: rgba(213, 184, 112, .16);
}

.dtp-source-badge-kunde {
    border-color: rgba(21, 176, 146, .5);
    background: rgba(21, 176, 146, .15);
}

.dtp-source-badge-top {
    border-color: rgba(255, 84, 84, .52);
    background: rgba(255, 84, 84, .16);
}

.dtp-source-badge-type {
    margin-left: auto;
}

.dtp-tender-card-v2 h3 {
    margin: 0 0 12px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.18;
}

.dtp-tender-card-context {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 14px;
}

.dtp-tender-card-context span {
    padding: 5px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 650;
}

.dtp-tender-card-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin: 0 0 14px;
}

.dtp-tender-card-facts div {
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .045);
}

.dtp-tender-card-facts span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, .58);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.dtp-tender-card-facts strong {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    overflow-wrap: anywhere;
}

.dtp-tender-public-teaser {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .78);
}

.dtp-tender-public-teaser p {
    margin: 0;
}

.dtp-tender-card-footer {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.dtp-tender-card-id {
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
    font-weight: 700;
}

.dtp-tender-detail-button {
    white-space: nowrap;
}

.dtp-tender-card-compact {
    padding: 20px;
}

.dtp-tender-card-compact .dtp-tender-card-facts {
    grid-template-columns: 1fr;
}

.dtp-tender-card-featured {
    border-color: rgba(213, 184, 112, .58);
    background:
        radial-gradient(circle at top right, rgba(213, 184, 112, .22), transparent 34%),
        linear-gradient(145deg, rgba(27, 31, 43, .96), rgba(12, 18, 30, .98));
}

.dtp-tender-list-head {
    margin-bottom: 18px;
}

.dtp-tender-filter-card {
    margin-bottom: 18px;
}

.dtp-tender-public-card .dtp-tender-access-note {
    margin-top: 12px;
    font-size: 12px;
    opacity: .78;
}

@media (max-width: 1180px) {
    .dtp-tender-widget-grid,
    .dtp-tender-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .dtp-tender-widget-head {
        padding: 18px;
        border-radius: 20px;
    }

    .dtp-tender-widget-grid,
    .dtp-tender-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dtp-tender-card-v2 {
        padding: 18px;
        border-radius: 20px;
    }

    .dtp-tender-card-facts {
        grid-template-columns: 1fr;
    }

    .dtp-source-badge-type {
        margin-left: 0;
    }

    .dtp-tender-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* 0.4.0d featured tender pingpong carousel */
.dtp-featured-showcase {
    position: relative;
    width: 100%;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(34, 25, 14, .12);
    border-radius: 30px;
    background:
        radial-gradient(circle at 16% 0%, rgba(219, 177, 107, .22), transparent 34%),
        linear-gradient(135deg, rgba(255, 247, 229, .96), rgba(238, 222, 190, .88));
    box-shadow: 0 22px 65px rgba(35, 25, 12, .16);
    overflow: hidden;
}
.dtp-featured-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,26,26,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,26,26,.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.dtp-featured-showcase > * {
    position: relative;
    z-index: 1;
}
.dtp-featured-showcase-head {
    max-width: 920px;
    margin: 0 0 22px;
}
.dtp-gold-clipser {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    padding: 7px 12px;
    border: 1px solid rgba(20, 16, 9, .78);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6d37a, #d8a844);
    color: #111;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 0 rgba(22, 16, 8, .18), 0 18px 34px rgba(117, 78, 12, .22);
}
.dtp-gold-clipser span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #111;
    box-shadow: 0 0 0 4px rgba(17,17,17,.12);
}
.dtp-featured-showcase-head h2 {
    margin: 0 0 8px;
    color: #101010;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -.03em;
}
.dtp-featured-showcase-head p:not(.dtp-gold-clipser) {
    margin: 0;
    max-width: 760px;
    color: rgba(16, 16, 16, .72);
    font-size: 16px;
}
.dtp-featured-carousel {
    position: relative;
    margin-top: 22px;
    padding: 0 50px 34px;
}
.dtp-featured-carousel-viewport {
    overflow: hidden;
    width: 100%;
}
.dtp-featured-carousel-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
.dtp-featured-carousel-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}
.dtp-featured-premium-card {
    position: relative;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(231, 183, 86, .62);
    background:
        radial-gradient(circle at 12% 0%, rgba(236, 193, 88, .22), transparent 38%),
        linear-gradient(145deg, #081126, #111827 52%, #07101f);
    color: #fff;
    box-shadow:
        0 22px 50px rgba(8, 12, 24, .42),
        inset 0 1px 0 rgba(255,255,255,.10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dtp-featured-premium-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 22px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.11), transparent 34%, rgba(219,177,107,.09));
}
.dtp-featured-premium-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(255, 212, 111, .92);
    box-shadow:
        0 34px 80px rgba(8, 12, 24, .52),
        0 0 0 1px rgba(255, 215, 119, .20),
        inset 0 1px 0 rgba(255,255,255,.14);
}
.dtp-featured-premium-card > * {
    position: relative;
    z-index: 2;
}
.dtp-featured-top-ribbon {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: -44px;
    width: 154px;
    padding: 7px 0;
    transform: rotate(36deg);
    text-align: center;
    background: linear-gradient(135deg, #b90018, #ff1637 54%, #ff5868);
    color: #fff;
    border: 1px solid rgba(255,255,255,.34);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(170, 0, 26, .45);
    text-shadow: 0 2px 5px rgba(0,0,0,.42);
}
.dtp-featured-premium-top {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-right: 30px;
    margin-bottom: 18px;
}
.dtp-featured-premium-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(18px, 2.1vw, 24px);
    line-height: 1.16;
    letter-spacing: -.02em;
}
.dtp-featured-context {
    margin: 0 0 14px;
    color: rgba(255,255,255,.76);
    font-weight: 700;
}
.dtp-featured-mini-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 20px;
}
.dtp-featured-mini-facts div {
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
}
.dtp-featured-mini-facts span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dtp-featured-mini-facts strong {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
}
.dtp-featured-premium-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}
.dtp-featured-premium-footer > span {
    color: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 900;
}
.dtp-featured-detail-link,
.dtp-featured-all-link {
    box-shadow: 0 14px 28px rgba(117, 78, 12, .24);
}
.dtp-featured-carousel-arrow {
    position: absolute;
    z-index: 4;
    top: 42%;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(24, 18, 10, .70);
    background: linear-gradient(135deg, #f7d984, #d7a43d);
    color: #111;
    cursor: pointer;
    font-size: 32px;
    line-height: 34px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(74, 49, 8, .28);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.dtp-featured-carousel-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(74, 49, 8, .34);
}
.dtp-featured-carousel-arrow:disabled {
    opacity: .35;
    cursor: default;
}
.dtp-featured-carousel-prev {
    left: 0;
}
.dtp-featured-carousel-next {
    right: 0;
}
.dtp-featured-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}
.dtp-featured-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(17,17,17,.45);
    border-radius: 999px;
    background: rgba(17,17,17,.20);
    cursor: pointer;
}
.dtp-featured-carousel-dot.is-active {
    width: 24px;
    background: #111;
}
.dtp-featured-showcase-actions {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}
@media (max-width: 1100px) {
    .dtp-featured-carousel {
        padding-left: 46px;
        padding-right: 46px;
    }
    .dtp-featured-carousel-slide {
        flex-basis: calc((100% - 20px) / 2);
    }
}
@media (max-width: 720px) {
    .dtp-featured-showcase {
        padding: 22px 16px;
        border-radius: 22px;
    }
    .dtp-featured-carousel {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 44px;
    }
    .dtp-featured-carousel-slide {
        flex-basis: 100%;
    }
    .dtp-featured-carousel-arrow {
        top: auto;
        bottom: 0;
        width: 38px;
        height: 38px;
        font-size: 28px;
    }
    .dtp-featured-carousel-prev {
        left: calc(50% - 50px);
    }
    .dtp-featured-carousel-next {
        right: calc(50% - 50px);
    }
    .dtp-featured-mini-facts {
        grid-template-columns: 1fr;
    }
    .dtp-featured-premium-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* 0.4.0e tender detail access and 3D polish */
.dtp-tender-detail-wrap .dtp-front-card,
.dtp-tender-detail-main,
.dtp-tender-detail-side,
.dtp-tender-protected-box,
.dtp-tender-interest-box,
.dtp-tender-external-link {
    box-shadow:
        0 22px 58px rgba(7, 16, 36, .34),
        inset 0 1px 0 rgba(255,255,255,.10);
}
.dtp-tender-detail-wrap .dtp-front-card,
.dtp-tender-detail-main,
.dtp-tender-detail-side {
    border-color: rgba(231, 183, 86, .30);
}
.dtp-tender-detail-wrap .dtp-detail-status-list div,
.dtp-tender-detail-wrap .dtp-detail-side-note,
.dtp-tender-detail-wrap .dtp-tender-meta-grid div {
    box-shadow:
        0 10px 24px rgba(5, 12, 26, .22),
        inset 0 1px 0 rgba(255,255,255,.08);
    transform: translateZ(0);
}
.dtp-tender-detail-wrap .dtp-detail-status-list div:hover,
.dtp-tender-detail-wrap .dtp-detail-side-note:hover,
.dtp-tender-detail-wrap .dtp-tender-meta-grid div:hover {
    transform: translateY(-2px);
    border-color: rgba(231, 183, 86, .42);
}
.dtp-tender-interest-box {
    border: 1px solid rgba(231, 183, 86, .34);
    border-radius: 20px;
}
.dtp-tender-interest-box textarea {
    box-shadow: inset 0 3px 10px rgba(0,0,0,.18);
}


/* 0.4.0f fullscreen responsive polish */
/* Full-bleed plugin sections: breaks out of narrow Elementor/page containers, but stays safely centered. */
.dtp-tender-detail-wrap,
.dtp-tender-widget-wrap,
.dtp-tender-list-wrap,
.dtp-featured-showcase {
    box-sizing: border-box;
}

.dtp-tender-detail-wrap {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1480px, calc(100vw - 34px));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(10px, 1.7vw, 22px);
    padding-right: clamp(10px, 1.7vw, 22px);
}

/* Wider and calmer desktop detail layout. */
.dtp-tender-detail-grid {
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, .82fr);
    gap: clamp(18px, 2vw, 28px);
}

.dtp-tender-detail-main,
.dtp-tender-detail-side,
.dtp-tender-detail-wrap .dtp-front-card {
    border-radius: clamp(20px, 1.8vw, 28px);
}

.dtp-tender-detail-main {
    padding: clamp(22px, 2.2vw, 34px);
}

.dtp-tender-detail-side {
    padding: clamp(20px, 1.8vw, 28px);
    position: sticky;
    top: 24px;
}

.dtp-tender-detail-facts,
.dtp-tender-meta-grid {
    gap: clamp(10px, 1.2vw, 16px);
}

.dtp-tender-protected-box,
.dtp-tender-locked-box,
.dtp-tender-interest-box,
.dtp-tender-external-link,
.dtp-detail-side-note,
.dtp-detail-status-list div {
    border-radius: 18px;
}

/* More robust full width for the homepage/widget blocks without touching logic. */
.dtp-tender-widget-wrap,
.dtp-tender-list-wrap {
    width: 100%;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}

.dtp-featured-showcase {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet: full width, but not cramped. */
@media (max-width: 1180px) {
    .dtp-tender-detail-wrap {
        width: min(100%, calc(100vw - 24px));
        padding-left: 6px;
        padding-right: 6px;
    }

    .dtp-tender-detail-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .dtp-tender-detail-side {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .dtp-tender-detail-side h3 {
        grid-column: 1 / -1;
    }

    .dtp-detail-status-list,
    .dtp-detail-side-note {
        min-width: 0;
    }

    .dtp-detail-status-list {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dtp-featured-showcase {
        padding: 26px 22px;
    }
}

/* Mobile: one clean column, no broken widths, bigger tap targets. */
@media (max-width: 760px) {
    .dtp-tender-detail-wrap {
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .dtp-tender-detail-head,
    .dtp-tender-detail-main,
    .dtp-tender-detail-side {
        width: 100%;
    }

    .dtp-tender-detail-main,
    .dtp-tender-detail-side {
        padding: 18px;
        border-radius: 20px;
    }

    .dtp-tender-detail-head h2,
    .dtp-tender-detail-main h2 {
        font-size: clamp(24px, 8vw, 34px);
        line-height: 1.08;
    }

    .dtp-tender-detail-head h3,
    .dtp-tender-detail-main h3,
    .dtp-tender-detail-side h3 {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.08;
    }

    .dtp-tender-detail-nav,
    .dtp-tender-detail-actions,
    .dtp-tender-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dtp-primary-link,
    .dtp-secondary-link,
    .dtp-tender-interest-box .dtp-button {
        width: 100%;
        min-height: 44px;
    }

    .dtp-detail-status-list,
    .dtp-tender-detail-side {
        grid-template-columns: 1fr;
    }

    .dtp-detail-status-list div,
    .dtp-detail-side-note,
    .dtp-tender-protected-box,
    .dtp-tender-locked-box,
    .dtp-tender-interest-box,
    .dtp-tender-external-link {
        padding: 13px 14px;
        border-radius: 16px;
    }

    .dtp-tender-interest-box textarea {
        min-height: 118px;
    }

    .dtp-featured-showcase,
    .dtp-tender-widget-head {
        border-radius: 20px;
        padding: 18px 15px;
    }

    .dtp-gold-clipser {
        font-size: 10px;
        letter-spacing: .055em;
        white-space: normal;
    }

    .dtp-featured-premium-card {
        min-height: 0;
        padding: 20px 18px;
    }
}

/* Very small phones: prevent horizontal overflow. */
@media (max-width: 420px) {
    .dtp-tender-detail-main,
    .dtp-tender-detail-side,
    .dtp-featured-showcase {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dtp-source-badge,
    .dtp-tender-card-context span {
        font-size: 10px;
    }

    .dtp-featured-premium-card h3,
    .dtp-tender-card-v2 h3 {
        font-size: 19px;
    }
}


/* 0.4.0h latest strong visual polish + DT favicon asset */
.dtp-latest-showcase {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1560px, calc(100vw - 28px));
    max-width: none;
    margin: clamp(22px, 3vw, 42px) 0;
    padding: clamp(34px, 4.4vw, 58px);
    border: 1px solid rgba(46, 32, 12, .22);
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 216, 132, .42), transparent 34%),
        radial-gradient(circle at 96% 12%, rgba(255, 244, 203, .72), transparent 26%),
        linear-gradient(135deg, #fff4d6 0%, #efd29a 48%, #f8e6bd 100%);
    box-shadow:
        0 34px 90px rgba(72, 49, 14, .23),
        inset 0 1px 0 rgba(255,255,255,.78);
    overflow: hidden;
}
.dtp-latest-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 24, 10, .052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 24, 10, .052) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}
.dtp-latest-showcase::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.40);
    pointer-events: none;
}
.dtp-latest-showcase > * {
    position: relative;
    z-index: 1;
}
.dtp-latest-showcase-head {
    max-width: 1040px;
    margin: 0 0 30px;
}
.dtp-latest-showcase-head h2 {
    margin: 0 0 10px;
    color: #071126;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 950;
    text-shadow: 0 1px 0 rgba(255,255,255,.52);
}
.dtp-latest-showcase-head p:not(.dtp-gold-clipser) {
    margin: 0;
    max-width: 860px;
    color: rgba(7, 17, 38, .74);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.55;
    font-weight: 650;
}
.dtp-latest-showcase .dtp-gold-clipser {
    border: 1px solid rgba(17,17,17,.78);
    background: linear-gradient(135deg, #ffe7a4 0%, #f2c35b 52%, #c98d20 100%);
    color: #111;
    box-shadow: 0 8px 0 rgba(22,16,8,.19), 0 18px 35px rgba(117,78,12,.25);
}
.dtp-latest-list {
    display: grid;
    gap: 18px;
}
.dtp-latest-row {
    position: relative;
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr) minmax(230px, .36fr) 190px;
    gap: 22px;
    align-items: center;
    overflow: hidden;
    min-height: 142px;
    padding: 22px 24px;
    border: 2px solid rgba(189, 132, 25, .68);
    border-radius: 28px;
    background:
        radial-gradient(circle at left top, rgba(255, 219, 139, .46), transparent 30%),
        linear-gradient(135deg, rgba(255, 251, 239, .99), rgba(244, 221, 179, .97) 55%, rgba(232, 198, 134, .92));
    color: #071126;
    box-shadow:
        0 22px 48px rgba(78, 52, 10, .20),
        0 5px 0 rgba(116, 77, 13, .16),
        inset 0 1px 0 rgba(255,255,255,.90);
    transition: transform .20s ease, box-shadow .20s ease, border-color .20s ease;
}
.dtp-latest-row:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 137, 18, .96);
    box-shadow:
        0 34px 76px rgba(78, 52, 10, .28),
        0 7px 0 rgba(116, 77, 13, .17),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-latest-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dtp-latest-source-logo {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid rgba(190, 136, 34, .88);
    background: linear-gradient(145deg, #071126, #122649);
    color: #fff;
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: .05em;
    box-shadow:
        0 18px 34px rgba(25, 17, 5, .28),
        inset 0 1px 0 rgba(255,255,255,.20);
    overflow: hidden;
}
.dtp-latest-source-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dtp-latest-source-logo-ted {
    background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.55), transparent 22%),
        linear-gradient(135deg, #0254a6, #0a89d7 52%, #f6c64d 52%, #cf9020);
}
.dtp-latest-source-logo-ted span {
    text-shadow: 0 2px 5px rgba(0,0,0,.35);
}
.dtp-latest-source-logo-redaktion,
.dtp-latest-source-logo-dt {
    background: #071126;
    padding: 0;
}
.dtp-latest-source-logo-kunde {
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 26%),
        linear-gradient(135deg, #0b3d36, #128b76);
}
.dtp-latest-row-badges,
.dtp-latest-card-top > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}
.dtp-latest-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(17,17,17,.18);
    background: rgba(255,255,255,.68);
    color: rgba(8, 17, 36, .82);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .035em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(88, 59, 10, .10), inset 0 1px 0 rgba(255,255,255,.75);
}
.dtp-latest-badge-source.dtp-latest-badge-ted {
    background: linear-gradient(135deg, #0a5db0, #168dd8);
    border-color: rgba(3, 72, 143, .65);
    color: #fff;
}
.dtp-latest-badge-source.dtp-latest-badge-redaktion,
.dtp-latest-badge-source.dtp-latest-badge-dt {
    background: linear-gradient(135deg, #071126, #183765);
    border-color: rgba(7,17,38,.70);
    color: #fff;
}
.dtp-latest-badge-source.dtp-latest-badge-kunde {
    background: linear-gradient(135deg, #0c6b58, #12a987);
    border-color: rgba(12,107,88,.65);
    color: #fff;
}
.dtp-latest-badge-category {
    background: linear-gradient(135deg, #fff4cf, #e4b654);
    border-color: rgba(169, 110, 12, .40);
    color: #16110a;
}
.dtp-latest-row h3,
.dtp-latest-card h3 {
    margin: 0;
    color: #071126;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.12;
    letter-spacing: -.025em;
    font-weight: 940;
}
.dtp-latest-row p,
.dtp-latest-card p {
    margin: 9px 0 0;
    max-width: 760px;
    color: rgba(7, 17, 38, .74);
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.45;
    font-weight: 680;
}
.dtp-latest-meta-cell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.dtp-latest-meta-cell div,
.dtp-latest-card-facts div {
    padding: 13px 14px;
    border: 1px solid rgba(117, 78, 12, .17);
    border-radius: 16px;
    background: rgba(255,255,255,.58);
    box-shadow:
        0 10px 20px rgba(88, 59, 10, .08),
        inset 0 1px 0 rgba(255,255,255,.86);
}
.dtp-latest-meta-cell span,
.dtp-latest-card-facts span {
    display: block;
    margin-bottom: 5px;
    color: rgba(7,17,38,.58);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.dtp-latest-meta-cell strong,
.dtp-latest-card-facts strong {
    display: block;
    color: #071126;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
}
.dtp-latest-action-cell {
    display: flex;
    justify-content: flex-end;
}
.dtp-latest-detail-link,
.dtp-latest-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffe7a4 0%, #f0bf50 52%, #ca8f21 100%) !important;
    color: #111 !important;
    border: 1px solid rgba(17,17,17,.72) !important;
    border-radius: 999px;
    font-weight: 950;
    box-shadow: 0 10px 0 rgba(22,16,8,.16), 0 18px 34px rgba(117,78,12,.26);
    white-space: nowrap;
    text-decoration: none !important;
}
.dtp-latest-detail-link:hover,
.dtp-latest-all-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 0 rgba(22,16,8,.18), 0 28px 46px rgba(117,78,12,.32);
}
.dtp-latest-top-ribbon {
    position: absolute;
    z-index: 5;
    top: 19px;
    right: -48px;
    width: 160px;
    padding: 8px 0;
    transform: rotate(36deg);
    text-align: center;
    background: linear-gradient(135deg, #b90018, #ff1637 54%, #ff5868);
    color: #fff;
    border: 1px solid rgba(255,255,255,.36);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(170,0,26,.45);
    text-shadow: 0 2px 5px rgba(0,0,0,.42);
}
.dtp-latest-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.dtp-latest-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 315px;
    padding: 24px;
    border: 2px solid rgba(189, 132, 25, .66);
    border-radius: 28px;
    background:
        radial-gradient(circle at left top, rgba(255, 219, 139, .44), transparent 32%),
        linear-gradient(135deg, rgba(255, 251, 239, .99), rgba(244, 221, 179, .96));
    color: #071126;
    box-shadow: 0 22px 48px rgba(78,52,10,.20), 0 5px 0 rgba(116,77,13,.16), inset 0 1px 0 rgba(255,255,255,.90);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dtp-latest-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199,137,18,.96);
    box-shadow: 0 34px 76px rgba(78,52,10,.28), 0 7px 0 rgba(116,77,13,.17), inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-latest-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.dtp-latest-card .dtp-latest-source-logo {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    font-size: 15px;
}
.dtp-latest-card-facts {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}
.dtp-latest-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}
.dtp-latest-card-footer > span {
    color: rgba(7,17,38,.55);
    font-size: 12px;
    font-weight: 950;
}
.dtp-latest-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.dtp-latest-empty-card {
    padding: 26px;
    border: 2px solid rgba(189,132,25,.50);
    border-radius: 26px;
    background: rgba(255,255,255,.62);
    color: #071126;
    box-shadow: 0 18px 44px rgba(78,52,10,.15);
}
@media (max-width: 1280px) {
    .dtp-latest-row {
        grid-template-columns: 88px minmax(0, 1fr) minmax(205px, .40fr);
    }
    .dtp-latest-action-cell {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }
    .dtp-latest-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 820px) {
    .dtp-latest-showcase {
        left: auto;
        transform: none;
        width: 100%;
        margin: 18px 0;
        padding: 22px 16px;
        border-radius: 24px;
    }
    .dtp-latest-showcase::after {
        inset: 10px;
        border-radius: 20px;
    }
    .dtp-latest-showcase-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }
    .dtp-latest-row {
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
        padding: 18px;
        border-radius: 22px;
    }
    .dtp-latest-source-logo {
        width: 58px;
        height: 58px;
        font-size: 13px;
    }
    .dtp-latest-row h3,
    .dtp-latest-card h3 {
        font-size: 22px;
    }
    .dtp-latest-meta-cell,
    .dtp-latest-action-cell {
        grid-column: 1 / -1;
    }
    .dtp-latest-meta-cell {
        grid-template-columns: 1fr 1fr;
    }
    .dtp-latest-detail-link,
    .dtp-latest-all-link {
        width: 100%;
        min-height: 46px;
    }
    .dtp-latest-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dtp-latest-card {
        min-height: 0;
        padding: 20px;
        border-radius: 22px;
    }
    .dtp-latest-card-footer {
        align-items: stretch;
        flex-direction: column;
    }
}
@media (max-width: 460px) {
    .dtp-latest-row {
        grid-template-columns: 1fr;
    }
    .dtp-latest-logo-cell {
        justify-content: flex-start;
    }
    .dtp-latest-meta-cell {
        grid-template-columns: 1fr;
    }
    .dtp-latest-badge {
        font-size: 10px;
        padding: 5px 9px;
    }
}


/* 0.4.0i latest visual correction: wider, less yellow, stronger cards, calmer headings */
.dtp-latest-showcase {
    /* break out of narrow Elementor/container areas */
    position: relative;
    left: 50%;
    width: min(1560px, calc(100vw - 28px));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(-50%);
    padding: clamp(30px, 4vw, 54px) clamp(28px, 4vw, 56px);
    border-radius: 34px;
    border: 1px solid rgba(96, 68, 24, .18);
    background:
        radial-gradient(circle at 9% 0%, rgba(222, 176, 78, .16), transparent 32%),
        radial-gradient(circle at 100% 22%, rgba(255, 255, 255, .58), transparent 34%),
        linear-gradient(135deg, #f8f0df 0%, #efe1c4 52%, #f7edd9 100%);
    box-shadow:
        0 28px 80px rgba(72, 47, 10, .18),
        inset 0 1px 0 rgba(255,255,255,.72);
}
.dtp-latest-showcase::before {
    opacity: .44;
    background-size: 34px 34px;
    background-image:
        linear-gradient(rgba(65,45,14,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65,45,14,.035) 1px, transparent 1px);
}
.dtp-latest-showcase-head {
    margin-bottom: 28px;
}
.dtp-latest-showcase-head .dtp-gold-clipser {
    margin-bottom: 13px;
}
.dtp-latest-showcase-head h2 {
    color: #16120d;
    font-size: clamp(30px, 3.15vw, 44px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.025em;
}
.dtp-latest-showcase-head p:not(.dtp-gold-clipser) {
    color: rgba(22,18,13,.68);
    font-size: 15px;
    font-weight: 500;
}
.dtp-latest-list {
    gap: 18px;
}
.dtp-latest-row {
    grid-template-columns: 96px minmax(0, 1fr) minmax(230px, .34fr) auto;
    gap: 22px;
    min-height: 142px;
    padding: 24px 26px;
    border-radius: 28px;
    border: 2px solid rgba(155, 102, 20, .58);
    background:
        radial-gradient(circle at 6% 12%, rgba(255,255,255,.78), transparent 28%),
        linear-gradient(135deg, #fff9ed 0%, #ecd4a6 100%);
    box-shadow:
        0 18px 0 rgba(113, 76, 15, .08),
        0 30px 72px rgba(74, 47, 7, .22),
        inset 0 1px 0 rgba(255,255,255,.92);
}
.dtp-latest-row::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(145, 90, 12, .12), transparent 18%, transparent 82%, rgba(145, 90, 12, .08));
}
.dtp-latest-row:hover {
    transform: translateY(-6px);
    border-color: rgba(117, 70, 6, .78);
    box-shadow:
        0 20px 0 rgba(113, 76, 15, .10),
        0 42px 90px rgba(74, 47, 7, .28),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-latest-row.dtp-latest-is-top {
    border-color: rgba(190, 26, 42, .72);
}
.dtp-latest-source-logo {
    width: 74px;
    height: 74px;
    border: 3px solid rgba(228, 178, 69, .95);
    outline: 2px solid rgba(25, 18, 8, .14);
    font-size: 18px;
    box-shadow:
        0 16px 28px rgba(37, 25, 8, .26),
        inset 0 1px 0 rgba(255,255,255,.22);
}
.dtp-latest-source-logo-redaktion,
.dtp-latest-source-logo-dt {
    background-color: #081b3d;
    background-image: none;
}
.dtp-latest-source-logo-redaktion img,
.dtp-latest-source-logo-dt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dtp-latest-badge {
    padding: 6px 11px;
    border-width: 1px;
    font-size: 11px;
    color: rgba(16,13,8,.82);
    background: rgba(255,255,255,.72);
    box-shadow: 0 4px 12px rgba(76,48,9,.08);
}
.dtp-latest-badge-source {
    color: #fff;
    border-color: rgba(9, 34, 77, .24);
    background: linear-gradient(135deg, #0a4ea3, #0b8fd8);
}
.dtp-source-redaktion .dtp-latest-badge-source,
.dtp-source-dt .dtp-latest-badge-source {
    background: linear-gradient(135deg, #0b1d3c, #14365f);
}
.dtp-source-kunde .dtp-latest-badge-source {
    background: linear-gradient(135deg, #08705f, #12a187);
}
.dtp-latest-badge-category {
    color: #211505;
    border-color: rgba(116,75,8,.22);
    background: linear-gradient(135deg, #f8de97, #d7a646);
}
.dtp-latest-row h3,
.dtp-latest-card h3 {
    color: #13100b;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 720;
    line-height: 1.12;
}
.dtp-latest-row p,
.dtp-latest-card p {
    max-width: 780px;
    color: rgba(20,16,10,.72);
    font-size: 14.5px;
    line-height: 1.48;
    font-weight: 600;
}
.dtp-latest-meta-cell {
    gap: 10px;
}
.dtp-latest-meta-cell div,
.dtp-latest-card-facts div {
    padding: 12px 14px;
    border: 1px solid rgba(91, 61, 14, .18);
    border-radius: 16px;
    background: rgba(255,255,255,.62);
    box-shadow:
        0 8px 18px rgba(71,45,8,.10),
        inset 0 1px 0 rgba(255,255,255,.88);
}
.dtp-latest-meta-cell span,
.dtp-latest-card-facts span {
    color: rgba(20,16,10,.58);
    font-size: 10.5px;
}
.dtp-latest-meta-cell strong,
.dtp-latest-card-facts strong {
    color: #14100b;
    font-size: 14px;
    font-weight: 800;
}
.dtp-latest-detail-link,
.dtp-latest-all-link {
    min-height: 44px;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #ffd875 0%, #d79b25 100%) !important;
    color: #111 !important;
    border: 1.5px solid rgba(24,17,7,.72) !important;
    box-shadow:
        0 8px 0 rgba(86,55,5,.18),
        0 20px 38px rgba(99,63,6,.25) !important;
}
.dtp-latest-top-ribbon {
    top: 20px;
    right: -45px;
    width: 160px;
    padding: 8px 0;
    background: linear-gradient(135deg, #d60020 0%, #ff102d 48%, #b90018 100%);
    border: 1px solid rgba(255,255,255,.62);
    color: #fff;
    box-shadow:
        0 14px 28px rgba(150, 0, 22, .58),
        inset 0 1px 0 rgba(255,255,255,.32);
    text-shadow: 0 2px 4px rgba(0,0,0,.55);
}
.dtp-latest-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.dtp-latest-card {
    border: 2px solid rgba(155, 102, 20, .58);
    background:
        radial-gradient(circle at 10% 8%, rgba(255,255,255,.78), transparent 28%),
        linear-gradient(135deg, #fff9ed 0%, #ecd4a6 100%);
    box-shadow:
        0 18px 0 rgba(113, 76, 15, .08),
        0 30px 72px rgba(74, 47, 7, .20),
        inset 0 1px 0 rgba(255,255,255,.92);
}
.dtp-latest-card:hover {
    transform: translateY(-7px);
    border-color: rgba(117, 70, 6, .78);
    box-shadow:
        0 20px 0 rgba(113, 76, 15, .10),
        0 42px 90px rgba(74, 47, 7, .27),
        inset 0 1px 0 rgba(255,255,255,.96);
}
@media (max-width: 1180px) {
    .dtp-latest-showcase {
        width: min(100%, calc(100vw - 18px));
        padding: 26px 20px;
    }
    .dtp-latest-row {
        grid-template-columns: 82px minmax(0, 1fr);
    }
    .dtp-latest-meta-cell {
        grid-column: 2 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dtp-latest-action-cell {
        grid-column: 2 / -1;
    }
}
@media (max-width: 760px) {
    .dtp-latest-showcase {
        left: auto;
        width: 100%;
        transform: none;
        padding: 20px 14px;
        border-radius: 22px;
    }
    .dtp-latest-showcase-head h2 {
        font-size: clamp(28px, 8vw, 36px);
    }
    .dtp-latest-row {
        grid-template-columns: 62px minmax(0, 1fr);
        min-height: 0;
        gap: 13px;
        padding: 17px;
        border-radius: 22px;
    }
    .dtp-latest-source-logo {
        width: 58px;
        height: 58px;
        font-size: 13px;
    }
    .dtp-latest-meta-cell {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
    .dtp-latest-action-cell {
        grid-column: 1 / -1;
    }
}


/* 0.4.0i latest final border/link correction */
.dtp-latest-source-logo {
    border: 5px solid #e3ad32 !important;
    outline: 3px solid #c71928 !important;
    box-shadow:
        0 0 0 3px rgba(255, 224, 127, .55),
        0 18px 34px rgba(52, 28, 6, .34),
        inset 0 1px 0 rgba(255,255,255,.28) !important;
}
.dtp-latest-source-logo-ted {
    background:
        radial-gradient(circle at 30% 18%, rgba(255,255,255,.48), transparent 25%),
        linear-gradient(135deg, #0751a8 0%, #098bd0 56%, #ffd258 57%, #c58518 100%) !important;
}
.dtp-latest-source-logo-redaktion,
.dtp-latest-source-logo-dt {
    background: #061a3a !important;
}
.dtp-latest-row {
    border: 3px solid #d9a339 !important;
    outline: 2px solid rgba(193, 29, 39, .34);
    outline-offset: -6px;
}
.dtp-latest-row:hover {
    outline-color: rgba(193, 29, 39, .58);
}
.dtp-latest-row.dtp-latest-is-top {
    border-color: #d9a339 !important;
    outline-color: rgba(215, 0, 32, .78);
}
.dtp-latest-meta-cell div,
.dtp-latest-card-facts div {
    border: 2px solid rgba(164, 104, 16, .42) !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.88), rgba(245,226,188,.74)) !important;
    box-shadow:
        0 10px 22px rgba(72,45,8,.15),
        inset 0 1px 0 rgba(255,255,255,.94) !important;
}
.dtp-latest-meta-cell span,
.dtp-latest-card-facts span {
    color: rgba(31, 20, 5, .72) !important;
    font-weight: 1000 !important;
}
.dtp-latest-meta-cell strong,
.dtp-latest-card-facts strong {
    color: #120d06 !important;
    font-weight: 900 !important;
}
.dtp-latest-badge {
    border: 2px solid rgba(40, 25, 4, .16) !important;
}
.dtp-latest-badge-source {
    border-color: rgba(255,255,255,.55) !important;
}
.dtp-latest-badge-category {
    border-color: rgba(141, 88, 7, .38) !important;
}
.dtp-latest-detail-link,
.dtp-latest-all-link {
    border: 2px solid #191006 !important;
    min-width: 150px;
    text-align: center;
}
.dtp-latest-all-link {
    min-width: 230px;
}
@media (max-width: 760px) {
    .dtp-latest-row {
        border-width: 2px !important;
        outline-offset: -4px;
    }
    .dtp-latest-source-logo {
        border-width: 4px !important;
        outline-width: 2px !important;
    }
    .dtp-latest-detail-link,
    .dtp-latest-all-link {
        min-width: 0;
        width: 100%;
    }
}


/* 0.4.0j latest shield brown border: remove red shield outline */
.dtp-latest-source-logo {
    border: 6px solid #8b5a1f !important;
    outline: none !important;
    box-shadow:
        0 0 0 2px rgba(255, 220, 138, .50),
        0 18px 34px rgba(52, 28, 6, .30),
        inset 0 1px 0 rgba(255,255,255,.28) !important;
}
.dtp-latest-source-logo-ted,
.dtp-latest-source-logo-redaktion,
.dtp-latest-source-logo-dt,
.dtp-latest-source-logo-kunde {
    outline: none !important;
}
@media (max-width: 760px) {
    .dtp-latest-source-logo {
        border-width: 5px !important;
        outline: none !important;
    }
}


/* 0.4.0k dark latest shortcode/layout */
.dtp-latest-showcase.dtp-latest-layout-dark,
.dtp-latest-showcase.dtp-latest-layout-darkcards {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1560px, calc(100vw - 28px));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: clamp(34px, 4.4vw, 62px) clamp(28px, 4.4vw, 62px);
    border: 1px solid rgba(195, 140, 46, .24);
    border-radius: 36px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 213, 114, .18), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.32), transparent 28%),
        linear-gradient(135deg, #f9f0dc 0%, #ead7af 52%, #f8efd9 100%);
    box-shadow:
        0 34px 90px rgba(55, 36, 10, .22),
        inset 0 1px 0 rgba(255,255,255,.78);
}
.dtp-latest-showcase.dtp-latest-layout-dark::before,
.dtp-latest-showcase.dtp-latest-layout-darkcards::before {
    opacity: .48;
}
.dtp-latest-layout-dark .dtp-latest-showcase-head,
.dtp-latest-layout-darkcards .dtp-latest-showcase-head {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.dtp-latest-layout-dark .dtp-latest-showcase-head h2,
.dtp-latest-layout-darkcards .dtp-latest-showcase-head h2 {
    color: #080f22;
    font-size: clamp(34px, 4.6vw, 62px);
    font-weight: 620;
    line-height: 1.02;
    letter-spacing: -.035em;
}
.dtp-latest-layout-dark .dtp-latest-showcase-head p:not(.dtp-gold-clipser),
.dtp-latest-layout-darkcards .dtp-latest-showcase-head p:not(.dtp-gold-clipser) {
    margin-left: auto;
    margin-right: auto;
    color: rgba(8, 15, 34, .70);
    font-size: 16px;
}
.dtp-latest-layout-dark .dtp-latest-list {
    gap: 10px;
}
.dtp-latest-layout-dark .dtp-latest-row {
    grid-template-columns: 128px minmax(0, 1fr) minmax(230px, .32fr) 210px;
    min-height: 132px;
    padding: 18px 26px;
    border: 2px solid #d4a23d !important;
    outline: none;
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255,214,111,.14), transparent 30%),
        linear-gradient(135deg, #04152d 0%, #062447 58%, #031126 100%);
    color: #fff;
    box-shadow:
        0 12px 0 rgba(98, 61, 8, .16),
        0 22px 54px rgba(3, 10, 24, .38),
        inset 0 1px 0 rgba(255,255,255,.12);
}
.dtp-latest-layout-dark .dtp-latest-row::before {
    background:
        linear-gradient(90deg, rgba(255,215,121,.14), transparent 18%, transparent 76%, rgba(255,215,121,.08));
}
.dtp-latest-layout-dark .dtp-latest-row:hover {
    transform: translateY(-5px);
    border-color: #f0bd4f !important;
    box-shadow:
        0 14px 0 rgba(98, 61, 8, .18),
        0 34px 76px rgba(3, 10, 24, .48),
        inset 0 1px 0 rgba(255,255,255,.16);
}
.dtp-latest-layout-dark .dtp-latest-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dtp-latest-layout-dark .dtp-latest-source-logo {
    width: 88px;
    height: 88px;
    border: 3px solid #d4a23d !important;
    outline: none !important;
    background: #061a3a;
    color: #fff;
    box-shadow:
        0 14px 28px rgba(0,0,0,.34),
        0 0 0 1px rgba(255,255,255,.12),
        inset 0 1px 0 rgba(255,255,255,.20) !important;
}
.dtp-latest-layout-dark .dtp-latest-source-logo-ted {
    background:
        radial-gradient(circle at 30% 18%, rgba(255,255,255,.55), transparent 25%),
        linear-gradient(135deg, #fff 0%, #fff 62%, #f7c448 63%, #c99019 100%) !important;
    color: #0d5fb1;
}
.dtp-latest-layout-dark .dtp-latest-source-logo-ted span {
    color: #0d5fb1;
    font-weight: 1000;
}
.dtp-latest-layout-dark .dtp-latest-row h3 {
    color: #fff;
    font-size: clamp(20px, 2.1vw, 27px);
    font-weight: 760;
    line-height: 1.12;
}
.dtp-latest-layout-dark .dtp-latest-row p {
    max-width: 760px;
    color: rgba(255,255,255,.76);
    font-size: 14.5px;
    font-weight: 500;
}
.dtp-latest-layout-dark .dtp-latest-badge {
    border: 1px solid rgba(255,255,255,.18) !important;
    color: #fff;
    background: rgba(255,255,255,.10);
}
.dtp-latest-layout-dark .dtp-latest-badge-source {
    background: linear-gradient(135deg, #0a79c8, #0a4ea3);
}
.dtp-latest-layout-dark .dtp-source-redaktion .dtp-latest-badge-source,
.dtp-latest-layout-dark .dtp-source-dt .dtp-latest-badge-source {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,214,111,.36) !important;
}
.dtp-latest-layout-dark .dtp-source-kunde .dtp-latest-badge-source {
    background: linear-gradient(135deg, #08705f, #12a187);
}
.dtp-latest-layout-dark .dtp-latest-badge-category {
    color: #081124;
    border-color: rgba(255,255,255,.22) !important;
    background: linear-gradient(135deg, #f4d681, #c99528);
}
.dtp-latest-layout-dark .dtp-latest-meta-cell {
    position: relative;
    padding-left: 22px;
    border-left: 1px solid rgba(255,255,255,.22);
    gap: 12px;
}
.dtp-latest-layout-dark .dtp-latest-meta-cell div {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    column-gap: 10px;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}
.dtp-latest-layout-dark .dtp-latest-meta-cell div::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: #f4c85c;
    font-size: 18px;
    line-height: 1;
}
.dtp-latest-layout-dark .dtp-latest-meta-cell div:first-child::before {
    content: "✣";
}
.dtp-latest-layout-dark .dtp-latest-meta-cell div:nth-child(2)::before {
    content: "▣";
}
.dtp-latest-layout-dark .dtp-latest-meta-cell span,
.dtp-latest-layout-dark .dtp-latest-meta-cell strong {
    grid-column: 2;
}
.dtp-latest-layout-dark .dtp-latest-meta-cell span {
    color: rgba(255,255,255,.72) !important;
    font-size: 11px;
    font-weight: 950 !important;
}
.dtp-latest-layout-dark .dtp-latest-meta-cell strong {
    color: #fff !important;
    font-size: 15px;
    font-weight: 780 !important;
}
.dtp-latest-layout-dark .dtp-latest-action-cell {
    justify-content: flex-end;
}
.dtp-latest-layout-dark .dtp-latest-detail-link,
.dtp-latest-layout-dark .dtp-latest-all-link,
.dtp-latest-layout-darkcards .dtp-latest-detail-link,
.dtp-latest-layout-darkcards .dtp-latest-all-link {
    min-width: 176px;
    padding: 14px 22px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #ffe8a8 0%, #f0bd4f 50%, #d18d1e 100%) !important;
    border: 1.5px solid rgba(255,255,255,.42) !important;
    color: #091225 !important;
    font-weight: 950 !important;
    box-shadow:
        0 10px 0 rgba(0,0,0,.18),
        0 18px 36px rgba(0,0,0,.28) !important;
}
.dtp-latest-layout-dark .dtp-latest-top-ribbon,
.dtp-latest-layout-darkcards .dtp-latest-top-ribbon {
    top: 0;
    right: -38px;
    width: 150px;
    background: linear-gradient(135deg, #dc001d 0%, #ff1837 50%, #ba0018 100%);
    color: #fff;
    border-color: rgba(255,255,255,.62);
}
.dtp-latest-layout-dark .dtp-latest-actions,
.dtp-latest-layout-darkcards .dtp-latest-actions {
    margin-top: 26px;
}
.dtp-latest-layout-darkcards .dtp-latest-card {
    border: 2px solid #d4a23d !important;
    border-radius: 20px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255,214,111,.14), transparent 30%),
        linear-gradient(135deg, #04152d 0%, #062447 58%, #031126 100%);
    color: #fff;
}
.dtp-latest-layout-darkcards .dtp-latest-card h3 {
    color: #fff;
}
.dtp-latest-layout-darkcards .dtp-latest-card p {
    color: rgba(255,255,255,.75);
}
.dtp-latest-layout-darkcards .dtp-latest-card-facts div {
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(255,255,255,.08) !important;
}
.dtp-latest-layout-darkcards .dtp-latest-card-facts span,
.dtp-latest-layout-darkcards .dtp-latest-card-facts strong {
    color: #fff !important;
}
@media (max-width: 1180px) {
    .dtp-latest-showcase.dtp-latest-layout-dark,
    .dtp-latest-showcase.dtp-latest-layout-darkcards {
        width: min(100%, calc(100vw - 18px));
        padding: 28px 20px;
    }
    .dtp-latest-layout-dark .dtp-latest-row {
        grid-template-columns: 104px minmax(0, 1fr);
    }
    .dtp-latest-layout-dark .dtp-latest-meta-cell {
        grid-column: 2 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 0;
        padding-left: 0;
    }
    .dtp-latest-layout-dark .dtp-latest-action-cell {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }
}
@media (max-width: 760px) {
    .dtp-latest-showcase.dtp-latest-layout-dark,
    .dtp-latest-showcase.dtp-latest-layout-darkcards {
        left: auto;
        transform: none;
        width: 100%;
        padding: 22px 14px;
        border-radius: 22px;
    }
    .dtp-latest-layout-dark .dtp-latest-showcase-head,
    .dtp-latest-layout-darkcards .dtp-latest-showcase-head {
        text-align: left;
    }
    .dtp-latest-layout-dark .dtp-latest-showcase-head h2,
    .dtp-latest-layout-darkcards .dtp-latest-showcase-head h2 {
        font-size: clamp(30px, 8vw, 38px);
    }
    .dtp-latest-layout-dark .dtp-latest-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 17px;
        border-radius: 20px;
    }
    .dtp-latest-layout-dark .dtp-latest-source-logo {
        width: 62px;
        height: 62px;
        font-size: 13px;
    }
    .dtp-latest-layout-dark .dtp-latest-meta-cell,
    .dtp-latest-layout-dark .dtp-latest-action-cell {
        grid-column: 1 / -1;
    }
    .dtp-latest-layout-dark .dtp-latest-meta-cell {
        grid-template-columns: 1fr;
    }
    .dtp-latest-layout-dark .dtp-latest-detail-link,
    .dtp-latest-layout-dark .dtp-latest-all-link {
        width: 100%;
    }
}


/* 0.4.0l design block settings frontend support */
.dtp-latest-card-grid {
    grid-template-columns: repeat(var(--dtp-latest-columns, 3), minmax(0, 1fr));
}
.dtp-featured-showcase-static {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}
.dtp-featured-static-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}
.dtp-featured-static-grid .dtp-featured-premium-card {
    min-height: 330px;
}
@media (max-width: 1100px) {
    .dtp-featured-static-grid,
    .dtp-latest-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .dtp-featured-static-grid,
    .dtp-latest-card-grid {
        grid-template-columns: 1fr;
    }
}


/* 0.4.0m companies carousel and latest shield refinement */
/* Latest source shield: elegant bright-gold border, thinner than brown 0.4.0j, with subtle 3D. */
.dtp-latest-source-logo {
    border: 3px solid #f0c24f !important;
    outline: none !important;
    box-shadow:
        0 0 0 1px rgba(255, 236, 176, .78),
        0 14px 28px rgba(55, 33, 6, .25),
        inset 0 1px 0 rgba(255,255,255,.30) !important;
}
.dtp-latest-source-logo-ted,
.dtp-latest-source-logo-redaktion,
.dtp-latest-source-logo-dt,
.dtp-latest-source-logo-kunde {
    outline: none !important;
}

/* Top/Future companies logo-only block */
.dtp-companies-showcase {
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(34, 25, 14, .12);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 0%, rgba(219, 177, 107, .18), transparent 34%),
        linear-gradient(135deg, rgba(255, 247, 229, .97), rgba(238, 222, 190, .88));
    box-shadow:
        0 22px 65px rgba(35, 25, 12, .16),
        inset 0 1px 0 rgba(255,255,255,.72);
    overflow: hidden;
}
.dtp-companies-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,26,26,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,26,26,.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.dtp-companies-showcase > * {
    position: relative;
    z-index: 1;
}
.dtp-companies-showcase-head {
    max-width: 900px;
    margin: 0 0 24px;
}
.dtp-companies-showcase-head h2 {
    margin: 0 0 8px;
    color: #101010;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 660;
}
.dtp-companies-showcase-head p:not(.dtp-gold-clipser) {
    margin: 0;
    max-width: 760px;
    color: rgba(16, 16, 16, .72);
    font-size: 16px;
    line-height: 1.55;
}
.dtp-company-carousel {
    padding: 0 50px 34px;
}
.dtp-company-carousel-track {
    gap: 18px;
}
.dtp-company-carousel-slide {
    flex: 0 0 calc((100% - 90px) / 6);
}
.dtp-companies-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}
.dtp-company-logo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    min-height: 132px;
    border-radius: 28px;
    border: 2px solid rgba(218, 166, 55, .72);
    background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,.88), transparent 38%),
        linear-gradient(135deg, #fff8eb, #edd8aa);
    box-shadow:
        0 14px 0 rgba(113, 76, 15, .07),
        0 24px 52px rgba(74, 47, 7, .18),
        inset 0 1px 0 rgba(255,255,255,.92);
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: visible;
}
.dtp-company-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 190, 78, .98);
    box-shadow:
        0 16px 0 rgba(113, 76, 15, .09),
        0 34px 72px rgba(74, 47, 7, .26),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-company-logo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74%;
    height: 74%;
    border-radius: 24px;
    background:
        radial-gradient(circle at 30% 0%, rgba(255,255,255,.88), transparent 36%),
        linear-gradient(135deg, #ffffff, #f0dfba);
    border: 1px solid rgba(137, 88, 13, .18);
    box-shadow:
        0 10px 24px rgba(72,45,8,.14),
        inset 0 1px 0 rgba(255,255,255,.95);
}
.dtp-company-logo-inner img {
    display: block;
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
}
.dtp-company-logo-inner strong {
    color: #07142a;
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 1000;
    letter-spacing: .04em;
}
.dtp-company-logo-tooltip {
    position: absolute;
    left: 50%;
    bottom: -12px;
    z-index: 8;
    max-width: 190px;
    transform: translate(-50%, 8px);
    opacity: 0;
    pointer-events: none;
    padding: 7px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #08142b, #11284a);
    color: #fff;
    border: 1px solid rgba(240, 194, 79, .54);
    box-shadow: 0 14px 30px rgba(5, 12, 28, .30);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
    transition: opacity .18s ease, transform .18s ease;
}
.dtp-company-logo-card:hover .dtp-company-logo-tooltip,
.dtp-company-logo-card:focus .dtp-company-logo-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}
.dtp-company-carousel .dtp-featured-carousel-arrow {
    background: linear-gradient(135deg, #f7d984, #d7a43d);
    color: #111;
}
.dtp-company-carousel-dots .dtp-featured-carousel-dot.is-active {
    background: #111;
}
.dtp-companies-empty-card {
    padding: 24px;
    border: 1px solid rgba(184, 132, 34, .36);
    border-radius: 24px;
    background: rgba(255,255,255,.56);
    color: #111;
}
@media (max-width: 1180px) {
    .dtp-company-carousel-slide {
        flex-basis: calc((100% - 54px) / 4);
    }
    .dtp-companies-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .dtp-latest-source-logo {
        border-width: 3px !important;
    }
    .dtp-companies-showcase {
        padding: 20px 14px;
        border-radius: 22px;
    }
    .dtp-company-carousel {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 44px;
    }
    .dtp-company-carousel-slide {
        flex-basis: calc((100% - 14px) / 2);
    }
    .dtp-companies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .dtp-company-logo-card {
        min-height: 116px;
        border-radius: 22px;
    }
    .dtp-company-logo-inner {
        border-radius: 18px;
    }
    .dtp-company-logo-tooltip {
        display: none;
    }
}
@media (max-width: 420px) {
    .dtp-company-logo-card {
        min-height: 104px;
    }
}


/* 0.4.1a alle tender search engine foundation */
.dtp-search-page-wrap {
    position: relative;
    width: min(1560px, calc(100vw - 28px));
    max-width: none;
    margin: 0 auto 48px;
}
.dtp-search-hero {
    position: relative;
    padding: clamp(32px, 4vw, 58px);
    border-radius: 36px;
    border: 1px solid rgba(35, 24, 8, .16);
    background:
        radial-gradient(circle at 12% 0%, rgba(241, 196, 85, .22), transparent 32%),
        radial-gradient(circle at 96% 8%, rgba(255,255,255,.56), transparent 34%),
        linear-gradient(135deg, #fff8e8 0%, #ead5a7 55%, #fff1d4 100%);
    box-shadow:
        0 30px 90px rgba(65, 42, 9, .18),
        inset 0 1px 0 rgba(255,255,255,.85);
    overflow: hidden;
}
.dtp-search-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .44;
    background-size: 34px 34px;
    background-image:
        linear-gradient(rgba(45,31,10,.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,31,10,.038) 1px, transparent 1px);
    pointer-events: none;
}
.dtp-search-hero > * {
    position: relative;
    z-index: 1;
}
.dtp-search-hero h1 {
    margin: 8px 0 12px;
    max-width: 980px;
    color: #101010;
    font-size: clamp(36px, 5.2vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 680;
}
.dtp-search-hero p:not(.dtp-gold-clipser) {
    max-width: 840px;
    margin: 0;
    color: rgba(16,16,16,.72);
    font-size: 17px;
    line-height: 1.58;
    font-weight: 550;
}
.dtp-search-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}
.dtp-search-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(128, 82, 12, .24);
    background: rgba(255,255,255,.64);
    color: #15100a;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(71,45,8,.10);
}
.dtp-search-machine {
    position: relative;
    z-index: 3;
    margin: -22px clamp(16px, 3vw, 42px) 26px;
    padding: clamp(18px, 2.6vw, 30px);
    border-radius: 28px;
    border: 2px solid rgba(196, 139, 31, .50);
    background:
        radial-gradient(circle at 15% 0%, rgba(255,255,255,.88), transparent 38%),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,229,196,.94));
    box-shadow:
        0 18px 0 rgba(113,76,15,.06),
        0 34px 80px rgba(55,35,7,.22),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-search-main-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
}
.dtp-search-machine label {
    display: grid;
    gap: 7px;
}
.dtp-search-machine label span {
    color: rgba(21,14,5,.72);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.dtp-search-machine input,
.dtp-search-machine select {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1.5px solid rgba(124, 80, 13, .24);
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    color: #111;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
}
.dtp-search-keyword input {
    min-height: 58px;
    padding-left: 18px;
    border: 2px solid rgba(196, 139, 31, .55);
    border-radius: 18px;
    font-size: 16px;
    font-weight: 800;
}
.dtp-search-submit {
    min-height: 58px;
    padding: 0 26px;
    border: 2px solid rgba(18,12,4,.70);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffe8a8 0%, #f1c34f 52%, #d49826 100%);
    color: #101010;
    font-size: 15px;
    font-weight: 1000;
    cursor: pointer;
    box-shadow:
        0 9px 0 rgba(113,76,15,.18),
        0 18px 34px rgba(83,53,8,.22);
}
.dtp-search-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.dtp-search-advanced-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}
.dtp-search-actions-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}
.dtp-search-actions-row span {
    color: rgba(27,18,5,.58);
    font-size: 13px;
    font-weight: 650;
}
.dtp-search-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 20px 0 16px;
    padding: 15px 20px;
    border-radius: 20px;
    border: 1px solid rgba(128,82,12,.18);
    background: rgba(255,255,255,.62);
    box-shadow: 0 12px 34px rgba(55,35,7,.10);
}
.dtp-search-results-head strong {
    display: block;
    color: #111;
    font-size: 18px;
    font-weight: 950;
}
.dtp-search-results-head span {
    color: rgba(17,17,17,.62);
    font-weight: 750;
}
.dtp-search-results-sort-label {
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7d984, #d7a43d);
    color: #111;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}
.dtp-search-result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.dtp-search-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    padding: 16px;
}
.dtp-search-pagination span {
    color: #111;
    font-weight: 900;
}
.dtp-search-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #111a2d;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(5,12,28,.18);
}
.dtp-search-empty-card {
    border: 2px solid rgba(196, 139, 31, .46) !important;
}
@media (max-width: 1180px) {
    .dtp-search-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dtp-search-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .dtp-search-page-wrap {
        width: 100%;
    }
    .dtp-search-hero {
        padding: 24px 16px 42px;
        border-radius: 24px;
    }
    .dtp-search-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .dtp-search-machine {
        margin: -24px 8px 22px;
        padding: 16px;
        border-radius: 22px;
    }
    .dtp-search-main-row,
    .dtp-search-filter-grid,
    .dtp-search-advanced-row,
    .dtp-search-result-grid {
        grid-template-columns: 1fr;
    }
    .dtp-search-submit {
        width: 100%;
    }
    .dtp-search-results-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* 0.4.1c synonym/location search engine */
.dtp-search-intelligence-note {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 12px;
    align-items: center;
    margin: -8px clamp(16px, 3vw, 42px) 18px;
    padding: 12px 16px;
    border: 1px solid rgba(196, 139, 31, .42);
    border-radius: 18px;
    background:
        radial-gradient(circle at 10% 0%, rgba(255,255,255,.82), transparent 36%),
        linear-gradient(135deg, rgba(255,248,232,.94), rgba(244,223,177,.82));
    color: #121212;
    box-shadow: 0 12px 32px rgba(65, 42, 9, .12);
}
.dtp-search-intelligence-note strong {
    color: #07142b;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dtp-search-intelligence-note span {
    color: rgba(17,17,17,.72);
    font-size: 13px;
    font-weight: 760;
}
@media (max-width: 760px) {
    .dtp-search-intelligence-note {
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 16px;
    }
}


/* 0.4.1g real standalone Firmen carousel fix */
.dtp-companies-showcase {
    clear: both;
}
.dtp-companies-showcase.dtp-companies-layout-carousel .dtp-companies-grid {
    display: none !important;
}
.dtp-companies-showcase.dtp-companies-layout-cards .dtp-company-carousel,
.dtp-companies-showcase.dtp-companies-layout-static .dtp-company-carousel {
    display: none !important;
}
.dtp-company-carousel-real {
    position: relative;
    margin-top: 24px;
    padding: 0 54px 38px;
}
.dtp-company-carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 6px 2px 18px;
}
.dtp-company-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.dtp-company-carousel-slide {
    flex: 0 0 calc((100% - 90px) / 6);
    min-width: 0;
    scroll-snap-align: start;
}
.dtp-company-carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 42%;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(24,18,10,.72);
    background: linear-gradient(135deg, #ffe8a8 0%, #f0c24f 52%, #d7a43d 100%);
    color: #111;
    cursor: pointer;
    font-size: 34px;
    line-height: 34px;
    font-weight: 1000;
    box-shadow: 0 14px 30px rgba(74,49,8,.28);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.dtp-company-carousel-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(74,49,8,.34);
}
.dtp-company-carousel-arrow:disabled {
    opacity: .35;
    cursor: default;
}
.dtp-company-carousel-prev {
    left: 0;
}
.dtp-company-carousel-next {
    right: 0;
}
.dtp-company-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}
.dtp-company-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(17,17,17,.45);
    border-radius: 999px;
    background: rgba(17,17,17,.20);
    cursor: pointer;
    transition: width .18s ease, background .18s ease;
}
.dtp-company-carousel-dot.is-active {
    width: 24px;
    background: #111;
}
.dtp-company-carousel-static .dtp-company-carousel-arrow,
.dtp-company-carousel-static .dtp-company-carousel-dots {
    display: none !important;
}
.dtp-companies-real-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.dtp-companies-layout-cards .dtp-companies-real-grid,
.dtp-companies-layout-static .dtp-companies-real-grid {
    display: grid !important;
}
.dtp-company-logo-card {
    width: 100%;
}
.dtp-company-carousel-slide .dtp-company-logo-card {
    min-height: 132px;
}
@media (max-width: 1100px) {
    .dtp-company-carousel-real {
        padding-left: 48px;
        padding-right: 48px;
    }
    .dtp-company-carousel-slide {
        flex-basis: calc((100% - 54px) / 4);
    }
    .dtp-companies-real-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .dtp-company-carousel-real {
        padding-left: 42px;
        padding-right: 42px;
    }
    .dtp-company-carousel-slide {
        flex-basis: calc((100% - 18px) / 2);
    }
    .dtp-companies-real-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dtp-company-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
        line-height: 28px;
    }
}


/* 0.4.1h clean Top/Future Firmen block rebuild */
.dtp-companies-showcase[data-dtp-company-layout="carousel"] .dtp-company-block-grid,
.dtp-companies-showcase[data-dtp-company-layout="carousel"] .dtp-companies-grid {
    display: none !important;
}
.dtp-companies-showcase[data-dtp-company-layout="cards"] .dtp-company-pingpong,
.dtp-companies-showcase[data-dtp-company-layout="static"] .dtp-company-pingpong {
    display: none !important;
}
.dtp-company-pingpong {
    position: relative;
    margin-top: 24px;
    padding: 0 54px 38px;
}
.dtp-company-pingpong-viewport {
    width: 100%;
    overflow: hidden;
    padding: 8px 2px 18px;
}
.dtp-company-pingpong-track {
    display: flex;
    gap: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
.dtp-company-pingpong-slide {
    flex: 0 0 calc((100% - 90px) / 6);
    min-width: 0;
    scroll-snap-align: start;
}
.dtp-company-pingpong-arrow {
    position: absolute;
    z-index: 5;
    top: 42%;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(24,18,10,.72);
    background: linear-gradient(135deg, #ffe8a8 0%, #f0c24f 52%, #d7a43d 100%);
    color: #111;
    cursor: pointer;
    font-size: 34px;
    line-height: 34px;
    font-weight: 1000;
    box-shadow: 0 14px 30px rgba(74,49,8,.28);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.dtp-company-pingpong-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(74,49,8,.34);
}
.dtp-company-pingpong-arrow:disabled {
    opacity: .35;
    cursor: default;
}
.dtp-company-pingpong-prev {
    left: 0;
}
.dtp-company-pingpong-next {
    right: 0;
}
.dtp-company-pingpong-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}
.dtp-company-pingpong-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(17,17,17,.45);
    border-radius: 999px;
    background: rgba(17,17,17,.20);
    cursor: pointer;
    transition: width .18s ease, background .18s ease;
}
.dtp-company-pingpong-dot.is-active {
    width: 24px;
    background: #111;
}
.dtp-company-pingpong-static .dtp-company-pingpong-arrow,
.dtp-company-pingpong-static .dtp-company-pingpong-dots {
    display: none !important;
}
.dtp-company-block-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.dtp-company-pingpong-slide .dtp-company-logo-card,
.dtp-company-block-grid .dtp-company-logo-card {
    width: 100%;
    min-height: 132px;
}
@media (max-width: 1100px) {
    .dtp-company-pingpong {
        padding-left: 48px;
        padding-right: 48px;
    }
    .dtp-company-pingpong-slide {
        flex-basis: calc((100% - 54px) / 4);
    }
    .dtp-company-block-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .dtp-company-pingpong {
        padding-left: 42px;
        padding-right: 42px;
    }
    .dtp-company-pingpong-slide {
        flex-basis: calc((100% - 18px) / 2);
    }
    .dtp-company-block-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dtp-company-pingpong-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
        line-height: 28px;
    }
}


/* 0.4.1i Unified Tender Search Bar */
.dtp-unified-search {
    width: 100%;
    margin: 0 auto;
    padding: clamp(16px, 2.4vw, 24px);
    border-radius: 28px;
    border: 1px solid rgba(215, 164, 61, .42);
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.92), transparent 36%),
        linear-gradient(135deg, rgba(255,248,232,.96), rgba(238,215,169,.92));
    box-shadow:
        0 18px 0 rgba(113,76,15,.06),
        0 34px 78px rgba(55,35,7,.18),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-unified-search-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}
.dtp-unified-search label {
    display: grid;
    gap: 7px;
    margin: 0;
}
.dtp-unified-search label span {
    color: rgba(21,14,5,.72);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.dtp-unified-search input,
.dtp-unified-search select {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1.5px solid rgba(124, 80, 13, .24);
    border-radius: 14px;
    background: rgba(255,255,255,.88);
    color: #111;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
}
.dtp-unified-search-keyword input {
    min-height: 58px;
    padding-left: 18px;
    border: 2px solid rgba(196,139,31,.56);
    border-radius: 18px;
    font-size: 16px;
    font-weight: 850;
}
.dtp-unified-search-button {
    min-height: 58px;
    padding: 0 26px;
    border: 2px solid rgba(18,12,4,.70);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffe8a8 0%, #f1c34f 52%, #d49826 100%);
    color: #101010;
    font-size: 15px;
    font-weight: 1000;
    cursor: pointer;
    box-shadow:
        0 9px 0 rgba(113,76,15,.18),
        0 18px 34px rgba(83,53,8,.22);
}
.dtp-unified-search-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.dtp-unified-search-compact {
    padding: 12px;
    border-radius: 18px;
}
.dtp-unified-search-compact .dtp-unified-search-main {
    grid-template-columns: minmax(0, 1fr) auto;
}
.dtp-unified-search-compact .dtp-unified-search-filters {
    display: none;
}
.dtp-unified-search-full .dtp-unified-search-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 760px) {
    .dtp-unified-search-main,
    .dtp-unified-search-filters {
        grid-template-columns: 1fr;
    }
    .dtp-unified-search-button {
        width: 100%;
    }
}


/* 0.4.1k Auto Alle Tender Premium bridge */
.dtp-alle-tender-auto-premium {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: clip;
}
.dtp-alle-tender-auto-premium > .dtp-unified-search {
    max-width: 1320px;
    margin: clamp(18px, 3vw, 34px) auto 0;
}
.dtp-alle-tender-auto-premium > .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    margin-top: clamp(18px, 3vw, 30px);
}
@supports not (overflow: clip) {
    .dtp-alle-tender-auto-premium {
        overflow-x: hidden;
    }
}

/* 0.4.1j Alle Tender Premium Page Layout */
.dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(22px, 3vw, 44px) clamp(14px, 3vw, 34px);
    border-radius: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.62), transparent 32%),
        radial-gradient(circle at 90% 4%, rgba(240,194,79,.16), transparent 30%),
        linear-gradient(180deg, #fffaf0 0%, #f5ead3 42%, #ffffff 100%);
}
.dtp-alle-tender-layout-premium .dtp-alle-premium-hero {
    max-width: 1220px;
    margin: 0 auto 22px;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 34px;
    border: 1px solid rgba(215,164,61,.50);
    background:
        radial-gradient(circle at 14% 0%, rgba(255,255,255,.86), transparent 34%),
        linear-gradient(135deg, rgba(255,249,235,.96), rgba(236,216,176,.94));
    box-shadow:
        0 18px 0 rgba(113,76,15,.06),
        0 34px 78px rgba(55,35,7,.16),
        inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-alle-tender-layout-premium .dtp-alle-premium-hero h1 {
    max-width: 980px;
    margin: 10px 0 12px;
    color: #101010;
    font-size: clamp(34px, 5vw, 66px);
    line-height: .98;
    letter-spacing: -.045em;
}
.dtp-alle-tender-layout-premium .dtp-alle-premium-hero > p {
    max-width: 820px;
    color: rgba(16,16,16,.72);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.58;
}
.dtp-alle-premium-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 370px);
    gap: clamp(18px, 2.5vw, 30px);
    max-width: 1320px;
    margin: 0 auto;
    align-items: start;
}
.dtp-alle-premium-shell.no-sidebar {
    grid-template-columns: minmax(0, 1fr);
}
.dtp-alle-premium-main {
    min-width: 0;
}
.dtp-alle-premium-results-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(215,164,61,.40);
    background: rgba(255,255,255,.76);
    box-shadow: 0 16px 38px rgba(55,35,7,.10);
    backdrop-filter: blur(8px);
}
.dtp-alle-premium-results-head h2 {
    margin: 4px 0 5px;
    color: #111;
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -.03em;
}
.dtp-alle-premium-results-head span {
    color: rgba(16,16,16,.68);
    font-weight: 750;
}
.dtp-alle-premium-head-meta {
    display: grid;
    gap: 6px;
    justify-items: end;
}
.dtp-alle-premium-head-meta strong,
.dtp-alle-premium-head-meta span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(215,164,61,.44);
    background: #fffaf0;
    color: #111;
    font-size: 12px;
    font-weight: 950;
}
.dtp-alle-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 16px;
}
.dtp-alle-active-chips span,
.dtp-alle-active-chips a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(215,164,61,.38);
    background: rgba(255,255,255,.82);
    color: #16120a;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(68,45,7,.08);
}
.dtp-alle-active-chips a {
    background: #111827;
    color: #fff;
}
.dtp-alle-premium-list {
    display: grid;
    gap: 18px;
}
.dtp-alle-premium-list .dtp-tender-card-premium {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 260px;
    padding: clamp(20px, 2vw, 28px);
    border-radius: 28px;
    border: 1px solid rgba(215,164,61,.52);
    background:
        radial-gradient(circle at 13% 0%, rgba(255,255,255,.85), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff7e7 42%, #ecd8aa 100%);
    box-shadow:
        0 14px 0 rgba(113,76,15,.07),
        0 28px 62px rgba(56,36,8,.18),
        inset 0 1px 0 rgba(255,255,255,.98);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dtp-alle-premium-list .dtp-tender-card-premium:hover {
    transform: translateY(-7px);
    border-color: rgba(236,187,79,.92);
    box-shadow:
        0 18px 0 rgba(113,76,15,.09),
        0 42px 86px rgba(56,36,8,.24),
        0 0 0 1px rgba(215,164,61,.20),
        inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-alle-premium-list .dtp-tender-card-premium h3 {
    max-width: 980px;
    margin: 12px 0 8px;
    color: #0a1020;
    font-size: clamp(21px, 2.1vw, 31px);
    line-height: 1.12;
    letter-spacing: -.02em;
}
.dtp-alle-premium-list .dtp-tender-card-context {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 14px;
}
.dtp-alle-premium-list .dtp-tender-card-context span {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(17,24,39,.06);
    color: rgba(17,24,39,.82);
    font-size: 12px;
    font-weight: 850;
}
.dtp-alle-premium-list .dtp-tender-card-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}
.dtp-alle-premium-list .dtp-tender-card-facts div {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(215,164,61,.34);
    background: rgba(255,255,255,.70);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-alle-premium-list .dtp-tender-card-facts span {
    display: block;
    margin-bottom: 4px;
    color: rgba(17,24,39,.55);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.dtp-alle-premium-list .dtp-tender-card-facts strong {
    color: #111827;
    font-size: 13px;
}
.dtp-alle-premium-list .dtp-tender-public-teaser {
    max-width: 980px;
    color: rgba(17,24,39,.76);
    font-size: 15px;
    line-height: 1.6;
}
.dtp-alle-premium-list .dtp-tender-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}
.dtp-alle-premium-list .dtp-tender-card-id {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
}
.dtp-alle-premium-list .dtp-tender-detail-button {
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(117,78,12,.22);
}
.dtp-alle-premium-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 14px;
}
.dtp-alle-sidebar-card {
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(215,164,61,.42);
    background:
        radial-gradient(circle at 16% 0%, rgba(255,255,255,.86), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,245,220,.92));
    box-shadow:
        0 12px 0 rgba(113,76,15,.05),
        0 24px 54px rgba(55,35,7,.14),
        inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-alle-sidebar-card h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 19px;
    letter-spacing: -.015em;
}
.dtp-alle-sidebar-card p {
    margin: 0 0 14px;
    color: rgba(17,24,39,.68);
    line-height: 1.5;
}
.dtp-alle-sidebar-filter .dtp-search-machine {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.dtp-alle-sidebar-filter .dtp-search-main-row,
.dtp-alle-sidebar-filter .dtp-search-filter-grid,
.dtp-alle-sidebar-filter .dtp-search-advanced-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.dtp-alle-sidebar-filter .dtp-search-keyword input {
    min-height: 44px;
}
.dtp-alle-sidebar-filter .dtp-search-submit {
    width: 100%;
    min-height: 44px;
}
.dtp-alle-sidebar-filter .dtp-search-actions-row {
    display: grid;
    gap: 8px;
}
.dtp-alle-sidebar-filter .dtp-search-actions-row span {
    font-size: 12px;
}
.dtp-alle-sidebar-smart ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.dtp-alle-sidebar-smart li {
    position: relative;
    padding-left: 24px;
    color: #111827;
    font-weight: 750;
}
.dtp-alle-sidebar-smart li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b4831e;
    font-weight: 1000;
}
.dtp-alle-sidebar-cta {
    background:
        radial-gradient(circle at 14% 0%, rgba(240,194,79,.28), transparent 34%),
        linear-gradient(145deg, #081126, #111827 58%, #07101f);
    color: #fff;
    border-color: rgba(240,194,79,.48);
}
.dtp-alle-sidebar-cta span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(240,194,79,.18);
    color: #f8d87d;
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
}
.dtp-alle-sidebar-cta h3,
.dtp-alle-sidebar-cta p {
    color: #fff;
}
.dtp-alle-sidebar-cta p {
    color: rgba(255,255,255,.72);
}
.dtp-alle-sidebar-cta .dtp-primary-link,
.dtp-alle-sidebar-cta .dtp-secondary-link {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.dtp-alle-premium-empty {
    min-height: 240px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 0%, rgba(255,255,255,.9), transparent 34%),
        linear-gradient(135deg, #fff, #fff1d0);
}
.dtp-unified-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.dtp-unified-search-chips a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(215,164,61,.45);
    background: rgba(255,255,255,.72);
    color: #121212;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(75,48,8,.08);
}
.dtp-unified-search-chips a:hover {
    background: #111827;
    color: #fff;
}
@media (max-width: 1100px) {
    .dtp-alle-premium-shell {
        grid-template-columns: 1fr;
    }
    .dtp-alle-premium-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dtp-alle-sidebar-filter {
        grid-column: 1 / -1;
    }
}
@media (max-width: 760px) {
    .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
        padding: 18px 12px;
    }
    .dtp-alle-premium-results-head {
        display: grid;
    }
    .dtp-alle-premium-head-meta {
        justify-items: start;
    }
    .dtp-alle-premium-list .dtp-tender-card-facts,
    .dtp-alle-premium-sidebar {
        grid-template-columns: 1fr;
    }
    .dtp-alle-premium-list .dtp-tender-card-footer {
        display: grid;
    }
}

/* Phase 41l: Clean /alle-tender premium page takeover. */
.dtp-alle-tender-page-v2 {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 34px clamp(14px, 4vw, 54px) 56px;
    overflow: hidden;
    color: #101827;
    background:
        radial-gradient(circle at 8% 0%, rgba(245, 200, 79, .30), transparent 34%),
        radial-gradient(circle at 92% 10%, rgba(195, 25, 45, .16), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #fff7e6 42%, #ffffff 100%);
}
.dtp-alle-tender-page-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.30) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.30) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .38;
}
.dtp-alle-tender-page-v2 > * {
    position: relative;
    z-index: 1;
}
.dtp-alle-v2-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 22px;
    max-width: 1440px;
    margin: 0 auto 22px;
    align-items: stretch;
}
.dtp-alle-v2-hero-copy,
.dtp-alle-v2-hero-panel,
.dtp-alle-v2-search,
.dtp-alle-v2-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    border: 1px solid rgba(212, 158, 48, .38);
    box-shadow:
        0 18px 0 rgba(109, 73, 12, .05),
        0 32px 80px rgba(30, 41, 59, .12),
        inset 0 1px 0 rgba(255,255,255,.92);
}
.dtp-alle-v2-hero-copy {
    padding: clamp(24px, 4vw, 46px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 16% 0%, rgba(255,255,255,.96), transparent 35%),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,248,229,.92));
}
.dtp-alle-v2-hero-copy h1 {
    margin: 10px 0 12px;
    max-width: 980px;
    color: #081126;
    font-size: clamp(34px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}
.dtp-alle-v2-hero-copy > p:not(.dtp-gold-clipser) {
    max-width: 880px;
    margin: 0;
    color: rgba(17,24,39,.72);
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 1.55;
    font-weight: 650;
}
.dtp-alle-v2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.dtp-alle-v2-badges span,
.dtp-alle-v2-hero-panel strong {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 7px 12px;
    background: linear-gradient(135deg, #101827, #1f2937);
    color: #fff;
    border: 1px solid rgba(245,200,79,.55);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .045em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(15,23,42,.18);
}
.dtp-alle-v2-hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    border-radius: 34px;
    padding: 26px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 20% 8%, rgba(245,200,79,.35), transparent 32%),
        radial-gradient(circle at 82% 14%, rgba(209,30,50,.34), transparent 30%),
        linear-gradient(145deg, #071126, #111827 55%, #050914);
}
.dtp-alle-v2-hero-panel::before {
    content: "DT";
    position: absolute;
    right: -10px;
    top: -24px;
    color: rgba(255,255,255,.055);
    font-size: 142px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.08em;
}
.dtp-alle-v2-hero-panel span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,.74);
    line-height: 1.55;
    font-weight: 700;
}
.dtp-alle-v2-search {
    max-width: 1440px;
    margin: 0 auto 24px;
    padding: clamp(14px, 2vw, 22px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 14% 0%, rgba(255,255,255,.9), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,243,210,.93));
}
.dtp-alle-v2-search .dtp-unified-search {
    margin: 0;
}
.dtp-alle-v2-results {
    max-width: 1440px;
    margin: 0 auto;
}
.dtp-alle-v2-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 34px;
    padding: clamp(16px, 2.5vw, 30px);
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.85), transparent 33%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,239,.94));
}
.dtp-alle-v2-results .dtp-search-intelligence-note {
    margin-top: 0;
}
@media (max-width: 1024px) {
    .dtp-alle-v2-hero {
        grid-template-columns: 1fr;
    }
    .dtp-alle-v2-hero-panel {
        min-height: 190px;
    }
}
@media (max-width: 760px) {
    .dtp-alle-tender-page-v2 {
        padding: 18px 12px 34px;
    }
    .dtp-alle-v2-hero-copy,
    .dtp-alle-v2-hero-panel,
    .dtp-alle-v2-search,
    .dtp-alle-v2-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
        border-radius: 24px;
    }
    .dtp-alle-v2-hero-copy h1 {
        font-size: clamp(32px, 12vw, 46px);
    }
}

/* Phase 41m: /alle-tender visual premium upgrade. Isolated to the clean page shortcode. */
.dtp-alle-tender-page-v3 {
    --dtp-v3-ink: #071126;
    --dtp-v3-navy: #081126;
    --dtp-v3-night: #030712;
    --dtp-v3-gold: #f2b632;
    --dtp-v3-gold-2: #ffd86a;
    --dtp-v3-red: #c9152e;
    --dtp-v3-card: rgba(255, 248, 231, .96);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(18px, 2.7vw, 44px) clamp(12px, 2.9vw, 52px) clamp(52px, 5vw, 92px);
    overflow: clip;
    color: var(--dtp-v3-ink);
    background:
        radial-gradient(circle at 5% 0%, rgba(255, 216, 106, .34), transparent 25%),
        radial-gradient(circle at 88% 6%, rgba(201, 21, 46, .22), transparent 24%),
        radial-gradient(circle at 50% 118%, rgba(242, 182, 50, .28), transparent 35%),
        linear-gradient(180deg, #111827 0%, #172034 165px, #f0dfbf 166px, #fff6e1 54%, #f9fafb 100%);
    isolation: isolate;
}
@supports not (overflow: clip) {
    .dtp-alle-tender-page-v3 { overflow-x: hidden; }
}
.dtp-alle-tender-page-v3::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.055) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 34%);
    background-size: 44px 44px, 44px 44px, 100% 100%;
    opacity: .8;
    z-index: 0;
}
.dtp-alle-tender-page-v3::after {
    content: "";
    position: absolute;
    left: clamp(16px, 4vw, 82px);
    right: clamp(16px, 4vw, 82px);
    top: clamp(76px, 8vw, 116px);
    height: 170px;
    border-radius: 44px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255,216,106,.38), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.02));
    filter: blur(.2px);
    opacity: .62;
    pointer-events: none;
    z-index: 0;
}
.dtp-alle-v3-topline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 18px;
    width: min(1720px, calc(100vw - 28px));
    margin: 0 auto clamp(16px, 2vw, 26px);
    padding: 10px 14px;
    border: 1px solid rgba(255, 216, 106, .25);
    border-radius: 999px;
    background: rgba(5, 10, 24, .72);
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .035em;
    text-transform: uppercase;
    box-shadow: 0 20px 62px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
}
.dtp-alle-v3-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,216,106,.24), rgba(201,21,46,.24));
    color: #fff;
    border: 1px solid rgba(255,216,106,.35);
}
.dtp-alle-v3-live i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #41ff82;
    box-shadow: 0 0 0 5px rgba(65,255,130,.12), 0 0 22px rgba(65,255,130,.95);
}
.dtp-alle-v3-hero,
.dtp-alle-v3-search,
.dtp-alle-v3-results {
    width: min(1720px, calc(100vw - 28px));
    max-width: 1720px;
}
.dtp-alle-v3-hero {
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, .65fr);
    gap: clamp(18px, 2vw, 32px);
    margin-bottom: clamp(18px, 2.2vw, 34px);
}
.dtp-alle-v3-hero-copy,
.dtp-alle-v3-hero-panel,
.dtp-alle-v3-search,
.dtp-alle-v3-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    border: 1px solid rgba(255, 216, 106, .42);
    box-shadow:
        0 18px 0 rgba(72, 46, 8, .10),
        0 38px 110px rgba(3, 7, 18, .22),
        inset 0 1px 0 rgba(255,255,255,.80);
}
.dtp-alle-v3-hero-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4.4vw, 70px);
    min-height: 370px;
    border-radius: 42px;
    background:
        linear-gradient(110deg, rgba(255,255,255,.98) 0%, rgba(255,247,225,.94) 52%, rgba(242, 200, 110, .86) 100%);
}
.dtp-alle-v3-hero-copy::before {
    content: "";
    position: absolute;
    inset: -35% -8% auto auto;
    width: 46%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,21,46,.18), transparent 66%);
    pointer-events: none;
}
.dtp-alle-v3-hero-copy::after {
    content: "DT";
    position: absolute;
    right: clamp(18px, 4vw, 70px);
    bottom: -38px;
    color: rgba(8,17,38,.045);
    font-size: clamp(110px, 16vw, 230px);
    line-height: .8;
    font-weight: 1000;
    letter-spacing: -.1em;
    pointer-events: none;
}
.dtp-alle-v3-hero-copy .dtp-gold-clipser {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8,17,38,.92);
    color: #fff;
    border: 1px solid rgba(255,216,106,.45);
    box-shadow: 0 12px 28px rgba(8,17,38,.20);
}
.dtp-alle-v3-hero-copy h1 {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 0 18px;
    color: var(--dtp-v3-ink);
    font-size: clamp(42px, 5.8vw, 96px);
    line-height: .9;
    letter-spacing: -.07em;
}
.dtp-alle-v3-hero-copy h1 span,
.dtp-alle-v3-hero-copy h1 em {
    display: block;
    font-style: normal;
}
.dtp-alle-v3-hero-copy h1 em {
    max-width: 1040px;
    background: linear-gradient(135deg, #071126 0%, #7c4a02 58%, #c9152e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.dtp-alle-v3-hero-copy > p:not(.dtp-gold-clipser) {
    position: relative;
    z-index: 1;
    max-width: 920px;
    color: rgba(7,17,38,.76);
    font-size: clamp(17px, 1.55vw, 23px);
    font-weight: 760;
}
.dtp-alle-v3-badges {
    position: relative;
    z-index: 1;
    margin-top: 26px;
}
.dtp-alle-v3-badges span {
    min-height: 38px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #071126, #172033 58%, #2b1703);
    border-color: rgba(255,216,106,.65);
    box-shadow: 0 14px 28px rgba(7,17,38,.20);
}
.dtp-alle-v3-signal-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(22px, 3vw, 36px);
}
.dtp-alle-v3-signal-grid div {
    padding: 15px 16px;
    border-radius: 20px;
    border: 1px solid rgba(154, 104, 19, .24);
    background: rgba(255,255,255,.72);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 15px 34px rgba(72,46,8,.08);
}
.dtp-alle-v3-signal-grid strong,
.dtp-alle-v3-signal-grid span {
    display: block;
}
.dtp-alle-v3-signal-grid strong {
    color: #071126;
    font-size: 15px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.dtp-alle-v3-signal-grid span {
    margin-top: 5px;
    color: rgba(7,17,38,.62);
    font-weight: 750;
    line-height: 1.35;
}
.dtp-alle-v3-hero-panel {
    min-height: 370px;
    padding: clamp(24px, 2.8vw, 36px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 18% 10%, rgba(255,216,106,.38), transparent 28%),
        radial-gradient(circle at 83% 6%, rgba(201,21,46,.42), transparent 27%),
        linear-gradient(145deg, #020617 0%, #081126 52%, #121a2b 100%);
    box-shadow:
        0 18px 0 rgba(0,0,0,.18),
        0 40px 120px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.14);
}
.dtp-alle-v3-hero-panel::before {
    color: rgba(255,255,255,.045);
    font-size: clamp(116px, 12vw, 190px);
}
.dtp-alle-v3-orb {
    width: 74px;
    height: 74px;
    margin-bottom: auto;
    border-radius: 24px;
    background:
        radial-gradient(circle at 30% 25%, #fff7ce, #f2b632 38%, #8b4b02 70%, #180b02 100%);
    box-shadow: 0 28px 70px rgba(242,182,50,.36), inset 0 1px 0 rgba(255,255,255,.72);
}
.dtp-alle-v3-panel-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}
.dtp-alle-v3-panel-tags b {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,216,106,.24);
    font-size: 12px;
    letter-spacing: .02em;
}
.dtp-alle-v3-panel-actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.dtp-alle-v3-panel-actions a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 15px;
    text-decoration: none !important;
    font-weight: 1000;
    color: #071126;
    background: linear-gradient(135deg, #ffeaa6, #f2b632 56%, #d48c16);
    box-shadow: 0 12px 30px rgba(242,182,50,.22);
}
.dtp-alle-v3-panel-actions a + a {
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,216,106,.35);
    box-shadow: none;
}
.dtp-alle-v3-search {
    margin-bottom: clamp(22px, 2.8vw, 42px);
    padding: clamp(14px, 2vw, 24px);
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(7,17,38,.96), rgba(17,24,39,.93) 48%, rgba(76,48,7,.90)),
        radial-gradient(circle at 10% 0%, rgba(255,216,106,.28), transparent 30%);
    box-shadow:
        0 18px 0 rgba(0,0,0,.14),
        0 36px 110px rgba(3,7,18,.24),
        inset 0 1px 0 rgba(255,255,255,.12);
}
.dtp-alle-v3-search .dtp-unified-search {
    padding: clamp(18px, 2.4vw, 30px);
    border-radius: 30px;
    border-color: rgba(255,216,106,.42);
    background:
        radial-gradient(circle at 10% 0%, rgba(255,216,106,.24), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.dtp-alle-v3-search .dtp-unified-search label span {
    color: rgba(255,255,255,.78);
}
.dtp-alle-v3-search .dtp-unified-search input,
.dtp-alle-v3-search .dtp-unified-search select {
    border-color: rgba(255,216,106,.30);
    background: rgba(255,255,255,.96);
    color: #071126;
    box-shadow: inset 0 2px 0 rgba(255,255,255,.94), 0 12px 32px rgba(0,0,0,.12);
}
.dtp-alle-v3-search .dtp-unified-search-keyword input {
    min-height: 68px;
    padding-left: 22px;
    border-radius: 22px;
    border-color: rgba(255,216,106,.72);
    font-size: clamp(16px, 1.2vw, 20px);
    box-shadow: inset 0 2px 0 rgba(255,255,255,.96), 0 0 0 5px rgba(255,216,106,.08), 0 16px 42px rgba(0,0,0,.16);
}
.dtp-alle-v3-search .dtp-unified-search-button {
    min-height: 68px;
    padding-left: clamp(22px, 2.1vw, 36px);
    padding-right: clamp(22px, 2.1vw, 36px);
    border-radius: 22px;
    border-color: rgba(255,255,255,.18);
    background: linear-gradient(135deg, #fff1ad 0%, #f2b632 46%, #df8f15 100%);
    color: #071126;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 10px 0 rgba(126,76,6,.45), 0 28px 54px rgba(242,182,50,.22);
}
.dtp-unified-search-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 14px;
    padding: 11px 13px;
    border-radius: 18px;
    border: 1px solid rgba(180,118,18,.20);
    background: rgba(255,255,255,.62);
    color: rgba(7,17,38,.68);
    font-weight: 780;
}
.dtp-unified-search-status strong {
    color: #8b5a04;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.dtp-unified-search-status span { flex: 1 1 auto; }
.dtp-unified-search-status a {
    color: #fff;
    background: #071126;
    border-radius: 999px;
    padding: 6px 10px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 1000;
}

.dtp-alle-v3-search .dtp-unified-search-status {
    border-color: rgba(255,216,106,.30);
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.76);
}
.dtp-alle-v3-search .dtp-unified-search-status strong {
    color: #ffdf73;
}
.dtp-alle-v3-search .dtp-unified-search-status a {
    color: #071126;
    background: #ffdf73;
}
.dtp-alle-v3-search .dtp-unified-search-chips a {
    border-color: rgba(255,216,106,.38);
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
}
.dtp-alle-v3-search .dtp-unified-search-chips a:hover {
    background: #ffdf73;
    color: #071126;
}
.dtp-alle-v3-results {
    max-width: 1720px;
}
.dtp-alle-v3-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    padding: clamp(18px, 2.4vw, 36px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,.75), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(242,182,50,.16), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,244,218,.90));
}
.dtp-alle-v3-results .dtp-search-intelligence-note {
    border-radius: 20px;
    border: 1px solid rgba(242,182,50,.25);
    background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,239,196,.66));
    color: rgba(7,17,38,.68);
    box-shadow: 0 12px 36px rgba(72,46,8,.08);
}
.dtp-alle-v3-results .dtp-alle-premium-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 392px);
    max-width: none;
    gap: clamp(18px, 2.3vw, 34px);
}
.dtp-alle-v3-results .dtp-alle-premium-results-head {
    padding: clamp(18px, 2vw, 26px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(7,17,38,.96), rgba(17,24,39,.92)),
        radial-gradient(circle at 8% 0%, rgba(255,216,106,.20), transparent 32%);
    border-color: rgba(255,216,106,.34);
    box-shadow: 0 16px 0 rgba(7,17,38,.06), 0 28px 66px rgba(7,17,38,.18);
}
.dtp-alle-v3-results .dtp-alle-premium-results-head h2,
.dtp-alle-v3-results .dtp-alle-premium-results-head span,
.dtp-alle-v3-results .dtp-alle-premium-results-head .dtp-front-kicker {
    color: #fff;
}
.dtp-alle-v3-results .dtp-alle-premium-results-head span {
    color: rgba(255,255,255,.72);
}
.dtp-alle-v3-results .dtp-alle-premium-head-meta strong,
.dtp-alle-v3-results .dtp-alle-premium-head-meta span {
    background: rgba(255,216,106,.12);
    border-color: rgba(255,216,106,.32);
    color: #ffdf73;
}
.dtp-alle-v3-results .dtp-alle-active-chips span,
.dtp-alle-v3-results .dtp-alle-active-chips a {
    min-height: 36px;
    border-radius: 999px;
    border-color: rgba(242,182,50,.34);
    background: rgba(255,255,255,.76);
    color: #071126;
    box-shadow: 0 10px 26px rgba(72,46,8,.08);
}
.dtp-alle-v3-results .dtp-alle-active-chips a {
    background: #071126;
    color: #fff;
}
.dtp-alle-v3-results .dtp-alle-premium-list {
    gap: clamp(18px, 2.2vw, 30px);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: clamp(24px, 2.6vw, 38px);
    border-radius: 34px;
    border: 1px solid rgba(180, 118, 18, .32);
    background:
        linear-gradient(90deg, rgba(7,17,38,.98) 0 10px, transparent 10px),
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.96), transparent 32%),
        radial-gradient(circle at 92% 0%, rgba(242,182,50,.20), transparent 25%),
        linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(255,246,224,.94) 46%, rgba(235,205,143,.92) 100%);
    box-shadow:
        0 18px 0 rgba(126,76,6,.09),
        0 42px 92px rgba(67,43,8,.22),
        inset 0 1px 0 rgba(255,255,255,.98);
    transform: translateZ(0);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium::before {
    content: "";
    position: absolute;
    top: -34%;
    right: -12%;
    width: 34%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,21,46,.20), transparent 70%);
    pointer-events: none;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #ffdf73, #c9152e 55%, #071126);
    opacity: .95;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium:hover {
    transform: translateY(-9px) scale(1.006);
    border-color: rgba(242,182,50,.76);
    box-shadow:
        0 22px 0 rgba(126,76,6,.11),
        0 58px 125px rgba(67,43,8,.30),
        0 0 0 1px rgba(242,182,50,.18),
        inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-ribbon {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-source-badge {
    min-height: 30px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .035em;
    text-transform: uppercase;
    border: 1px solid rgba(7,17,38,.12);
    box-shadow: 0 9px 18px rgba(7,17,38,.08);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-source-badge-type {
    background: rgba(7,17,38,.08);
    color: #071126;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium h3 {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 18px 0 12px;
    color: #071126;
    font-size: clamp(25px, 2.2vw, 40px);
    line-height: 1.04;
    letter-spacing: -.04em;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-context,
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts,
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-public-teaser,
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-footer {
    position: relative;
    z-index: 1;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-context span {
    min-height: 30px;
    padding: 7px 10px;
    background: rgba(7,17,38,.07);
    color: rgba(7,17,38,.76);
    border: 1px solid rgba(7,17,38,.07);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: clamp(16px, 2vw, 24px) 0;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts div {
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.76);
    border-color: rgba(180,118,18,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.98), 0 14px 34px rgba(72,46,8,.08);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts span {
    color: rgba(7,17,38,.52);
    font-size: 11px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts strong {
    color: #071126;
    font-size: 14px;
    font-weight: 1000;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-public-teaser {
    max-width: 1100px;
    color: rgba(7,17,38,.70);
    font-size: 16px;
    font-weight: 680;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-id {
    min-height: 32px;
    align-items: center;
    background: #071126;
    border: 1px solid rgba(255,216,106,.30);
    box-shadow: 0 10px 24px rgba(7,17,38,.16);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-detail-button {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff0a8, #f2b632 52%, #df8f15);
    color: #071126 !important;
    box-shadow: 0 10px 0 rgba(126,76,6,.24), 0 22px 42px rgba(126,76,6,.22);
}
.dtp-alle-v3-results .dtp-alle-premium-sidebar {
    top: 18px;
    gap: 16px;
}
.dtp-alle-v3-results .dtp-alle-sidebar-card {
    border-radius: 28px;
    border-color: rgba(180,118,18,.32);
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.94), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,240,202,.88));
    box-shadow: 0 14px 0 rgba(126,76,6,.06), 0 30px 72px rgba(67,43,8,.16), inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-alle-v3-results .dtp-alle-sidebar-card h3 {
    font-size: 21px;
    color: #071126;
}
.dtp-alle-v3-results .dtp-alle-sidebar-filter .dtp-search-machine input,
.dtp-alle-v3-results .dtp-alle-sidebar-filter .dtp-search-machine select {
    min-height: 43px;
    border-radius: 14px;
    border-color: rgba(180,118,18,.24);
    background: rgba(255,255,255,.88);
    font-weight: 800;
}
.dtp-alle-v3-results .dtp-alle-sidebar-filter .dtp-search-submit {
    border-radius: 14px;
    background: linear-gradient(135deg, #ffeaa6, #f2b632 58%, #df8f15);
    color: #071126;
    font-weight: 1000;
    box-shadow: 0 14px 26px rgba(126,76,6,.18);
}
.dtp-alle-v3-results .dtp-alle-sidebar-smart {
    background:
        radial-gradient(circle at 12% 0%, rgba(255,216,106,.16), transparent 34%),
        linear-gradient(135deg, rgba(7,17,38,.98), rgba(17,24,39,.94));
    color: #fff;
    border-color: rgba(255,216,106,.30);
}
.dtp-alle-v3-results .dtp-alle-sidebar-smart h3,
.dtp-alle-v3-results .dtp-alle-sidebar-smart li {
    color: #fff;
}
.dtp-alle-v3-results .dtp-alle-sidebar-smart li {
    color: rgba(255,255,255,.78);
}
.dtp-alle-v3-results .dtp-alle-sidebar-smart li::before {
    color: #ffdf73;
}
.dtp-alle-v3-results .dtp-alle-sidebar-cta {
    padding: 22px;
    background:
        radial-gradient(circle at 16% 0%, rgba(255,216,106,.30), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(201,21,46,.26), transparent 30%),
        linear-gradient(145deg, #020617, #071126 58%, #050914);
    border-color: rgba(255,216,106,.42);
    box-shadow: 0 18px 0 rgba(0,0,0,.16), 0 36px 94px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.13);
}
.dtp-alle-v3-results .dtp-alle-sidebar-cta .dtp-primary-link {
    background: linear-gradient(135deg, #fff0a8, #f2b632 52%, #df8f15);
    color: #071126 !important;
    border: 0;
    box-shadow: 0 12px 28px rgba(242,182,50,.20);
}
.dtp-alle-v3-results .dtp-alle-sidebar-cta .dtp-secondary-link {
    color: #fff !important;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,216,106,.34);
}
@media (max-width: 1280px) {
    .dtp-alle-v3-results .dtp-alle-premium-shell {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
    }
}
@media (max-width: 1100px) {
    .dtp-alle-v3-hero,
    .dtp-alle-v3-results .dtp-alle-premium-shell {
        grid-template-columns: 1fr;
    }
    .dtp-alle-v3-hero-panel {
        min-height: 260px;
    }
    .dtp-alle-v3-results .dtp-alle-premium-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .dtp-alle-tender-page-v3 {
        padding: 16px 10px 36px;
        background: linear-gradient(180deg, #111827 0%, #172034 120px, #fff2d6 121px, #f9fafb 100%);
    }
    .dtp-alle-v3-topline {
        border-radius: 24px;
        text-transform: none;
    }
    .dtp-alle-v3-hero,
    .dtp-alle-v3-search,
    .dtp-alle-v3-results {
        width: min(100%, calc(100vw - 20px));
    }
    .dtp-alle-v3-hero-copy,
    .dtp-alle-v3-hero-panel,
    .dtp-alle-v3-search,
    .dtp-alle-v3-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
        border-radius: 26px;
    }
    .dtp-alle-v3-hero-copy {
        min-height: 0;
        padding: 25px 20px;
    }
    .dtp-alle-v3-hero-copy h1 {
        font-size: clamp(36px, 13vw, 54px);
    }
    .dtp-alle-v3-signal-grid,
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts,
    .dtp-alle-v3-results .dtp-alle-premium-sidebar {
        grid-template-columns: 1fr;
    }
    .dtp-alle-v3-search .dtp-unified-search-main,
    .dtp-alle-v3-search .dtp-unified-search-filters {
        grid-template-columns: 1fr;
    }
    .dtp-alle-v3-search .dtp-unified-search-button,
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-detail-button {
        width: 100%;
    }
    .dtp-alle-v3-results .dtp-alle-premium-results-head,
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-footer {
        display: grid;
        justify-items: start;
    }
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium {
        min-height: 0;
        padding: 22px 18px 22px 24px;
        border-radius: 26px;
    }
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium h3 {
        font-size: clamp(23px, 7vw, 32px);
    }
}


/* === 0.4.1n alle tender compact polish === */
.dtp-alle-v3-badges {
    gap: 10px;
}
.dtp-alle-v3-badges span {
    background: linear-gradient(135deg, #0a1225 0%, #161f33 55%, #352108 100%);
    border-color: rgba(255,216,106,.78);
    color: #fff6d2;
    box-shadow: 0 10px 22px rgba(7,17,38,.18), inset 0 1px 0 rgba(255,255,255,.10);
}
.dtp-alle-v3-signal-grid {
    gap: 16px;
    margin-top: clamp(24px, 3vw, 38px);
}
.dtp-alle-v3-signal-grid div {
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(180,118,18,.34);
    background:
        radial-gradient(circle at 10% 0%, rgba(255,255,255,.96), transparent 40%),
        linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,245,220,.92) 60%, rgba(235,205,143,.88));
    box-shadow: 0 14px 0 rgba(126,76,6,.07), 0 26px 58px rgba(72,46,8,.14), inset 0 1px 0 rgba(255,255,255,.98);
    transform: translateZ(0);
}
.dtp-alle-v3-signal-grid div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 0 rgba(126,76,6,.08), 0 30px 72px rgba(72,46,8,.18), 0 0 0 1px rgba(242,182,50,.12), inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-alle-v3-signal-grid strong {
    font-size: 13px;
    letter-spacing: .08em;
    color: #7a4b03;
}
.dtp-alle-v3-signal-grid span {
    margin-top: 7px;
    color: rgba(7,17,38,.72);
    font-size: 14px;
}

.dtp-unified-search-row {
    align-items: end;
}
.dtp-unified-search-row-primary {
    grid-template-columns: minmax(0, 1.9fr) minmax(240px, .9fr);
}
.dtp-unified-search-row-secondary {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}
.dtp-unified-search-country-wrap {
    display: block;
}
.dtp-unified-search-country-wrap > label,
.dtp-unified-search-row-secondary > label {
    margin: 0;
}
.dtp-unified-search-row-secondary .dtp-unified-search-button {
    align-self: end;
}
.dtp-alle-v3-search .dtp-unified-search {
    gap: 14px;
}
.dtp-alle-v3-search .dtp-unified-search-main,
.dtp-alle-v3-search .dtp-unified-search-filters {
    gap: 14px;
}
.dtp-alle-v3-search .dtp-unified-search label span {
    margin-bottom: 7px;
}
.dtp-alle-v3-search .dtp-unified-search select {
    min-height: 58px;
    border-radius: 18px;
    padding-left: 16px;
}
.dtp-alle-v3-search .dtp-unified-search-button {
    min-width: 220px;
    min-height: 58px;
}

.dtp-alle-v3-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
    padding: clamp(18px, 2vw, 30px);
}
.dtp-alle-v3-results .dtp-alle-premium-shell {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 372px);
    gap: clamp(14px, 1.8vw, 24px);
}
.dtp-alle-v3-results .dtp-alle-premium-list {
    gap: clamp(14px, 1.6vw, 22px);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium {
    min-height: 0;
    padding: 20px 22px 18px 28px;
    border-width: 1px;
    border-radius: 30px;
    box-shadow: 0 14px 0 rgba(126,76,6,.08), 0 30px 72px rgba(67,43,8,.20), inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium::after {
    left: 8px;
    width: 4px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium h3 {
    margin: 14px 0 10px;
    font-size: clamp(22px, 1.95vw, 33px);
    line-height: 1.08;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-context {
    gap: 7px;
    margin-bottom: 10px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-context span {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 11px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts {
    gap: 10px;
    margin: 12px 0;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts div {
    padding: 12px 14px;
    border-radius: 17px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-facts strong {
    font-size: 13px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-footer {
    margin-top: 8px;
    margin-bottom: 8px;
    align-items: center;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-id {
    min-height: 30px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-detail-button {
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 14px;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-public-teaser {
    max-width: 960px;
    margin-top: 6px;
    color: rgba(7,17,38,.82);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}
.dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-public-teaser p {
    margin: 0;
}
.dtp-alle-v3-results .dtp-alle-premium-sidebar {
    gap: 14px;
}
.dtp-alle-v3-results .dtp-alle-sidebar-card {
    border-radius: 24px;
}

@media (max-width: 760px) {
    .dtp-unified-search-row-primary,
    .dtp-unified-search-row-secondary,
    .dtp-alle-v3-search .dtp-unified-search-main,
    .dtp-alle-v3-search .dtp-unified-search-filters {
        grid-template-columns: 1fr;
    }
    .dtp-alle-v3-search .dtp-unified-search-button {
        min-width: 0;
        width: 100%;
    }
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium {
        padding: 18px 16px 18px 22px;
        border-radius: 24px;
    }
}


/* === 0.4.1q STRONG Alle Tender hero/card polish ===
   Strong visible update: green mini badges, real 3D signal cards, hero border, gray detail-button frame.
*/
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v3-hero-copy {
    border: 3px solid rgba(89, 98, 113, .92) !important;
    outline: 2px solid rgba(255, 216, 106, .38) !important;
    outline-offset: -8px !important;
    background:
        radial-gradient(circle at 3% 0%, rgba(255,255,255,.98), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(201,21,46,.16), transparent 30%),
        linear-gradient(110deg, rgba(255,255,255,.99) 0%, rgba(255,247,225,.97) 48%, rgba(242, 200, 110, .92) 100%) !important;
    box-shadow:
        0 20px 0 rgba(72,46,8,.14),
        0 46px 130px rgba(3,7,18,.30),
        0 0 0 1px rgba(255,255,255,.70) inset,
        0 0 0 7px rgba(255,216,106,.08) !important;
}

.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v3-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v3-badges span {
    min-height: 38px !important;
    padding: 8px 15px !important;
    color: #fff7d4 !important;
    background:
        linear-gradient(135deg, #08351f 0%, #0e4c30 48%, #12633d 100%) !important;
    border: 2px solid #f2c94c !important;
    box-shadow:
        0 10px 0 rgba(2,31,18,.32),
        0 18px 34px rgba(2,31,18,.34),
        inset 0 1px 0 rgba(255,255,255,.18) !important;
    text-shadow: 0 1px 0 rgba(0,0,0,.28) !important;
}

.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-grid {
    gap: 18px !important;
    margin-top: clamp(24px, 3vw, 40px) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card {
    position: relative !important;
    overflow: hidden !important;
    min-height: 118px !important;
    padding: 20px 18px 18px 20px !important;
    border-radius: 24px !important;
    border: 3px solid rgba(91,100,116,.95) !important;
    outline: 2px solid rgba(242,201,76,.42) !important;
    outline-offset: -7px !important;
    background:
        linear-gradient(90deg, rgba(8,53,31,.98) 0 8px, transparent 8px),
        radial-gradient(circle at 13% 0%, rgba(255,255,255,.98), transparent 38%),
        radial-gradient(circle at 92% 6%, rgba(242,201,76,.34), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #fff4cf 56%, #e9d096 100%) !important;
    box-shadow:
        0 14px 0 rgba(91,100,116,.18),
        0 30px 70px rgba(42,47,58,.26),
        0 0 0 1px rgba(255,255,255,.78) inset,
        0 0 0 7px rgba(242,201,76,.08) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,21,46,.18), transparent 68%);
    pointer-events: none;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card:hover {
    transform: translateY(-7px) !important;
    border-color: #f2c94c !important;
    box-shadow:
        0 18px 0 rgba(91,100,116,.20),
        0 38px 92px rgba(42,47,58,.32),
        0 0 0 1px rgba(255,255,255,.90) inset,
        0 0 0 8px rgba(242,201,76,.12) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 30px !important;
    margin-bottom: 10px !important;
    border-radius: 11px !important;
    color: #f8d55b !important;
    background: #08351f !important;
    border: 1px solid rgba(242,201,76,.75) !important;
    font-style: normal !important;
    font-size: 11px !important;
    font-weight: 1000 !important;
    letter-spacing: .04em !important;
    box-shadow: 0 10px 20px rgba(2,31,18,.22) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card strong {
    color: #08351f !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card span {
    color: rgba(7,17,38,.78) !important;
    font-weight: 800 !important;
}

/* Stronger tender cards + clear gray frame around yellow detail button */
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium {
    border: 3px solid rgba(91,100,116,.82) !important;
    outline: 1px solid rgba(242,201,76,.22) !important;
    outline-offset: -6px !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-detail-button {
    border: 3px solid rgba(91,100,116,.90) !important;
    box-shadow:
        0 9px 0 rgba(91,100,116,.28),
        0 18px 40px rgba(126,76,6,.24),
        inset 0 1px 0 rgba(255,255,255,.58) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-detail-button:hover {
    border-color: #c9152e !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 760px) {
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1q"] .dtp-alle-v4-signal-card {
        min-height: 0 !important;
        padding: 18px 16px 16px 20px !important;
    }
}


/* === 0.4.1r final icon + mobile polish === */
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    grid-template-areas:
        "icon title"
        "icon text" !important;
    column-gap: 15px !important;
    align-items: center !important;
    min-height: 122px !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-icon {
    grid-area: icon !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    color: #f8d55b !important;
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.14), transparent 30%),
        linear-gradient(145deg, #071126 0%, #0c1f42 62%, #102a58 100%) !important;
    border: 2px solid rgba(242,201,76,.82) !important;
    box-shadow:
        0 12px 24px rgba(7,17,38,.25),
        inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-icon svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    fill: currentColor !important;
    filter: drop-shadow(0 3px 8px rgba(242,201,76,.26)) !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card strong {
    grid-area: title !important;
    align-self: end !important;
    margin: 0 !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card span {
    grid-area: text !important;
    align-self: start !important;
    margin-top: 5px !important;
}
.dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card:hover .dtp-alle-v4-icon {
    transform: translateY(-2px) scale(1.03) !important;
    border-color: #ffe174 !important;
    box-shadow:
        0 14px 30px rgba(7,17,38,.30),
        0 0 0 5px rgba(242,201,76,.10),
        inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* Mobile final: cleaner stacking, no broken widths, better card rhythm */
@media (max-width: 1100px) {
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-hero {
        gap: 18px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 860px) {
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card {
        min-height: 104px !important;
        grid-template-columns: 54px minmax(0, 1fr) !important;
        padding: 17px 16px 16px 18px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-icon {
        width: 52px !important;
        height: 52px !important;
        border-radius: 16px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
}
@media (max-width: 760px) {
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] {
        padding: 14px 8px 34px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-topline {
        gap: 8px !important;
        padding: 10px 11px !important;
        font-size: 10px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-hero,
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-search,
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-results {
        width: min(100%, calc(100vw - 16px)) !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-hero-copy {
        padding: 24px 18px 20px !important;
        border-radius: 26px !important;
        outline-offset: -6px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-badges {
        gap: 8px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-badges span {
        min-height: 34px !important;
        padding: 7px 10px !important;
        font-size: 11px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card {
        border-radius: 20px !important;
        border-width: 2px !important;
        outline-offset: -5px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-search {
        padding: 12px !important;
        border-radius: 24px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-unified-search {
        padding: 14px !important;
        border-radius: 22px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-unified-search input,
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-unified-search select,
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-unified-search-button {
        min-height: 52px !important;
        border-radius: 16px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
        padding: 12px !important;
        border-radius: 24px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium {
        padding: 17px 14px 17px 21px !important;
        border-width: 2px !important;
        outline-offset: -5px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-detail-button {
        width: 100% !important;
        justify-content: center !important;
        border-width: 2px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v3-results .dtp-alle-premium-sidebar {
        gap: 12px !important;
    }
}
@media (max-width: 420px) {
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-signal-card {
        grid-template-columns: 48px minmax(0, 1fr) !important;
        column-gap: 12px !important;
        padding: 15px 13px 14px 15px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-icon {
        width: 48px !important;
        height: 48px !important;
    }
    .dtp-alle-tender-page-v3[data-dtp-alle-tender-visual="0.4.1r"] .dtp-alle-v4-icon svg {
        width: 26px !important;
        height: 26px !important;
    }
}


/* === 0.4.2a Smart Search Phase 1 === */
.dtp-smart-search-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #071126;
    background: linear-gradient(135deg, #fff0a8, #f2b632);
    border: 1px solid rgba(7,17,38,.12);
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(126,76,6,.18);
}
.dtp-smart-empty-suggestions {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(242,182,50,.30);
    background: rgba(255,246,224,.72);
}
.dtp-smart-empty-suggestions strong {
    color: #7c4a02;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dtp-smart-empty-suggestions span {
    color: rgba(7,17,38,.76);
    font-weight: 750;
}
.dtp-smart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* === 0.4.2b PLZ + Live Category Intelligence === */
.dtp-live-categories {
    width: min(1480px, calc(100vw - 32px));
    margin: clamp(26px, 4vw, 60px) auto;
    padding: clamp(18px, 2.8vw, 34px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255,216,106,.24), transparent 34%),
        linear-gradient(135deg, rgba(7,17,38,.98), rgba(17,24,39,.94));
    border: 1px solid rgba(255,216,106,.30);
    box-shadow: 0 18px 0 rgba(0,0,0,.14), 0 36px 96px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
}
.dtp-live-categories-head {
    max-width: 880px;
    margin-bottom: 22px;
}
.dtp-live-categories-head h2 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: clamp(30px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.04em;
}
.dtp-live-categories-head p:not(.dtp-gold-clipser) {
    color: rgba(255,255,255,.72);
    font-weight: 750;
    font-size: 16px;
}
.dtp-live-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.dtp-live-category-card {
    position: relative;
    display: grid;
    gap: 7px;
    min-height: 152px;
    padding: 20px 18px;
    border-radius: 24px;
    text-decoration: none !important;
    color: #071126 !important;
    background:
        linear-gradient(90deg, rgba(15,51,36,.98) 0 7px, transparent 7px),
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.98), transparent 34%),
        linear-gradient(145deg, #ffffff, #fff2cb 60%, #e7cf94);
    border: 2px solid rgba(136,144,156,.78);
    outline: 1px solid rgba(255,216,106,.28);
    outline-offset: -6px;
    box-shadow: 0 12px 0 rgba(91,100,116,.18), 0 28px 66px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.98);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dtp-live-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,216,106,.92);
    box-shadow: 0 16px 0 rgba(91,100,116,.22), 0 38px 86px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-live-category-count {
    display: inline-flex;
    width: fit-content;
    min-width: 42px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 12px;
    color: #ffdf73;
    background: #071126;
    border: 1px solid rgba(255,216,106,.62);
    font-weight: 1000;
    box-shadow: 0 12px 24px rgba(7,17,38,.18);
}
.dtp-live-category-card strong {
    color: #071126;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 1000;
}
.dtp-live-category-card em,
.dtp-live-category-card small {
    font-style: normal;
    color: rgba(7,17,38,.68);
    font-weight: 800;
}
.dtp-live-category-card small {
    color: #8b5a04;
}
.dtp-live-category-empty {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,216,106,.20);
    color: #fff;
}
.dtp-search-intelligence-note strong::before {
    content: "✓ ";
}
@media (max-width: 920px) {
    .dtp-live-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .dtp-live-categories {
        width: min(100%, calc(100vw - 18px));
        padding: 16px;
        border-radius: 26px;
    }
    .dtp-live-category-grid {
        grid-template-columns: 1fr;
    }
    .dtp-live-category-card {
        min-height: 0;
        border-radius: 20px;
        padding: 17px 16px;
    }
}


/* === 0.4.2c Smart Search Autocomplete === */
.dtp-unified-search-keyword {
    position: relative;
}
.dtp-search-autocomplete-box {
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 7px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255,216,106,.38);
    background:
        radial-gradient(circle at 10% 0%, rgba(255,216,106,.16), transparent 34%),
        linear-gradient(145deg, #071126, #101b31 66%, #111827);
    box-shadow: 0 24px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.12);
}
.dtp-search-autocomplete-item {
    appearance: none;
    border: 1px solid rgba(255,216,106,.16);
    display: grid;
    grid-template-columns: minmax(86px, 118px) minmax(0, 1fr);
    gap: 4px 11px;
    width: 100%;
    text-align: left;
    padding: 11px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    color: #fff;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.dtp-search-autocomplete-item:hover,
.dtp-search-autocomplete-item.is-active {
    transform: translateY(-1px);
    border-color: rgba(255,216,106,.52);
    background: rgba(255,216,106,.12);
}
.dtp-search-autocomplete-type {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 8px;
    border-radius: 12px;
    color: #071126;
    background: linear-gradient(135deg, #fff0a8, #f2b632);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.dtp-search-autocomplete-item strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}
.dtp-search-autocomplete-item em {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-style: normal;
    line-height: 1.25;
}
.dtp-search-autocomplete-loading,
.dtp-search-autocomplete-empty {
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255,255,255,.76);
    background: rgba(255,255,255,.07);
    font-weight: 800;
}
@media (max-width: 760px) {
    .dtp-search-autocomplete-box {
        position: static;
        margin-top: 8px;
        border-radius: 18px;
    }
    .dtp-search-autocomplete-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .dtp-search-autocomplete-type {
        width: fit-content;
        grid-row: auto;
    }
}


/* === 0.4.2e Live Top Categories compact block === */
.dtp-alle-v3-top-categories-wrap {
    width: min(1480px, calc(100vw - 32px));
    margin: 18px auto 16px;
}
.dtp-live-categories-compact,
.dtp-live-categories-mini {
    width: 100%;
    margin: 0 auto;
    padding: 14px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 4% 0%, rgba(255,216,106,.18), transparent 30%),
        linear-gradient(135deg, rgba(7,17,38,.98), rgba(13,31,66,.96) 58%, rgba(10,22,47,.98));
    border: 1px solid rgba(255,216,106,.28);
    box-shadow:
        0 14px 0 rgba(7,17,38,.10),
        0 34px 86px rgba(3,7,18,.22),
        inset 0 1px 0 rgba(255,255,255,.10);
}
.dtp-live-categories-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
    padding: 0 4px;
}
.dtp-live-categories-mini-head strong {
    color: #fff;
    font-size: 15px;
    font-weight: 1000;
    letter-spacing: -.01em;
}
.dtp-live-categories-mini-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff5c4;
    background: rgba(255,216,106,.10);
    border: 1px solid rgba(255,216,106,.25);
    font-size: 11px;
    font-weight: 900;
}
.dtp-live-categories-compact .dtp-live-category-grid,
.dtp-live-categories-mini .dtp-live-category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
.dtp-live-categories-compact .dtp-live-category-card,
.dtp-live-categories-mini .dtp-live-category-card {
    min-height: 96px;
    padding: 13px 12px 12px 14px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    background:
        linear-gradient(90deg, rgba(15,51,36,.98) 0 5px, transparent 5px),
        radial-gradient(circle at 18% 0%, rgba(255,255,255,.98), transparent 36%),
        linear-gradient(145deg, #ffffff, #fff4cf 66%, #e9d097);
    border: 2px solid rgba(136,144,156,.82);
    outline: 1px solid rgba(255,216,106,.28);
    outline-offset: -5px;
    box-shadow:
        0 8px 0 rgba(91,100,116,.16),
        0 20px 46px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.95);
}
.dtp-live-categories-compact .dtp-live-category-card:hover,
.dtp-live-categories-mini .dtp-live-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,216,106,.90);
    box-shadow:
        0 12px 0 rgba(91,100,116,.19),
        0 30px 62px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.98);
}
.dtp-live-categories-compact .dtp-live-category-count,
.dtp-live-categories-mini .dtp-live-category-count {
    min-width: 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 14px;
    font-size: 13px;
}
.dtp-live-category-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.dtp-live-categories-compact .dtp-live-category-card strong,
.dtp-live-categories-mini .dtp-live-category-card strong {
    font-size: 14px;
    line-height: 1.08;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dtp-live-categories-compact .dtp-live-category-card em,
.dtp-live-categories-compact .dtp-live-category-card small,
.dtp-live-categories-mini .dtp-live-category-card em,
.dtp-live-categories-mini .dtp-live-category-card small {
    font-size: 11px;
    line-height: 1.12;
}
@media (max-width: 1180px) {
    .dtp-live-categories-compact .dtp-live-category-grid,
    .dtp-live-categories-mini .dtp-live-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .dtp-alle-v3-top-categories-wrap {
        width: min(100%, calc(100vw - 16px));
        margin: 14px auto 12px;
    }
    .dtp-live-categories-compact,
    .dtp-live-categories-mini {
        padding: 12px;
        border-radius: 24px;
    }
    .dtp-live-categories-mini-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
    .dtp-live-categories-compact .dtp-live-category-grid,
    .dtp-live-categories-mini .dtp-live-category-grid {
        grid-template-columns: 1fr;
    }
    .dtp-live-categories-compact .dtp-live-category-card,
    .dtp-live-categories-mini .dtp-live-category-card {
        min-height: 78px;
        grid-template-columns: 40px minmax(0, 1fr);
        border-radius: 18px;
    }
}

/* === 0.4.2k Alle Tender mobile stabilization + search scroll support === */
@media (max-width: 760px) {
    html, body {
        overflow-x: hidden !important;
    }

    body.dtp-alle-tender-view .dt-topzone-inner {
        min-height: 220px !important;
    }
    body.dtp-alle-tender-view .dt-topzone-inner .dt-hero-inner {
        min-height: 150px !important;
        padding: 24px 0 30px !important;
        align-items: flex-end !important;
    }
    body.dtp-alle-tender-view .dt-topzone-inner .dt-hero-copy h1 {
        font-size: clamp(34px, 10vw, 46px) !important;
        line-height: 1.03 !important;
        margin-bottom: 12px !important;
    }
    body.dtp-alle-tender-view .dt-topzone-inner .dt-hero-copy p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        max-width: 92vw !important;
    }

    .dtp-alle-tender-page-v3,
    .dtp-alle-tender-page-v3 * {
        box-sizing: border-box !important;
    }
    .dtp-alle-tender-page-v3 {
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 auto !important;
        padding: 10px 8px 30px !important;
        overflow-x: hidden !important;
        background: linear-gradient(180deg, #071126 0%, #0b1325 160px, #111827 100%) !important;
    }
    .dtp-alle-v3-topline {
        width: 100% !important;
        margin: 0 auto 10px !important;
        padding: 9px 10px !important;
        border-radius: 18px !important;
        gap: 8px !important;
        overflow: hidden !important;
    }
    .dtp-alle-v3-topline span:not(.dtp-alle-v3-live):last-child {
        display: none !important;
    }

    .dtp-alle-v3-hero,
    .dtp-alle-v3-search,
    .dtp-alle-v3-results,
    .dtp-alle-v3-top-categories-wrap {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important;
    }
    .dtp-alle-v3-hero {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .dtp-alle-v3-hero-copy {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        padding: 18px 14px 16px !important;
        border-radius: 24px !important;
        overflow: hidden !important;
    }
    .dtp-alle-v3-hero-copy .dtp-gold-clipser {
        margin-bottom: 12px !important;
        font-size: 10px !important;
        max-width: 100% !important;
        white-space: normal !important;
    }
    .dtp-alle-v3-hero-copy h1 {
        font-size: clamp(30px, 9.5vw, 42px) !important;
        line-height: 1.02 !important;
        letter-spacing: -.045em !important;
        margin-bottom: 12px !important;
    }
    .dtp-alle-v3-hero-copy > p:not(.dtp-gold-clipser) {
        font-size: 14px !important;
        line-height: 1.46 !important;
        max-width: 100% !important;
    }
    .dtp-alle-v3-badges {
        display: flex !important;
        gap: 7px !important;
        flex-wrap: wrap !important;
        margin-top: 14px !important;
    }
    .dtp-alle-v3-badges span {
        min-height: 30px !important;
        padding: 6px 9px !important;
        font-size: 10px !important;
        line-height: 1.1 !important;
    }
    .dtp-alle-v3-signal-grid,
    .dtp-alle-v4-signal-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        margin-top: 16px !important;
    }
    .dtp-alle-v4-signal-card {
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) !important;
        column-gap: 12px !important;
        row-gap: 2px !important;
        align-items: center !important;
        padding: 12px !important;
        border-radius: 18px !important;
    }
    .dtp-alle-v4-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 14px !important;
        grid-row: span 2 !important;
    }
    .dtp-alle-v4-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    .dtp-alle-v4-signal-card strong {
        font-size: 12px !important;
        line-height: 1.1 !important;
    }
    .dtp-alle-v4-signal-card span {
        font-size: 12px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }
    .dtp-alle-v3-hero-panel {
        display: none !important;
    }

    .dtp-alle-v3-top-categories-wrap {
        margin: 12px auto 10px !important;
    }
    .dtp-live-categories-compact,
    .dtp-live-categories-mini {
        padding: 10px !important;
        border-radius: 20px !important;
    }
    .dtp-live-categories-mini-head {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }
    .dtp-live-categories-compact .dtp-live-category-grid,
    .dtp-live-categories-mini .dtp-live-category-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .dtp-live-categories-compact .dtp-live-category-card,
    .dtp-live-categories-mini .dtp-live-category-card {
        min-height: 68px !important;
        padding: 10px 11px !important;
        border-radius: 16px !important;
        grid-template-columns: 38px minmax(0, 1fr) !important;
    }

    .dtp-alle-v3-search {
        padding: 10px !important;
        border-radius: 22px !important;
        margin: 10px auto 12px !important;
    }
    .dtp-alle-v3-search .dtp-unified-search,
    .dtp-unified-search {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 12px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }
    .dtp-alle-v3-search .dtp-unified-search-main,
    .dtp-alle-v3-search .dtp-unified-search-filters,
    .dtp-unified-search-main,
    .dtp-unified-search-filters {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .dtp-unified-search label,
    .dtp-unified-search-keyword,
    .dtp-unified-search-country-wrap,
    .dtp-unified-search input,
    .dtp-unified-search select,
    .dtp-unified-search button,
    .dtp-unified-search-button {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .dtp-unified-search input,
    .dtp-unified-search select,
    .dtp-unified-search-button {
        min-height: 50px !important;
        border-radius: 15px !important;
        font-size: 14px !important;
    }
    .dtp-unified-search-status {
        display: grid !important;
        gap: 5px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
    }
    .dtp-unified-search-chips {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 7px !important;
        padding-bottom: 3px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .dtp-unified-search-chips a {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    .dtp-alle-v3-results {
        margin-top: 12px !important;
    }
    .dtp-alle-v3-results .dtp-search-page-wrap.dtp-alle-tender-layout-premium,
    .dtp-search-page-wrap.dtp-alle-tender-layout-premium {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 10px !important;
        border-radius: 22px !important;
        overflow: hidden !important;
    }
    .dtp-alle-premium-shell,
    .dtp-alle-v3-results .dtp-alle-premium-shell {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    .dtp-alle-premium-sidebar,
    .dtp-alle-v3-results .dtp-alle-premium-sidebar {
        display: none !important;
    }
    .dtp-alle-premium-main,
    .dtp-alle-premium-list,
    .dtp-alle-v3-results .dtp-alle-premium-list {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .dtp-alle-premium-results-head {
        padding: 14px !important;
        border-radius: 20px !important;
    }
    .dtp-alle-premium-results-head h2 {
        font-size: clamp(24px, 8vw, 34px) !important;
        line-height: 1.08 !important;
    }
    .dtp-alle-premium-head-meta,
    .dtp-alle-active-chips {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 7px !important;
    }
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium,
    .dtp-tender-card-premium {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        padding: 17px 13px 17px 19px !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        transform: none !important;
    }
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium:hover,
    .dtp-tender-card-premium:hover {
        transform: translateY(-2px) !important;
    }
    .dtp-alle-v3-results .dtp-alle-premium-list .dtp-tender-card-premium h3,
    .dtp-tender-card-premium h3 {
        font-size: clamp(21px, 6.8vw, 30px) !important;
        line-height: 1.1 !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }
    .dtp-tender-card-context,
    .dtp-tender-card-facts,
    .dtp-tender-card-footer {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .dtp-tender-detail-button {
        width: 100% !important;
        justify-content: center !important;
    }
}


/* === 0.4.2l mobile only: hide sticky side elements on Alle Tender === */
@media (max-width: 760px) {
    body.dtp-has-alle-tender-page .dtai-floating,
    body.dtp-has-alle-tender-page .dtp-dashboard-home-return,
    body.dtp-has-alle-tender-page .dtp-alle-v3-hero-panel,
    body.dtp-has-alle-tender-page .dtp-alle-premium-sidebar,
    body.dtp-has-alle-tender-page .dtp-alle-sidebar-card {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    body.dtp-has-alle-tender-page {
        overflow-x: hidden !important;
    }
    body.dtp-has-alle-tender-page .dtp-alle-tender-page-v2,
    body.dtp-has-alle-tender-page .dtp-alle-tender-page-v3,
    body.dtp-has-alle-tender-page .dtp-alle-v3-hero,
    body.dtp-has-alle-tender-page .dtp-alle-v3-search,
    body.dtp-has-alle-tender-page .dtp-alle-v3-results {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}


/* === 0.4.2m search box live top categories === */
.dtp-alle-v3-top-categories-wrap {
    display: none !important;
}
.dtp-search-live-top-categories {
    margin-top: 14px;
    padding: 12px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 4% 0%, rgba(255,216,106,.18), transparent 35%),
        linear-gradient(135deg, rgba(7,17,38,.88), rgba(12,31,66,.78));
    border: 1px solid rgba(255,216,106,.24);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 16px 36px rgba(3,7,18,.16);
}
.dtp-search-live-top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 10px;
}
.dtp-search-live-top-head strong {
    color: #fff;
    font-size: 14px;
    font-weight: 1000;
    letter-spacing: -.01em;
}
.dtp-search-live-top-head span {
    color: rgba(255,245,196,.80);
    font-size: 11px;
    font-weight: 850;
}
.dtp-search-live-top-track {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dtp-search-live-top-card {
    flex: 1 1 150px;
    min-width: 142px;
    max-width: 230px;
    min-height: 54px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 17px;
    color: #071126 !important;
    text-decoration: none !important;
    background:
        linear-gradient(90deg, rgba(201,21,46,.86) 0 4px, transparent 4px),
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.96), transparent 32%),
        linear-gradient(145deg, #fffaf0, #fff1cf 60%, #e8cc8b);
    border: 1px solid rgba(255,216,106,.48);
    outline: 1px solid rgba(7,17,38,.08);
    outline-offset: -4px;
    box-shadow: 0 7px 0 rgba(113,79,31,.14), 0 15px 32px rgba(7,17,38,.18), inset 0 1px 0 rgba(255,255,255,.92);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.dtp-search-live-top-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,21,46,.58);
    box-shadow: 0 10px 0 rgba(113,79,31,.18), 0 25px 54px rgba(7,17,38,.24), inset 0 1px 0 rgba(255,255,255,.96);
}
.dtp-search-live-top-count {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffdf73;
    background: #071126;
    border: 1px solid rgba(255,216,106,.50);
    font-size: 12px;
    font-weight: 1000;
    box-shadow: 0 8px 18px rgba(7,17,38,.18);
}
.dtp-search-live-top-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.dtp-search-live-top-copy strong {
    color: #071126;
    font-size: 13px;
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dtp-search-live-top-copy em {
    color: rgba(7,17,38,.62);
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}
@media (max-width: 760px) {
    .dtp-search-live-top-categories {
        margin-top: 12px;
        padding: 10px;
        border-radius: 18px;
    }
    .dtp-search-live-top-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        margin-bottom: 8px;
    }
    .dtp-search-live-top-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 2px 8px 0;
        scroll-snap-type: x proximity;
    }
    .dtp-search-live-top-track::-webkit-scrollbar {
        height: 5px;
    }
    .dtp-search-live-top-track::-webkit-scrollbar-thumb {
        background: rgba(255,216,106,.42);
        border-radius: 999px;
    }
    .dtp-search-live-top-card {
        flex: 0 0 188px;
        min-width: 188px;
        max-width: 188px;
        scroll-snap-align: start;
    }
}


/* === 0.4.2n category system sync === */
.dtp-category-select-wrap select option[hidden] {
    display: none;
}


/* === 0.4.2o Search Live Top Kategorien dark icon polish === */
.dtp-search-live-top-categories-icons[data-dtp-search-live-top-categories="0.4.2o"] {
    margin-top: 14px;
    padding: 13px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255,216,106,.10), transparent 32%),
        linear-gradient(135deg, rgba(7,17,38,.78), rgba(9,22,49,.68));
    border: 1px solid rgba(255,216,106,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.14);
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-head strong {
    color: #fff;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: -.01em;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-head span {
    color: rgba(255,255,255,.58);
    font-size: 11px;
    font-weight: 800;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-card {
    position: relative;
    min-height: 64px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 11px 10px 12px;
    border-radius: 17px;
    text-decoration: none !important;
    background:
        linear-gradient(90deg, #c9152e 0 5px, transparent 5px),
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,216,106,.045));
    border: 1px solid rgba(255,216,106,.31);
    color: #fff !important;
    box-shadow:
        0 8px 0 rgba(0,0,0,.12),
        0 18px 42px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.11);
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,216,106,.66);
    background:
        linear-gradient(90deg, #c9152e 0 5px, transparent 5px),
        linear-gradient(135deg, rgba(255,216,106,.12), rgba(255,255,255,.08));
    box-shadow:
        0 11px 0 rgba(0,0,0,.14),
        0 28px 58px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.15);
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #071126;
    background:
        radial-gradient(circle at 25% 15%, rgba(255,255,255,.72), transparent 30%),
        linear-gradient(145deg, #ffe98a, #f2b632 58%, #bf7a08);
    border: 1px solid rgba(255,216,106,.74);
    box-shadow:
        0 10px 22px rgba(242,182,50,.18),
        inset 0 1px 0 rgba(255,255,255,.74),
        inset 0 -2px 0 rgba(7,17,38,.16);
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-copy strong {
    color: #fff;
    font-size: 12px;
    line-height: 1.08;
    font-weight: 1000;
    letter-spacing: -.015em;
    white-space: normal;
}
.dtp-search-live-top-categories-icons .dtp-search-live-top-copy em {
    color: rgba(255,216,106,.86);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}
@media (max-width: 1180px) {
    .dtp-search-live-top-categories-icons .dtp-search-live-top-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .dtp-search-live-top-categories-icons {
        padding: 11px;
        border-radius: 19px;
    }
    .dtp-search-live-top-categories-icons .dtp-search-live-top-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
    .dtp-search-live-top-categories-icons .dtp-search-live-top-track {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dtp-search-live-top-categories-icons .dtp-search-live-top-card {
        min-height: 58px;
        grid-template-columns: 38px minmax(0, 1fr);
        border-radius: 16px;
    }
}


/* === 0.4.2p mobile stack for Search Live Top Kategorien === */
@media (max-width: 820px) {
    .dtp-search-live-top-categories-icons[data-dtp-search-live-top-categories="0.4.2o"] .dtp-search-live-top-track,
    .dtp-search-live-top-categories-icons[data-dtp-search-live-top-categories="0.4.2p"] .dtp-search-live-top-track,
    .dtp-search-live-top-track {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .dtp-search-live-top-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 58px !important;
    }
    .dtp-search-live-top-head {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
}

.dtp-inline-category-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.dtp-inline-category-form select {
    min-width: 220px;
}


/* v0.4.2t clean public company profile page */
body.dtp-public-company-clean-page{
    margin:0;
    background:#f3e0bf;
}
body.dtp-public-company-clean-page .dtp-public-company-wrap{
    margin-top:0;
    padding-top:72px;
}
.dtp-public-company-home-button{
    position:fixed;
    top:18px;
    left:18px;
    z-index:9999;
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:42px;
    padding:0 15px;
    border-radius:999px;
    color:#071426!important;
    background:linear-gradient(145deg,#fff3bd,#f5c84b);
    border:1px solid rgba(126,83,10,.38);
    box-shadow:0 16px 36px rgba(7,25,45,.18), inset 0 1px 0 rgba(255,255,255,.76);
    text-decoration:none!important;
    font-size:13px;
    line-height:1;
    font-weight:950;
    letter-spacing:.02em;
}
.dtp-public-company-home-button:hover,
.dtp-public-company-home-button:focus{
    transform:translateY(-1px);
    color:#071426!important;
    box-shadow:0 20px 44px rgba(7,25,45,.22), inset 0 1px 0 rgba(255,255,255,.82);
}
@media(max-width:760px){
    .dtp-public-company-home-button{top:12px;left:12px;min-height:38px;padding:0 13px;font-size:12px;}
    body.dtp-public-company-clean-page .dtp-public-company-wrap{padding-top:62px;}
}


/* v0.4.2u: clean public company profile route + readable cards */
body.dtp-public-company-clean-page{
    overflow-x:hidden;
    color:#ffffff;
}
body.dtp-public-company-clean-page .dtp-public-company-wrap.dtp-public-company-premium{
    min-height:100vh!important;
    padding-top:74px!important;
}
body.dtp-public-company-clean-page .dtp-public-company-about-card,
body.dtp-public-company-clean-page .dtp-public-company-facts-card,
body.dtp-public-company-clean-page .dtp-public-company-not-found{
    background:linear-gradient(145deg, rgba(7,25,50,.98), rgba(4,15,31,.96))!important;
    color:#ffffff!important;
}
body.dtp-public-company-clean-page .dtp-public-company-about-card h2,
body.dtp-public-company-clean-page .dtp-public-company-about-card p,
body.dtp-public-company-clean-page .dtp-public-company-facts-card,
body.dtp-public-company-clean-page .dtp-public-company-facts-card *{
    color:#ffffff!important;
}
body.dtp-public-company-clean-page .dtp-public-company-about-card p,
body.dtp-public-company-clean-page .dtp-form-note{
    color:rgba(255,255,255,.78)!important;
}


/* === 0.4.2y full-width standalone Live Top-Kategorien + Ausgewählte Tender === */
.dtp-search-live-top-categories-icons.dtp-search-live-top-full {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1560px, calc(100vw - 28px));
    max-width: none;
    margin: clamp(18px, 3vw, 34px) 0;
    padding: clamp(14px, 2.1vw, 22px);
    border-radius: clamp(22px, 2.3vw, 34px);
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head strong {
    font-size: clamp(14px, 1.2vw, 18px);
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head span {
    font-size: clamp(11px, .9vw, 13px);
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-track {
    max-width: 1420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: clamp(10px, 1.2vw, 16px);
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-card {
    min-height: 74px;
    padding: 12px 14px 12px 14px;
    grid-template-columns: 46px minmax(0, 1fr);
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-copy strong {
    font-size: clamp(12px, 1vw, 15px);
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-copy em {
    font-size: clamp(11px, .9vw, 13px);
}

.dtp-featured-showcase.dtp-featured-showcase-full {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1560px, calc(100vw - 28px));
    max-width: none;
    margin: clamp(22px, 3vw, 42px) 0;
}
.dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-head,
.dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-static-grid,
.dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-actions {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
}
.dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-carousel {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 760px) {
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    .dtp-featured-showcase.dtp-featured-showcase-full {
        width: min(100vw - 18px, 100%);
        border-radius: 22px;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-track {
        grid-template-columns: 1fr;
    }
}


/* === 0.4.2z mobile full-width responsive polish === */
.dtp-search-live-top-categories-icons.dtp-search-live-top-full,
.dtp-featured-showcase.dtp-featured-showcase-full {
    box-sizing: border-box;
}
.dtp-search-live-top-categories-icons.dtp-search-live-top-full *,
.dtp-featured-showcase.dtp-featured-showcase-full * {
    box-sizing: border-box;
}
@media (min-width: 761px) and (max-width: 1040px) {
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    .dtp-featured-showcase.dtp-featured-showcase-full {
        width: min(1280px, calc(100vw - 24px));
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-track {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-card {
        max-width: none !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-static-grid,
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-latest-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-carousel-slide {
        flex-basis: calc((100% - 20px) / 2) !important;
    }
}
@media (max-width: 760px) {
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    .dtp-featured-showcase.dtp-featured-showcase-full {
        left: auto !important;
        transform: none !important;
        width: auto !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw + 8px) !important;
        margin-right: calc(50% - 50vw + 8px) !important;
        border-radius: 22px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full {
        padding: 12px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head {
        align-items: flex-start !important;
        gap: 4px !important;
        margin-bottom: 10px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head strong {
        font-size: 14px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head span {
        font-size: 11px !important;
        line-height: 1.25 !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-track {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 58px !important;
        padding: 10px 11px 10px 12px !important;
        grid-template-columns: 38px minmax(0, 1fr) !important;
        border-radius: 16px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 13px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-copy strong {
        font-size: 12px !important;
        line-height: 1.12 !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-copy em {
        font-size: 11px !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full {
        padding: 18px 14px 20px !important;
        border-radius: 24px !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-head {
        margin-bottom: 16px !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-head h2 {
        font-size: clamp(24px, 8vw, 34px) !important;
        line-height: 1.05 !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-head p:not(.dtp-gold-clipser) {
        font-size: 14px !important;
        line-height: 1.42 !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-static-grid,
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-latest-card-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        max-width: 100% !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-carousel {
        max-width: 100% !important;
        padding: 0 34px 28px !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-carousel-slide {
        flex: 0 0 100% !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-premium-card {
        min-height: auto !important;
        padding: 18px !important;
        border-radius: 20px !important;
    }
}
@media (max-width: 420px) {
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    .dtp-featured-showcase.dtp-featured-showcase-full {
        margin-left: calc(50% - 50vw + 6px) !important;
        margin-right: calc(50% - 50vw + 6px) !important;
    }
    .dtp-search-live-top-categories-icons.dtp-search-live-top-full {
        padding: 10px !important;
    }
    .dtp-featured-showcase.dtp-featured-showcase-full {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}


/* === 0.4.2aa Force real full-width for standalone Live Top-Kategorien and Ausgewählte Tender === */
body .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
body .dtp-featured-showcase.dtp-featured-showcase-full{
    position:relative!important;
    left:auto!important;
    right:auto!important;
    transform:none!important;
    width:100vw!important;
    max-width:100vw!important;
    min-width:100vw!important;
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
    box-sizing:border-box!important;
    clear:both!important;
}
body .dtp-search-live-top-categories-icons.dtp-search-live-top-full{
    padding-left:max(18px, calc((100vw - 1420px) / 2))!important;
    padding-right:max(18px, calc((100vw - 1420px) / 2))!important;
    border-radius:0!important;
}
body .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head,
body .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-track{
    max-width:1420px!important;
    margin-left:auto!important;
    margin-right:auto!important;
}
body .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-card{
    max-width:none!important;
}
body .dtp-featured-showcase.dtp-featured-showcase-full{
    padding-left:max(18px, calc((100vw - 1420px) / 2))!important;
    padding-right:max(18px, calc((100vw - 1420px) / 2))!important;
    border-radius:0!important;
}
body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-head,
body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-static-grid,
body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-actions,
body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-carousel{
    max-width:1420px!important;
    margin-left:auto!important;
    margin-right:auto!important;
}
body .entry-content .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
body .wp-block-group .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
body .elementor-widget-container .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
body .entry-content .dtp-featured-showcase.dtp-featured-showcase-full,
body .wp-block-group .dtp-featured-showcase.dtp-featured-showcase-full,
body .elementor-widget-container .dtp-featured-showcase.dtp-featured-showcase-full{
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
}
body .elementor-widget-container:has(.dtp-search-live-top-categories-icons.dtp-search-live-top-full),
body .elementor-widget-container:has(.dtp-featured-showcase.dtp-featured-showcase-full),
body .wp-block-group:has(.dtp-search-live-top-categories-icons.dtp-search-live-top-full),
body .wp-block-group:has(.dtp-featured-showcase.dtp-featured-showcase-full){
    overflow:visible!important;
}
@media (min-width: 761px) and (max-width: 1040px){
    body .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    body .dtp-featured-showcase.dtp-featured-showcase-full{
        width:100vw!important;
        max-width:100vw!important;
        min-width:100vw!important;
    }
}
@media (max-width:760px){
    body .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    body .dtp-featured-showcase.dtp-featured-showcase-full{
        width:100vw!important;
        max-width:100vw!important;
        min-width:100vw!important;
        margin-left:calc(50% - 50vw)!important;
        margin-right:calc(50% - 50vw)!important;
        border-radius:0!important;
    }
    body .dtp-search-live-top-categories-icons.dtp-search-live-top-full,
    body .dtp-featured-showcase.dtp-featured-showcase-full{
        padding-left:14px!important;
        padding-right:14px!important;
    }
    body .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-head,
    body .dtp-search-live-top-categories-icons.dtp-search-live-top-full .dtp-search-live-top-track,
    body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-head,
    body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-static-grid,
    body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-showcase-actions,
    body .dtp-featured-showcase.dtp-featured-showcase-full .dtp-featured-carousel{
        max-width:100%!important;
    }
}


/* === 0.4.2ab Auth pages full screen / centered responsive polish === */
.dtp-register-wrap.dtp-login-page-full,
.dtp-register-wrap.dtp-register-page-full {
    isolation: isolate;
    overflow: hidden;
    left: 50% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding-left: max(18px, env(safe-area-inset-left)) !important;
    padding-right: max(18px, env(safe-area-inset-right)) !important;
}
.dtp-register-wrap.dtp-login-page-full {
    min-height: max(620px, calc(100dvh - 150px));
    align-items: center !important;
    justify-content: center !important;
    padding-top: clamp(34px, 6vh, 72px) !important;
    padding-bottom: clamp(34px, 6vh, 72px) !important;
}
.dtp-register-wrap.dtp-register-page-full {
    min-height: max(720px, calc(100dvh - 150px));
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: clamp(34px, 5vh, 64px) !important;
    padding-bottom: clamp(42px, 7vh, 86px) !important;
}
.dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
.dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    box-sizing: border-box;
}
.dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card {
    width: min(1120px, calc(100vw - 36px)) !important;
    max-width: 1120px !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .85fr);
    align-items: center;
}
.dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
    width: min(1280px, calc(100vw - 36px)) !important;
    max-width: 1280px !important;
}
.dtp-register-wrap.dtp-login-page-full::before,
.dtp-register-wrap.dtp-register-page-full::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.03) 18%, rgba(255,255,255,.03) 82%, rgba(255,255,255,.12)),
        radial-gradient(circle at 12% 48%, rgba(245,200,75,.14), transparent 34%),
        radial-gradient(circle at 86% 42%, rgba(20,83,155,.12), transparent 38%);
    pointer-events: none;
}
.dtp-register-wrap.dtp-login-page-full .dtp-front-card,
.dtp-register-wrap.dtp-register-page-full .dtp-front-card {
    box-shadow: 0 30px 90px rgba(5,13,28,.30), 0 0 0 1px rgba(245,200,75,.17) inset;
}
@media (min-width: 1181px) {
    .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card {
        min-height: 410px;
    }
}
@media (max-width: 1180px) {
    .dtp-register-wrap.dtp-login-page-full,
    .dtp-register-wrap.dtp-register-page-full {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
        width: min(100%, calc(100vw - 36px)) !important;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 820px) {
    .dtp-register-wrap.dtp-login-page-full,
    .dtp-register-wrap.dtp-register-page-full {
        min-height: auto;
        padding-top: 22px !important;
        padding-bottom: 34px !important;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
        width: min(100%, calc(100vw - 24px)) !important;
        padding: 22px 18px !important;
        border-radius: 22px !important;
    }
    .dtp-register-wrap.dtp-register-page-full .dtp-register-head {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
    .dtp-register-wrap.dtp-register-page-full .dtp-register-section {
        border-radius: 18px;
    }
}
@media (max-width: 560px) {
    .dtp-register-wrap.dtp-login-page-full,
    .dtp-register-wrap.dtp-register-page-full {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
        width: calc(100vw - 24px) !important;
        padding: 20px 16px !important;
        border-radius: 20px !important;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-login-side {
        gap: 12px;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-login-side-box,
    .dtp-register-wrap.dtp-register-page-full .dtp-register-head-box,
    .dtp-register-wrap.dtp-register-page-full .dtp-register-section {
        padding: 16px !important;
    }
    .dtp-register-wrap.dtp-register-page-full .dtp-register-section-title {
        gap: 10px;
    }
    .dtp-register-wrap.dtp-register-page-full .dtp-register-section-title > span {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }
    .dtp-register-wrap.dtp-login-page-full .dtp-front-card h2,
    .dtp-register-wrap.dtp-register-page-full .dtp-front-card h2 {
        font-size: clamp(26px, 8vw, 34px);
    }
}


/* === 0.4.2ac Auth page real fullscreen hard fix === */
html.dtp-auth-fullscreen-hard,
body.dtp-auth-fullscreen-hard {
    overflow-x: hidden !important;
}
body.dtp-auth-fullscreen-hard .dtp-auth-fullscreen-host {
    max-width: none !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
    overflow-x: visible !important;
}
body.dtp-auth-fullscreen-hard .dtp-auth-fullscreen-target,
body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full,
body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full {
    position: relative !important;
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full,
body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full {
    min-height: clamp(560px, 74vh, 860px) !important;
    padding: clamp(32px, 5vh, 70px) max(18px, env(safe-area-inset-left)) clamp(38px, 6vh, 86px) max(18px, env(safe-area-inset-right)) !important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full,
body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full {
    min-height: clamp(720px, 82vh, 1180px) !important;
    padding: clamp(28px, 4.5vh, 62px) max(18px, env(safe-area-inset-left)) clamp(44px, 7vh, 92px) max(18px, env(safe-area-inset-right)) !important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card {
    width: min(1180px, calc(100vw - 44px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr) !important;
    align-items: stretch !important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card,
body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
    width: min(1380px, calc(100vw - 44px)) !important;
    max-width: 1380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full::before,
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full::before {
    background:
        radial-gradient(circle at 14% 44%, rgba(245,200,75,.18), transparent 34%),
        radial-gradient(circle at 86% 40%, rgba(20,83,155,.18), transparent 40%),
        linear-gradient(135deg, rgba(255,246,230,.92), rgba(255,255,255,.82)) !important;
}
@media (max-width: 1100px) {
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card {
        grid-template-columns: 1fr !important;
        width: min(760px, calc(100vw - 34px)) !important;
    }
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card,
    body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
        width: min(980px, calc(100vw - 34px)) !important;
    }
}
@media (max-width: 760px) {
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full,
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full,
    body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full,
    body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full {
        min-height: auto !important;
        padding: 18px 12px 30px !important;
    }
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card,
    body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        padding: 20px 16px !important;
        border-radius: 22px !important;
    }
}


/* === 0.4.2ad Auth pages true wide layout + header hide === */
html.dtp-auth-fullscreen-hard,
body.dtp-auth-fullscreen-hard{
    overflow-x:hidden!important;
}
body.dtp-auth-fullscreen-hard .dt-topzone,
body.dtp-auth-fullscreen-hard .dt-topzone-inner,
body.dtp-auth-fullscreen-hard .dt-topzone-tender,
body.dtp-auth-fullscreen-hard .entry-header,
body.dtp-auth-fullscreen-hard .page-header,
body.dtp-auth-fullscreen-hard .wp-block-post-title,
body.dtp-auth-fullscreen-hard h1.entry-title,
body:has(.dtp-register-wrap.dtp-login-page-full) .dt-topzone,
body:has(.dtp-register-wrap.dtp-register-page-full) .dt-topzone,
body:has(.dtp-register-wrap.dtp-login-page-full) .entry-header,
body:has(.dtp-register-wrap.dtp-register-page-full) .entry-header,
body:has(.dtp-register-wrap.dtp-login-page-full) .page-header,
body:has(.dtp-register-wrap.dtp-register-page-full) .page-header,
body:has(.dtp-register-wrap.dtp-login-page-full) .wp-block-post-title,
body:has(.dtp-register-wrap.dtp-register-page-full) .wp-block-post-title{
    display:none!important;
    height:0!important;
    min-height:0!important;
    margin:0!important;
    padding:0!important;
    overflow:hidden!important;
}
body.dtp-auth-fullscreen-hard .site,
body.dtp-auth-fullscreen-hard .site-content,
body.dtp-auth-fullscreen-hard .content-area,
body.dtp-auth-fullscreen-hard main,
body.dtp-auth-fullscreen-hard article,
body.dtp-auth-fullscreen-hard .entry-content,
body.dtp-auth-fullscreen-hard .wp-block-post-content,
body.dtp-auth-fullscreen-hard .elementor,
body.dtp-auth-fullscreen-hard .elementor-section,
body.dtp-auth-fullscreen-hard .elementor-container,
body.dtp-auth-fullscreen-hard .elementor-column,
body.dtp-auth-fullscreen-hard .elementor-widget-wrap,
body.dtp-auth-fullscreen-hard .elementor-widget-container,
body.dtp-auth-fullscreen-hard .dtp-auth-fullscreen-host{
    width:100%!important;
    max-width:none!important;
    min-width:0!important;
    margin-left:0!important;
    margin-right:0!important;
    padding-left:0!important;
    padding-right:0!important;
    transform:none!important;
    overflow:visible!important;
    box-sizing:border-box!important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full,
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full,
body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full,
body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full{
    position:relative!important;
    left:50%!important;
    width:100vw!important;
    max-width:100vw!important;
    min-width:100vw!important;
    margin-left:-50vw!important;
    margin-right:0!important;
    margin-top:0!important;
    padding-left:clamp(16px,2.3vw,34px)!important;
    padding-right:clamp(16px,2.3vw,34px)!important;
    background:
        radial-gradient(circle at 12% 46%, rgba(245,200,75,.20), transparent 34%),
        radial-gradient(circle at 86% 40%, rgba(20,83,155,.19), transparent 42%),
        linear-gradient(135deg, #fff3d6 0%, #fff8e8 48%, #fff2dc 100%)!important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full,
body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full{
    min-height:calc(100dvh - 86px)!important;
    padding-top:clamp(24px,4vh,48px)!important;
    padding-bottom:clamp(28px,5vh,62px)!important;
    align-items:center!important;
    justify-content:center!important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full,
body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full{
    min-height:calc(100dvh - 86px)!important;
    padding-top:clamp(22px,3.5vh,44px)!important;
    padding-bottom:clamp(34px,5vh,70px)!important;
    align-items:flex-start!important;
    justify-content:center!important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card{
    width:calc(100vw - clamp(32px,4.6vw,68px))!important;
    max-width:1540px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    display:grid!important;
    grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr)!important;
    align-items:stretch!important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card,
body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card{
    width:calc(100vw - clamp(32px,4.6vw,68px))!important;
    max-width:1580px!important;
    margin-left:auto!important;
    margin-right:auto!important;
}
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full::before,
body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full::before{
    opacity:.75!important;
}
@media (max-width:1100px){
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card{
        grid-template-columns:1fr!important;
        width:min(860px, calc(100vw - 34px))!important;
    }
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card,
    body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card{
        width:min(1040px, calc(100vw - 34px))!important;
    }
}
@media (max-width:760px){
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full,
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full,
    body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full,
    body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full{
        min-height:auto!important;
        padding:18px 12px 30px!important;
    }
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    body.dtp-auth-fullscreen-hard .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card,
    body:has(.dtp-register-wrap.dtp-login-page-full) .dtp-register-wrap.dtp-login-page-full .dtp-login-premium-card,
    body:has(.dtp-register-wrap.dtp-register-page-full) .dtp-register-wrap.dtp-register-page-full .dtp-register-premium-card{
        width:calc(100vw - 24px)!important;
        max-width:calc(100vw - 24px)!important;
        padding:20px 16px!important;
        border-radius:22px!important;
    }
}
