/*
 * Combined "Land Use / Master Plan" result card — shared by master-plan-check and
 * landuse-zone-finder. Renders each available source (official RPC, official
 * certificate, community vector, official sheet) as a labelled sub-section with an
 * authority badge. Brand-orange theme (#ff6725). Prefix: .lu-
 */

.lu-combined-card {
    background: #fff;
    border: 1px solid #ffe0cf;
    border-radius: 16px;
    margin-top: 18px;
    overflow: hidden;
}

/* Headline strip */
.lu-headline {
    padding: 18px 20px;
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 55%, #ffb88c 100%);
    color: #fff;
}
.lu-headline-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.92;
    margin-bottom: 4px;
}
.lu-headline-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.2;
}
.lu-headline-msg {
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.96;
}
.lu-headline.lu-auth-none {
    background: linear-gradient(135deg, #8a8a8a 0%, #b3b3b3 100%);
}

/* Sub-sections wrapper */
.lu-sources { padding: 8px 16px 16px; }

.lu-source {
    border: 1px solid #f0e3da;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 12px;
    background: #fffdfb;
}
.lu-source-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.lu-source-name {
    font-size: 14px;
    font-weight: 700;
    color: #3a2e28;
    margin: 0;
}

/* Authority badges */
.lu-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 999px;
    line-height: 1.4;
}
.lu-badge i { font-size: 10px; }
.lu-badge-official {
    background: #e6f6ec;
    color: #1d7a3e;
    border: 1px solid #b6e3c5;
}
.lu-badge-community {
    background: #fff4e6;
    color: #b15c0a;
    border: 1px solid #ffd9a8;
}
.lu-badge-map {
    background: #eef2ff;
    color: #3a4cc0;
    border: 1px solid #c9d2ff;
}

.lu-source-zone {
    font-size: 16px;
    font-weight: 800;
    color: #ff6725;
    margin: 2px 0 4px;
}
.lu-source-detail {
    font-size: 12.5px;
    color: #6c5b52;
    line-height: 1.55;
    margin: 0;
}
.lu-source-note {
    margin-top: 8px;
    font-size: 12px;
    color: #8a7568;
    line-height: 1.5;
}

/* Inline mini meta row (code/circle etc.) */
.lu-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.lu-chip {
    font-size: 11.5px;
    background: #fff3ed;
    color: #b15c0a;
    border: 1px solid #ffd9c2;
    border-radius: 8px;
    padding: 3px 8px;
}

/* CTA button for official certificate */
.lu-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: #ff6725;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 10px;
    text-decoration: none;
    cursor: url(../dashboard/images/icon/pointer.svg), pointer !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-height: 44px;
}
.lu-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 103, 37, 0.28);
    color: #fff !important;
}

/* Overall disclaimer */
.lu-disclaimer {
    margin: 4px 16px 18px;
    padding: 12px 14px;
    border: 1px solid #ffd9c2;
    background: #fff8f4;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.6;
    color: #6c5b52;
}
.lu-disclaimer strong { color: #d8501a; }

@media (max-width: 768px) {
    .lu-headline-title { font-size: 19px; }
    .lu-cta-btn { width: 100%; justify-content: center; }
}

@media print {
    .lu-cta-btn { display: none; }
}
