/* ==========================================================================
   DTC Jobs Module — Frontend Styles
   Prefix: dtc-job- / dtc-footer-
   ========================================================================== */

/* ==========================================================================
   1. SHARED UTILITIES
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

.dtc-job-page-wrap *,
.dtc-job-page-wrap *::before,
.dtc-job-page-wrap *::after {
    box-sizing: border-box;
}

/* Background SVG (set via DTC_JOBS_BG_SVG constant) */
.dtc-job-page-wrap.dtc-job-has-bg {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;        /* change to 'contain' or a fixed size if needed */
    background-attachment: scroll; /* change to 'fixed' for parallax effect */
}

.dtc-job-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

/* ==========================================================================
   2. JOB LIST — card design
   ========================================================================== */

.dtc-job-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.dtc-job-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #C0AB94;
    border-radius: 14px;
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dtc-job-list-item:hover,
.dtc-job-list-item:focus-visible {
    border-color: #c0ab94;
    box-shadow: 0 4px 20px rgba(192, 171, 148, 0.18);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.dtc-job-list-item:hover .dtc-job-list-arrow {
    background-color: #a8947f;
    transform: scale(1.08);
}

.dtc-job-list-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dtc-job-list-title {
    font-family: arboria, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-transform: lowercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dtc-job-list-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: arboria, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
}

.dtc-job-list-dept {
    color: rgba(255, 255, 255, 0.55);
}

.dtc-job-list-sep {
    color: #ffffff;
}

.dtc-job-list-loc {
    color: #ffffff;
}

.dtc-job-list-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.dtc-job-list-arrow svg {
    display: block;
}

/* Open application — dashed CTA box */

.dtc-job-open-application {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1.5px dashed #b9a68f;
    border-radius: 14px;
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.dtc-job-open-application:hover,
.dtc-job-open-application:focus-visible {
    border-color: #8f7c66;
    background-color: rgba(192, 171, 148, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.dtc-job-open-application-title {
    font-family: arboria, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1109;
    line-height: 1.3;
    text-transform: lowercase;
}

.dtc-job-open-application-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #b9a68f;
    background-color: transparent;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dtc-job-open-application-arrow svg {
    display: block;
    width: 14px;
    height: 14px;
}

.dtc-job-open-application:hover .dtc-job-open-application-arrow {
    background-color: #1a1109;
    border-color: #1a1109;
    transform: scale(1.06);
}

.dtc-job-open-application:hover .dtc-job-open-application-arrow svg {
    stroke: #ffffff;
}

.dtc-job-no-jobs {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 24px 0;
}

/* ==========================================================================
   3. BREADCRUMB
   ========================================================================== */

.dtc-job-breadcrumb {
    padding: 28px 0 0;
    margin-top:10vh;
}

.dtc-job-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dtc-job-breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-family: arboria, sans-serif;
    font-weight: 500;
    color: #aaa;
    gap: 6px;
}

.dtc-job-breadcrumb-list a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.18s ease;
}

.dtc-job-breadcrumb-list a:hover { color: #1a1109; }

.dtc-job-breadcrumb-sep {
    color: #d0c8c0;
    font-size: 0.7rem;
}

.dtc-job-breadcrumb-list [aria-current="page"] {
    color: #555;
    font-weight: 500;
    text-transform: lowercase;
}

/* ==========================================================================
   3b. TITLE SECTION — full-width, 1 column
   ========================================================================== */

.dtc-job-title-section {
    padding: 28px 0 0;
}

.dtc-job-title {
    font-family: arboria, sans-serif;
    font-size: clamp(52px, 6vw, 90px);
    font-weight: 500;
    color: #1a1109;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    max-width: 600px;
}

.dtc-job-header-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dtc-job-location {
    font-family: arboria, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #1a1109;
    letter-spacing: 0;
}

.dtc-job-lang-badge,
.dtc-job-dept-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 99px;
    font-family: arboria, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.5;
}

.dtc-job-lang-badge {
    background-color: #c0ab94;
    color: #ffffff;
}

.dtc-job-dept-badge {
    background-color: #ede6dc;
    color: #3d2b1f;
    text-transform: lowercase;
}

/* ==========================================================================
   4. HERO — 2-column: [process box] | [meta + content]
   Starts BELOW the full-width title section.
   ========================================================================== */

.dtc-job-hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 72px;
    align-items: start;
    padding: 36px 0 64px;
}

.dtc-job-hero-left {
    /* process box fills the left column */
}

/* Process box */

.dtc-job-process-box {
    background-color: #c0ab94;
    border-radius: 12px;
    padding: 24px 22px 20px;
}

.dtc-job-process-title {
    font-family: arboria, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 14px;
}

.dtc-job-process-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    counter-reset: dtc-step;
}

