/* =========================================================
   Dreamland Communities — Frontend CSS v2
   ========================================================= */

:root {
    --dlc-black:  #111111;
    --dlc-orange: #E55A1E;
    --dlc-soft:   #F2F7FB;
    --dlc-border: #e2e8f0;
    --dlc-text:   #555555;
    --dlc-white:  #ffffff;
}

.dlc-section,
.dlc-profile {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--dlc-black);
}

/* ---- Inner wrapper (respects page margins) ---- */
.dlc-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 28px 60px;
}

/* =========================================================
   PAGE HERO (Communities index + Developers index)
   ========================================================= */

.dlc-page-hero {
    padding: 70px 28px;
    text-align: center;
}

.dlc-communities-section .dlc-page-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://dreamlanddubai.ae/wp-content/uploads/2026/06/Communities-Hero.png') center center / cover no-repeat;
}

.dlc-developers-section .dlc-page-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://dreamlanddubai.ae/wp-content/uploads/2026/06/Developers-Hero.png') center center / cover no-repeat;
}

.dlc-page-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.dlc-page-hero-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dlc-orange);
    margin-bottom: 14px;
    background: rgba(255,255,255,0.90);
color: var(--dlc-orange);
    padding: 4px 14px;
    border-radius: 20px;
}

.dlc-page-hero-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 14px;
}

.dlc-page-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin: 0;
    line-height: 1.7;
}

/* =========================================================
   COMMUNITIES INDEX — LAYOUT
   ========================================================= */

.dlc-communities-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}

/* ---- Filter sidebar ---- */
.dlc-filter-panel {
    position: sticky;
    top: 90px;
    background: var(--dlc-white);
    border: 1px solid var(--dlc-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dlc-filter-panel h3 {
    margin: 0;
    padding: 14px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--dlc-black);
    color: #ffffff;
}

.dlc-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
    color: var(--dlc-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--dlc-border);
    background: var(--dlc-white);
    transition: background 0.15s ease;
}

.dlc-filter-link:last-child { border-bottom: none; }

.dlc-filter-link:hover {
    background: var(--dlc-soft);
    color: var(--dlc-black);
    text-decoration: none;
}

.dlc-filter-link.is-active {
    background: var(--dlc-orange);
    color: #ffffff;
    border-color: var(--dlc-orange);
}

.dlc-filter-link strong {
    font-size: 12px;
    font-weight: 700;
    background: rgba(0,0,0,0.08);
    padding: 2px 8px;
    border-radius: 20px;
    color: inherit;
    min-width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.dlc-filter-link.is-active strong {
    background: rgba(255,255,255,0.25);
}

/* Result count */
.dlc-result-count {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dlc-text);
}

/* =========================================================
   GRIDS
   ========================================================= */

.dlc-developer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: none;
}

.dlc-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dlc-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* =========================================================
   CARDS — shared
   ========================================================= */

.dlc-card {
    display: block;
    color: var(--dlc-black);
    text-decoration: none;
    background: var(--dlc-white);
    border: 1px solid var(--dlc-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dlc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    color: var(--dlc-black);
    text-decoration: none;
}

/* ---- Developer card ---- */
.dlc-developer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dlc-dev-header {
    padding: 20px 22px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--dlc-border);
}

.dlc-dev-logo {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    border: 1px solid var(--dlc-border);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--dlc-black);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
}

.dlc-dev-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.dlc-dev-title-block {
    flex: 1;
    min-width: 0;
}

.dlc-dev-title-block h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dlc-black);
    margin: 0 0 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dlc-dev-est {
    font-size: 10px;
    color: var(--dlc-text);
    margin: 0 0 6px;
    white-space: nowrap;
}

.dlc-dev-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(229,90,30,0.10);
    color: var(--dlc-orange);
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.dlc-dev-body {
    padding: 16px 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dlc-dev-desc {
    font-size: 13px;
    color: var(--dlc-text);
    line-height: 1.65;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(13px * 1.65 * 3);
}

.dlc-dev-divider {
    display: none;
}

.dlc-dev-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--dlc-border);
    border-bottom: 1px solid var(--dlc-border);
}

