.abcmap-public-wrap {
    margin: 0;
}
.abcmap-hero {
    border: 1px solid #dfe3e9;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.abcmap-hero-top {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}
.abcmap-hero-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.abcmap-hero-subtitle {
    color: #64748b;
    margin-top: 8px;
}
.abcmap-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.abcmap-pillbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.abcmap-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 600;
}
.abcmap-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}
.abcmap-card {
    border: 1px solid #dfe3e9;
    border-radius: 18px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.abcmap-card-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
}
.abcmap-card-subtitle {
    color: #64748b;
    margin: -4px 0 14px;
}
.abcmap-map iframe {
    width: 100%;
    min-height: 640px;
    border: 1px solid #dfe3e9;
    border-radius: 14px;
}
.abcmap-table {
    width: 100%;
    border-collapse: collapse;
}
.abcmap-table th,
.abcmap-table td {
    padding: 11px 0;
    border-top: 1px solid #eef2f7;
    vertical-align: top;
}
.abcmap-table tr:first-child th,
.abcmap-table tr:first-child td {
    border-top: 0;
}
.abcmap-table th {
    width: 38%;
    color: #475569;
    font-weight: 600;
    padding-right: 18px;
}
.abcmap-meta-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.abcmap-meta-item {
    padding: 14px 16px;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    background: #fafcff;
}
.abcmap-meta-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
}
.abcmap-meta-value {
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    word-break: break-word;
}
.abcmap-copyable-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.abcmap-copyable-text {
    min-width: 0;
    flex: 1 1 auto;
    overflow-wrap: anywhere;
}
.abcmap-copy-btn {
    margin-top: 10px;
    flex: 0 0 auto;
    line-height: 1;
}
.abcmap-legal-accordion .accordion-button {
    font-weight: 600;
}
.abcmap-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.abcmap-status-open {
    background: #e7f8ee;
    color: #166534;
}
.abcmap-status-neutral {
    background: #f1f5f9;
    color: #475569;
}
.abcmap-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.abcmap-section-full {
    grid-column: 1 / -1;
}
@media (max-width: 991px) {
    .abcmap-grid,
    .abcmap-sections {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .abcmap-public-wrap {
        margin: 0;
    }
    .abcmap-hero,
    .abcmap-card {
        border-radius: 14px;
        padding: 16px;
    }
    .abcmap-hero-title {
        font-size: 24px;
    }
    .abcmap-map iframe {
        min-height: 420px;
    }
    .abcmap-table,
    .abcmap-table tbody,
    .abcmap-table tr,
    .abcmap-table th,
    .abcmap-table td {
        display: block;
        width: 100%;
    }
    .abcmap-table tr {
        border-top: 1px solid #eef2f7;
        padding: 10px 0;
    }
    .abcmap-table tr:first-child {
        border-top: 0;
        padding-top: 0;
    }
    .abcmap-table th,
    .abcmap-table td {
        border: 0;
        padding: 3px 0;
    }
}