.dtc-job-process-list li {
    counter-increment: dtc-step;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: arboria, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    line-height: 1.4;
}

.dtc-job-process-list li:last-child { border-bottom: none; }

.dtc-job-process-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.dtc-job-process-list li a:hover {
    opacity: 0.7;
}

.dtc-job-process-list li::before {
    content: counter(dtc-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.dtc-job-sidebar-cta {
    display: block;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 99px;
    padding: 10px 20px;
    font-family: arboria, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.dtc-job-sidebar-cta:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
    text-decoration: none;
}

/* ---- Right column ---- */

.dtc-job-hero-right {
    padding-top: 4px;
}

/* Meta: clock + salary stacked */

.dtc-job-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 32px;
}

.dtc-job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #555;
    font-family: arboria, sans-serif;
    font-weight: 500;
}

.dtc-job-meta-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #c0ab94;
}

.dtc-job-meta-text {
    font-family: arboria, sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

/* "what do you need?" section */

.dtc-job-content-section { margin-bottom: 24px; }

.dtc-job-content-heading {
    font-family: arboria, sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 500;
    color: #1a1109;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.dtc-job-wysiwyg {
    color: #555;
    line-height: 1.72;
    font-size: 1.05rem;
    font-family: arboria, sans-serif;
    font-weight: 500;
}

.dtc-job-wysiwyg p { margin: 0 0 0.85em; }
.dtc-job-wysiwyg ul,
.dtc-job-wysiwyg ol { padding-left: 1.4em; margin: 0 0 0.85em; }
.dtc-job-wysiwyg li { margin-bottom: 0.32em; }
.dtc-job-wysiwyg strong, .dtc-job-wysiwyg b { color: #1a1109; }

.dtc-job-intro {
    margin-top: 14px;
    color: #555;
    line-height: 1.72;
    font-size: 1.05rem;
    font-family: arboria, sans-serif;
    font-weight: 500;
}

.dtc-job-intro p { margin: 0 0 0.85em; }

/* ==========================================================================
   5. FULL-WIDTH SPLIT SECTIONS — "what you bring" / "what to expect"
   ========================================================================== */

.dtc-job-split-section {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 72px;
    align-items: start;
    padding: 56px 0;
    border-top: 1px solid #ede6dd;
}

.dtc-job-split-label {
    position: sticky;
    top: 32px;
}

.dtc-job-split-heading {
    font-family: arboria, sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 500;
    color: #1a1109;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   6. CHECKMARK LIST
   ========================================================================== */

.dtc-job-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dtc-job-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #3d3028;
    font-size: 1.05rem;
    font-family: arboria, sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

.dtc-job-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
}

/* ==========================================================================
   7. GALLERY — full-width, 3 columns, rounded
   ========================================================================== */

.dtc-job-gallery-section {
    padding: 0 32px;
    max-width: 100%;
    margin: 0 auto;
}

.dtc-job-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dtc-job-gallery-item {
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    background-color: #ede6dc;
}

.dtc-job-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dtc-job-gallery-item:hover .dtc-job-gallery-img { transform: scale(1.04); }

/* ==========================================================================
   8. OUTRO & APPLY BUTTON
   ========================================================================== */

.dtc-job-outro-section {
    padding: 56px 0 72px;
    border-top: 1px solid #ede6dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dtc-job-apply-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dtc-job-outro {
    color: #555;
    line-height: 1.72;
    font-size: 1.05rem;
    font-family: arboria, sans-serif;
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 28px;
}

.dtc-job-outro p { margin: 0 0 0.85em; }

.dtc-job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c0ab94;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 99px;
    font-family: arboria, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0;
    transition: background-color 0.22s ease, transform 0.18s ease;
}

.dtc-job-apply-btn::after {
    content: '→';
    font-size: 1rem;
    line-height: 1;
}

/* Small mailto variant */
.dtc-job-apply-btn-sm {
    padding: 9px 20px;
    font-size: 0.85rem;
    gap: 8px;
}

.dtc-job-apply-btn-sm::after {
    font-size: 0.85rem;
}

.dtc-job-apply-btn:hover,
.dtc-job-apply-btn:focus-visible {
    background-color: #3d2b1f;
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

/* ==========================================================================
   9. DTC PRE-FOOTER — "how about we do a thing or six, together"
   ========================================================================== */

.dtc-prefooter {
    background: #ffffff;
    border-top: 1px solid #ede6dd;
    padding: 64px 0 56px;
}

.dtc-prefooter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* CTA copy */

.dtc-prefooter-cta {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dtc-prefooter-headline {
    font-family: 'Arboria', sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: #1a1109;
    letter-spacing: -0.025em;
    margin: 0;
}

.dtc-prefooter-headline em {
    font-style: normal;
    color: #c0956b;
}

.dtc-prefooter-headline strong {
    font-style: normal;
    color: #1400ff;
}

.dtc-prefooter-action {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dtc-prefooter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 99px;
    background-color: #1a1109;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.dtc-prefooter-btn:hover {
    background-color: #3d2b1f;
    color: #ffffff;
    text-decoration: none;
}

.dtc-prefooter-appt {
    font-size: 0.84rem;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dtc-prefooter-appt:hover { color: #1a1109; }

/* Nav columns */

.dtc-prefooter-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.dtc-prefooter-nav-col h4 {
    font-family: 'Arboria', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.06em;
    color: #1a1109;
    margin: 0 0 14px;
}

.dtc-prefooter-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.dtc-prefooter-nav-col li a {
    font-size: 0.84rem;
    color: #666;
    text-decoration: none;
    transition: color 0.18s ease;
}

.dtc-prefooter-nav-col li a:hover { color: #1a1109; }

/* Legal bar */

.dtc-prefooter-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid #ede6dd;
    margin-top: 44px;
}

.dtc-prefooter-legal-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: #1a1109;
    color: #ffffff;
    border-radius: 99px;
    padding: 7px 16px 7px 9px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.18s ease;
}

.dtc-prefooter-legal-link:hover {
    background-color: #3d2b1f;
    color: #ffffff;
    text-decoration: none;
}

.dtc-prefooter-legal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c0ab94;
    flex-shrink: 0;
}

/* ==========================================================================
   9b. OPEN APPLICATION FORM
   ========================================================================== */

.dtc-application {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 80px;
}

.dtc-application-intro {
    margin-bottom: 36px;
}

.dtc-application-title {
    font-family: arboria, sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 500;
    color: #1a1109;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.dtc-application-lead {
    font-family: arboria, sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    max-width: 560px;
    margin: 0;
}

/* Feedback blocks */

.dtc-application-success {
    background: #c0ab94;
    border-radius: 14px;
    padding: 32px;
    color: #ffffff;
}

.dtc-application-success h2 {
    font-family: arboria, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 8px;
    color: #ffffff;
}

.dtc-application-success p {
    margin: 0;
    font-family: arboria, sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

.dtc-application-errors {
    border: 1.5px solid #c98a6b;
    background: rgba(201, 138, 107, 0.08);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 28px;
    color: #8a4a2f;
    font-family: arboria, sans-serif;
    font-weight: 500;
}

.dtc-application-errors p { margin: 0 0 8px; font-weight: 700; }
.dtc-application-errors ul { margin: 0; padding-left: 1.2em; }
.dtc-application-errors li { margin-bottom: 4px; }

/* Form layout */

.dtc-application-card {
    background: #ffffff;
    border: 1px solid #ede6dd;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(26, 17, 9, 0.04);
}

.dtc-application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dtc-application-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dtc-application-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dtc-application-field label {
    font-family: arboria, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1109;
}

.dtc-req { color: #c0956b; }

.dtc-application-hint {
    font-weight: 500;
    color: #999;
}

.dtc-application-field input[type="text"],
.dtc-application-field input[type="email"],
.dtc-application-field input[type="tel"],
.dtc-application-field textarea {
    font-family: arboria, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #1a1109;
    background: #ffffff;
    border: 1.5px solid #ede6dd;
    border-radius: 12px;
    padding: 13px 16px;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dtc-application-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.dtc-application-field input:focus,
.dtc-application-field textarea:focus {
    outline: none;
    border-color: #c0ab94;
    box-shadow: 0 0 0 3px rgba(192, 171, 148, 0.18);
}

.dtc-application-field input[type="file"] {
    font-family: arboria, sans-serif;
    font-size: 0.95rem;
    color: #555;
    background: #ffffff;
    border: 1.5px dashed #c0ab94;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    cursor: pointer;
}

.dtc-application-consent {
    font-family: arboria, sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.5;
}

.dtc-application-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.dtc-application-consent input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #c0ab94;
}

.dtc-application-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: 4px;
}

/* Honeypot — visually hidden but present for bots */
.dtc-application-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   10. RESPONSIVE — Tablet (≤ 960px)
   ========================================================================== */

@media (max-width: 960px) {
    .dtc-job-container,
    .dtc-job-gallery-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .dtc-job-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 44px;
    }

    .dtc-job-split-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 40px 0;
    }

    .dtc-job-split-label { position: static; }

    .dtc-job-gallery { gap: 10px; }

    .dtc-prefooter-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .dtc-prefooter-nav {
        grid-template-columns: repeat(3, auto);
        gap: 28px;
    }
}

/* ==========================================================================
   11. RESPONSIVE — Mobile (≤ 620px)
   ========================================================================== */

@media (max-width: 620px) {
    .dtc-job-container,
    .dtc-job-gallery-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dtc-job-hero { padding: 20px 0 32px; }

    .dtc-job-title { font-size: 1.9rem; }

    .dtc-job-split-heading { font-size: 1.5rem; }

    .dtc-job-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dtc-job-gallery-item { aspect-ratio: 16 / 9; }

    /* List: stack title above meta on small screens */
    .dtc-job-list-content { flex-direction: column; align-items: flex-start; gap: 4px; }
    .dtc-job-list-title { white-space: normal; }
    .dtc-job-list-meta { white-space: normal; }

    .dtc-job-list-item { padding: 14px 16px; }

    .dtc-job-open-application { padding: 14px 16px; }

    .dtc-job-outro-section { padding: 36px 0 48px; }

    .dtc-job-apply-btn {
        width: 100%;
        justify-content: center;
    }

    .dtc-prefooter { padding: 44px 0 36px; }

    .dtc-prefooter-nav {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .dtc-application { padding: 32px 0 48px; }
    .dtc-application-card { padding: 24px; border-radius: 14px; }
    .dtc-application-row { grid-template-columns: 1fr; gap: 20px; }
    .dtc-application-submit { width: 100%; }

    .dtc-prefooter-headline { font-size: 1.6rem; }

    .dtc-prefooter-legal { gap: 7px; }
}