.dlc-section,
.dlc-profile {
    --dlc-black: #000000;
    --dlc-orange: #E55A1E;
    --dlc-soft: #F2F7FB;
    --dlc-border: #e8e8e8;
    --dlc-text: #555555;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--dlc-black);
}

.dlc-section {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 20px;
}

.dlc-section-title {
    margin: 0 0 34px;
    text-align: center;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18;
    font-weight: 700;
}

.dlc-developers-section {
    max-width: none;
    background: var(--dlc-soft);
}

.dlc-developer-grid,
.dlc-community-grid,
.dlc-project-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.dlc-card {
    display: block;
    color: var(--dlc-black);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--dlc-border);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.dlc-card:hover {
    color: var(--dlc-black);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.dlc-developer-card {
    min-height: 220px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dlc-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 54px;
    padding: 12px 18px;
    border: 1px solid var(--dlc-black);
    font-weight: 700;
    letter-spacing: 0;
    background: #ffffff;
}

.dlc-card h3,
.dlc-project-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.dlc-card p,
.dlc-project-card p,
.dlc-content,
.dlc-profile-hero p,
.dlc-inquiry p {
    color: var(--dlc-text);
    font-size: 15px;
    line-height: 1.8;
}

.dlc-card span,
.dlc-card strong,
.dlc-kicker {
    color: var(--dlc-orange);
    font-weight: 700;
}

.dlc-card-image {
    aspect-ratio: 16 / 10;
    background: var(--dlc-soft);
}

.dlc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dlc-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(145deg, rgba(0, 0, 0, .78), rgba(229, 90, 30, .58)), var(--dlc-soft);
}

.dlc-card-body {
    padding: 22px;
}

.dlc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.dlc-communities-layout {
    display: grid;
    grid-template-columns: minmax(240px, 25%) 1fr;
    gap: 28px;
    align-items: start;
}

.dlc-filter-panel {
    position: sticky;
    top: 100px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--dlc-border);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.dlc-filter-panel h3 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
}

.dlc-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    margin-bottom: 8px;
    padding: 10px 12px;
    color: var(--dlc-black);
    text-decoration: none;
    border: 1px solid var(--dlc-border);
    background: #ffffff;
    font-weight: 600;
}

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

.dlc-filter-link:hover strong,
.dlc-filter-link.is-active strong {
    color: var(--dlc-orange);
}

.dlc-result-count {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.dlc-profile {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 20px;
}

.dlc-profile-hero {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 38px;
    padding: 46px;
    color: #ffffff;
    background: linear-gradient(120deg, rgba(0,0,0,.86), rgba(0,0,0,.48)), var(--dlc-black);
}

.dlc-profile-hero h1 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 700;
}

.dlc-profile-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.88);
}

.dlc-profile-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 34px;
    align-items: start;
}

.dlc-profile-main h2 {
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.dlc-profile-main h2:not(:first-child) {
    margin-top: 42px;
}

.dlc-profile-side {
    padding: 22px;
    border: 1px solid var(--dlc-border);
    background: var(--dlc-soft);
}

.dlc-stat {
    padding: 16px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid var(--dlc-border);
}

.dlc-stat span {
    display: block;
    color: var(--dlc-text);
    font-size: 13px;
    margin-bottom: 6px;
}

.dlc-stat strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.dlc-project-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--dlc-border);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.dlc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 24px;
    color: var(--dlc-black);
    border: 1px solid var(--dlc-black);
    background: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

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

.dlc-button-small {
    align-self: flex-start;
    min-height: 40px;
    font-size: 13px;
}

.dlc-inquiry {
    margin-top: 18px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--dlc-border);
}

.dlc-inquiry h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

@media (max-width: 1024px) {
    .dlc-developer-grid,
    .dlc-community-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dlc-communities-layout,
    .dlc-profile-grid {
        grid-template-columns: 1fr;
    }

    .dlc-filter-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .dlc-section,
    .dlc-profile {
        padding: 34px 16px;
    }

    .dlc-developer-grid,
    .dlc-community-grid,
    .dlc-project-grid {
        grid-template-columns: 1fr;
    }

    .dlc-profile-hero {
        padding: 30px 22px;
    }
}
