       :root {
            --dj-md-red: rgb(225, 45, 35);
            --dj-md-red-dark: rgb(170, 25, 18);
            --dj-md-red-deeper: rgb(100, 12, 8);
            --dj-md-red-pale: rgba(225, 45, 35, 0.07);
            --dj-md-orange: #ff8419;
            --dj-md-orange-mid: #e06e0a;
            --dj-md-orange-pale: rgba(255, 132, 25, 0.09);
            --dj-md-black: #0a0a0a;
            --dj-md-black-mid: #151515;
            --dj-md-black-soft: #222222;
            --dj-md-charcoal: #2e2e2e;
            --dj-md-grey: #5a5a5a;
            --dj-md-grey-light: #e2e2e2;
            --dj-md-smoke: #f6f5f3;
            --dj-md-white: #ffffff;
            --dj-md-grad: linear-gradient(130deg, var(--dj-md-red) 0%, var(--dj-md-orange) 100%);
            --dj-md-r: 24px;
            --dj-md-ease: cubic-bezier(.4, 0, .2, 1);
        }

        /* ══ SECTION ══ */
        .dj-md-section {
            padding: 40px 0 40px;
            position: relative;
        }

        .dj-md-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ══ SECTION HEADER ══ */
        .dj-md-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .dj-md-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--dj-md-orange);
            margin-bottom: 12px;
        }

        .dj-md-eyebrow::before,
        .dj-md-eyebrow::after {
            content: '';
            width: 32px;
            height: 2px;
            background: var(--dj-md-grad);
            border-radius: 2px;
        }

        .dj-md-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--dj-md-black);
            line-height: 1.2;
        }

        .dj-md-title span {
            background: var(--dj-md-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dj-md-entries {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        /* ── Entry Shell (Modified for Float Layout) ── */
        .dj-md-entry {
            display: block; /* Removed CSS Grid */
            background: var(--dj-md-white);
            border-radius: var(--dj-md-r);
            overflow: hidden; /* This automatically clears the floated image inside */
            box-shadow: 0 24px 64px rgba(0,0,0,.10);
            border: 1px solid rgba(0,0,0,.04);
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s var(--dj-md-ease), transform .7s var(--dj-md-ease), box-shadow .3s;
            scroll-margin-top: 120px;
        }

        .dj-md-entry.dj-md-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dj-md-entry:hover {
            box-shadow: 0 36px 80px rgba(0,0,0,.15);
        }

        /* ── Floated Photo Side ── */
        .dj-md-photo {
            float: left; /* Pulls the image to the left so text wraps around it */
            width: 420px; 
            height: 520px; /* Fixed Height */
            margin: 0 44px 20px 0; /* Creates breathing room between image and text */
            border-radius: 0 0 40px 0; /* Smooth custom rounded corner on the bottom right */
            position: relative;
            background: var(--dj-md-black);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .dj-md-photo img.dj-md-cover {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform .9s ease, filter .6s ease;
            filter: grayscale(20%) brightness(.88);
        }

        .dj-md-entry:hover .dj-md-photo img.dj-md-cover {
            transform: scale(1.05);
            filter: grayscale(0%) brightness(.95);
        }

        .dj-md-photo::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(170deg, rgba(10, 10, 10, .15) 0%, rgba(10, 10, 10, .08) 40%, rgb(170 25 18 / 11%) 72%, rgba(100, 12, 8, .92) 100%);
        }

        .dj-md-photo::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            z-index: 3;
            background: var(--dj-md-grad);
        }

        .dj-md-nameplate {
            position: relative;
            z-index: 2;
            margin-top: auto;
            padding: 28px 28px 32px;
        }

        .dj-md-designation {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--dj-md-orange);
            margin-bottom: 8px;
        }

        .dj-md-name {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dj-md-white);
            line-height: 1.18;
        }

        /* ── Content Wrappers ── */
        .dj-md-content {
            display: block; 
        }

        /* Band */
        .dj-md-band {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 44px 24px 0; /* Left padding is 0 because the float's margin handles spacing */
            border-bottom: 1px solid #f0f0f0;
            gap: 16px;
        }

        .dj-md-band-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .dj-md-band-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--dj-md-red-pale);
            display: grid;
            place-items: center;
            color: var(--dj-md-red);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .dj-md-band-label {
            font-size: .67rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--dj-md-grey);
            margin-bottom: 3px;
        }

        .dj-md-band-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dj-md-black);
        }

        .dj-md-band-seal {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--dj-md-grad);
            display: grid;
            place-items: center;
            font-size: .95rem;
            font-weight: 800;
            color: var(--dj-md-white);
            box-shadow: 0 6px 20px rgba(225,45,35,.28);
            flex-shrink: 0;
        }

        /* Body */
        .dj-md-body {
            padding: 34px 44px 34px 44px; /* Left padding restored so wrapped text lines up properly */
            display: block;
        }

        .dj-md-quote {
            position: relative;
            margin-bottom: 28px;
            padding: 22px 28px 22px 32px;
            border-radius: 0 14px 14px 0;
            border-left: 5px solid var(--dj-md-red);
            background: linear-gradient(120deg, var(--dj-md-red-pale) 0%, var(--dj-md-orange-pale) 100%);
            overflow: hidden; /* Keeps the quote block strictly right of the image */
        }

        .dj-md-quote::before {
            content: '\201C';
            position: absolute;
            top: -20px; right: 16px;
            font-size: 7rem;
            line-height: 1;
            color: var(--dj-md-red);
            opacity: .06;
            pointer-events: none;
        }

        .dj-md-quote p {
            font-size: 1.08rem;
            font-style: italic;
            font-weight: 600;
            color: var(--dj-md-red-dark);
            line-height: 1.65;
        }

        .dj-md-text {
            font-size: .93rem;
            color: var(--dj-md-grey);
            line-height: 1.9;
        }

        .dj-md-text p + p { margin-top: 14px; }

        /* ══ RESPONSIVE ══ */
        @media (max-width: 991px) {
            .dj-md-photo {
                float: none; /* Disables float on smaller screens */
                width: 100%;
                height: 400px;
                margin: 0;
                border-radius: 0; /* Parent container handles top corner rounding */
            }
            .dj-md-band { 
                padding: 24px; 
            }
            .dj-md-body { 
                padding: 24px; 
            }
        }

        @media (max-width: 640px) {
            .dj-md-band { padding: 22px 22px 18px; }
            .dj-md-body { padding: 24px 22px 18px; }
            .dj-md-designation { display: none;}
        }