.dlc-dev-stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--dlc-text);
    margin-bottom: 2px;
}

.dlc-dev-stat-val {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dlc-black);
}

.dlc-dev-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.dlc-dev-tag {
    font-size: 11px;
    color: var(--dlc-text);
    background: var(--dlc-soft);
    border: 1px solid var(--dlc-border);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.dlc-dev-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dlc-black);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 11px 16px;
    margin: auto -18px 0;
    letter-spacing: 0.02em;
}

.dlc-developer-card:hover .dlc-dev-cta {
    background: #333333;
}

/* ---- Community card ---- */
.dlc-community-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    text-decoration: none;
    color: var(--dlc-black);
    height: 100%;
}

.dlc-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.dlc-community-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    text-decoration: none;
    color: var(--dlc-black);
}

.dlc-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1a1a;
}

.dlc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dlc-community-card:hover .dlc-card-image img {
    transform: scale(1.04);
}

.dlc-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(160deg, #1c1c1c 0%, #2e2e2e 50%, rgba(229,90,30,0.4) 100%);
}

.dlc-image-placeholder span {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Type badge overlaid on image bottom-left */
.dlc-type-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 12px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Card body */
.dlc-card-body {
    padding: 20px 22px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dlc-card-body > .dlc-card-meta {
    margin-top: auto;
}

.dlc-community-card .dlc-card-body h3 {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--dlc-black);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dlc-card-developer {
    font-size: 13px;
    color: var(--dlc-text);
    margin-bottom: 6px;
}

.dlc-card-developer strong {
    color: var(--dlc-black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.dlc-card-divider {
    height: 2px;
    width: 36px;
    background: var(--dlc-orange);
    margin-bottom: 10px;
    border-radius: 2px;
}

.dlc-card-body p {
    color: var(--dlc-text);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px;
}

/* Feature tags */
.dlc-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 16px;
}

.dlc-feature-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--dlc-text);
    background: var(--dlc-soft);
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Meta rows */
.dlc-card-meta {
    border-top: 1px solid var(--dlc-border);
    padding-top: 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dlc-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.dlc-meta-icon {
    font-size: 13px;
    line-height: 1.4;
    flex-shrink: 0;
}

.dlc-meta-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dlc-meta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dlc-text);
    line-height: 1.3;
}

.dlc-meta-value {
    font-size: 11px;
    font-weight: 400;
    color: var(--dlc-black);
    line-height: 1.4;
}

/* CTA button */
.dlc-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dlc-black);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 20px;
    margin: 0 -22px;
    letter-spacing: 0.02em;
    transition: background 0.15s ease;
}

.dlc-community-card:hover .dlc-card-cta {
    background: #333333;
}

/* Hide old count */
.dlc-count { display: none; }

/* =========================================================
   PROJECT CARDS
   ========================================================= */

.dlc-project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: var(--dlc-white);
    border: 1px solid var(--dlc-border);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dlc-project-card-body h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dlc-black);
}

.dlc-project-card-body p {
    color: var(--dlc-text);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.dlc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 24px;
    color: #ffffff;
    background: var(--dlc-orange);
    border: 2px solid var(--dlc-orange);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    transition: background 0.15s ease, color 0.15s ease;
}

.dlc-button:hover {
    color: var(--dlc-orange);
    background: #ffffff;
    text-decoration: none;
}

.dlc-button-small {
    min-height: 36px;
    font-size: 12px;
    width: auto;
    padding: 7px 14px;
    color: var(--dlc-black);
    background: var(--dlc-white);
    border-color: var(--dlc-black);
}

.dlc-button-small:hover {
    color: #ffffff;
    background: var(--dlc-black);
}

/* =========================================================
   PROFILE PAGES (single developer / community)
   ========================================================= */

.dlc-profile-hero {
    background: linear-gradient(150deg, #111111 0%, #1c1c1c 55%, #2d1a0e 100%);
    padding: 60px 40px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
}

.dlc-profile-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.dlc-profile-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 3px;
    margin-bottom: 18px;
    align-self: flex-start;
}

