/* ═══ Investor Grievance Officer & CRO Details ═══ */
.gcro-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.gcro-card-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, #0c1a35, #1a4db8);
    color: #fff;
}
.gcro-card-header--cro {
    background: linear-gradient(135deg, #1a3d2e, #1a5c38);
}

.gcro-card-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}

.gcro-card-title { font-size: 1.02rem; font-weight: 700; }
.gcro-card-sub   { font-size: .78rem; opacity: .85; margin-top: .1rem; }

.gcro-card-body { padding: 1.5rem; }

.gcro-intro-line {
    font-size: .9rem;
    color: #475569;
    margin-bottom: 1rem;
}

.gcro-org-name {
    font-size: .95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: .9rem;
    border-bottom: 1px dashed #e2e8f0;
}

.gcro-detail-list {
    display: grid;
    gap: .85rem;
    margin: 0;
}

.gcro-detail-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: start;
}

.gcro-detail-row dt {
    font-size: .74rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.gcro-detail-row dd {
    font-size: .88rem;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

.gcro-email {
    font-family: monospace;
    background: #f1f5f9;
    padding: .15rem .5rem;
    border-radius: 5px;
    display: inline-block;
    font-size: .82rem !important;
}

.gcro-na { color: #94a3b8; }

@media (max-width: 640px) {
    .gcro-detail-row {
        grid-template-columns: 1fr;
        gap: .25rem;
    }
}

/* ═══ Full-width layout (no sidebar) ═══ */
.gcro-main {
    min-height: 60vh;
    padding: 2.5rem 0 4rem;
}
.gcro-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