.dlc-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dlc-orange);
    margin-bottom: 12px;
}

.dlc-profile-hero-title {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 12px;
}

.dlc-profile-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 51px;
}

.dlc-dev-profile-desc {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 51px;
}

/* Profile body */
.dlc-profile-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 28px 60px;
}

.dlc-profile-main h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--dlc-black);
}

.dlc-profile-main h2:not(:first-child) {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--dlc-border);
}

.dlc-content {
    color: var(--dlc-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Profile sidebar */
.dlc-profile-side {
    border: 1px solid var(--dlc-border);
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.dlc-stat {
    padding: 14px 20px;
    background: var(--dlc-white);
    border-bottom: 1px solid var(--dlc-border);
}

.dlc-stat:last-child { border-bottom: none; }

.dlc-stat span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--dlc-text);
    margin-bottom: 4px;
}

.dlc-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dlc-black);
    line-height: 1.2;
}

.dlc-stat strong a {
    color: var(--dlc-orange);
    text-decoration: none;
}

.dlc-stat strong a:hover { text-decoration: underline; }

.dlc-inquiry {
    padding: 20px;
    background: var(--dlc-soft);
}

.dlc-inquiry h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.dlc-inquiry p {
    color: var(--dlc-text);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px;
}

/* =========================================================
   SECTION TITLE (for shortcode title param)
   ========================================================= */

.dlc-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 28px;
    text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .dlc-community-grid { grid-template-columns: repeat(2, 1fr); }
    .dlc-developer-grid { grid-template-columns: repeat(2, 1fr); }
    .dlc-profile-body   { grid-template-columns: 1fr; }
    .dlc-profile-side   { position: static; }
}

@media (max-width: 900px) {
    .dlc-communities-layout { grid-template-columns: 1fr; }
    .dlc-filter-panel        { position: static; }
}

@media (max-width: 640px) {
    .dlc-community-grid,
    .dlc-developer-grid,
    .dlc-project-grid { grid-template-columns: 1fr; }
    .dlc-page-hero    { padding: 44px 20px; }
    .dlc-profile-hero { padding: 36px 20px; min-height: 200px; }
    .dlc-inner        { padding: 28px 16px 40px; }
    .dlc-profile-body { padding: 28px 16px 40px; }
}

/* Remove sidebar on CPT single pages */
.single-dlc_developer .bt-sidebar-wrap,
.single-dlc_community .bt-sidebar-wrap,
.single-dlc_developer .theiaStickySidebar,
.single-dlc_community .theiaStickySidebar,
.single-dlc_developer .col-lg-4.bt-sidebar-wrap,
.single-dlc_community .col-lg-4.bt-sidebar-wrap {
    display: none !important;
}

.single-dlc_developer .col-md-12.bt-sidebar-wrap,
.single-dlc_community .col-md-12.bt-sidebar-wrap {
    display: none !important;
}

.single-dlc_developer .col-lg-8,
.single-dlc_community .col-lg-8,
.single-dlc_developer .col-md-12:not(.bt-sidebar-wrap),
.single-dlc_community .col-md-12:not(.bt-sidebar-wrap) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.single-dlc_developer .dlc-profile-hero,
.single-dlc_community .dlc-profile-hero {
    padding-top: 100px;
}

/* =========================================================
   DEVELOPER PROFILE PAGE — Hero + Stats Bar + Layout
   ========================================================= */

.dlc-developer-profile {
    font-family: "Poppins", Arial, sans-serif;
}

/* Hero */
.dlc-dev-profile-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a0f07 100%);
    padding: 60px 60px 50px;
    min-height: 260px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
}

.dlc-dev-profile-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(229,90,30,0.15);
    border: 1px solid rgba(229,90,30,0.4);
    color: var(--dlc-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.dlc-dev-profile-name {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    margin: 0 0 10px;
}

.dlc-dev-profile-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.dlc-dev-profile-hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.dlc-dev-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.dlc-dev-profile-btn-primary {
    background: var(--dlc-orange);
    color: #ffffff;
    border: 2px solid var(--dlc-orange);
}

.dlc-dev-profile-btn-primary:hover {
    background: #ffffff;
    color: var(--dlc-orange);
    text-decoration: none;
}

.dlc-dev-profile-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.4);
}

.dlc-dev-profile-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    text-decoration: none;
}

/* Stats bar */
.dlc-dev-stats-bar {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border: 1px solid var(--dlc-border);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.dlc-dev-stats-bar-item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid var(--dlc-border);
}

.dlc-dev-stats-bar-item:last-child {
    border-right: none;
}

.dlc-dev-stats-bar-item:first-child { border-radius: 16px 0 0 16px; }
.dlc-dev-stats-bar-item:last-child { border-radius: 0 16px 16px 0; }

.dlc-dev-stats-bar-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--dlc-black);
    line-height: 1.1;
    margin-bottom: 4px;
}

.dlc-dev-stats-bar-item span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--dlc-text);
}

/* Profile body */
.dlc-dev-profile-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    padding: 48px 60px 60px;
    box-sizing: border-box;
}

.dlc-dev-profile-main h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--dlc-black);
}

.dlc-dev-profile-main h2:not(:first-child) {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--dlc-border);
}

/* Community grid inside developer profile — 2 columns */
.dlc-developer-community-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* No communities message */
.dlc-no-communities {
    color: var(--dlc-text);
    font-size: 14px;
    padding: 24px;
    background: var(--dlc-soft);
    border-radius: 6px;
    border: 1px solid var(--dlc-border);
}

/* Sidebar */
.dlc-dev-profile-side {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dlc-dev-profile-highlight {
    padding: 20px;
    background: var(--dlc-soft);
    border: 1px solid var(--dlc-border);
    border-radius: 8px;
}

.dlc-dev-profile-highlight h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--dlc-black);
}

.dlc-dev-profile-highlight p {
    font-size: 13px;
    color: var(--dlc-text);
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp button */
.dlc-button-wa {
    background: #ffffff;
    color: var(--dlc-black);
    border-color: var(--dlc-black);
    margin-top: 8px;
}

.dlc-button-wa:hover {
    background: var(--dlc-black);
    color: #ffffff;
    border-color: var(--dlc-black);
}

/* Responsive */
@media (max-width: 1024px) {
    .dlc-dev-profile-hero { padding: 80px 28px 40px; flex-direction: column; align-items: flex-start; }
    .dlc-dev-profile-hero-right { flex-direction: row; }
    .dlc-dev-stats-bar { grid-template-columns: repeat(3, 1fr); }
    .dlc-dev-stats-bar-item:nth-child(3) { border-right: none; }
    .dlc-dev-profile-body { grid-template-columns: 1fr; padding: 32px 28px 40px; }
    .dlc-dev-profile-side { position: static; }
    .dlc-developer-community-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
    .dlc-dev-profile-hero { padding: 90px 20px 32px; min-height: 220px; }
    .dlc-dev-profile-name { font-size: 28px; }
    .dlc-dev-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .dlc-dev-stats-bar-item:nth-child(2) { border-right: none; }
    .dlc-developer-community-grid { grid-template-columns: 1fr !important; }
    .dlc-dev-profile-hero-right { flex-direction: column; width: 100%; }
    .dlc-dev-profile-btn { width: 100%; }
}

.single-dlc_developer .page-title-wrap,
.single-dlc_community .page-title-wrap {
    display: none !important;
}

.dlc-breadcrumb {
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 190px 24px 16px;
    font-size: 13px;
    color: #6b6b6b;
}
.dlc-breadcrumb a {
    color: #6b6b6b;
    text-decoration: none;
}
.dlc-breadcrumb a:hover { color: var(--dlc-orange); }
.dlc-breadcrumb span:first-of-type { margin: 0 8px; }

@media (max-width: 768px) {
    .dlc-breadcrumb {
        padding: 30px 20px 12px;
    }
}