/* ═══ GST Help Desk ═══ */
.ghd-main {
    min-height: 60vh;
    padding: 2.5rem 0 4rem;
}
.ghd-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    transition: max-width .2s;
}

.ghd-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.ghd-card-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.3rem 1.5rem;
    background: linear-gradient(135deg, #0c1a35, #1a4db8);
    color: #fff;
}
.ghd-card-header-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.ghd-card-title { font-size: 1.05rem; font-weight: 700; }
.ghd-card-sub   { font-size: .78rem; opacity: .85; margin-top: .15rem; }

.ghd-info-list { padding: 1.5rem; }
.ghd-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.ghd-info-row:last-child { border-bottom: none; }

.ghd-info-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #64748b;
}
.ghd-info-value {
    font-size: .95rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    color: #1a2b4a;
    letter-spacing: .02em;
}

/* ═══ Side-by-side cards — stacked by default, row on wide screens ═══ */
.ghd-cards-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1200px) {
    /* Widen the container specifically for the 2-column layout, so
       each card keeps roughly the width it has when stacked — avoids
       squeezing the 5-6 column tables into a cramped half-width card. */
    .ghd-container { max-width: 1600px; }

    .ghd-cards-row {
        flex-direction: row;
        align-items: flex-start;
    }
    .ghd-cards-row > .ghd-card {
        flex: 1 1 0;
        min-width: 0; /* lets flex items shrink below content width, so
                          .ghd-table-wrap's own overflow-x can still
                          kick in gracefully instead of breaking the row */
    }
}

/* ═══ Content — GST Cell contacts + registration details ═══ */
.ghd-card-header--amber {
    background: linear-gradient(135deg, #7c4a03, #b8860b);
}

.ghd-body { padding: 1.5rem; }

.ghd-para {
    font-size: .92rem;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 1.1rem;
}

.ghd-announcement {
    margin: 0 0 1.1rem;
    padding: 1rem 1.25rem;
    background: #fffbeb;
    border-left: 4px solid #d97706;
    border-radius: 0 8px 8px 0;
    font-size: .9rem;
    color: #451a03;
    line-height: 1.65;
    font-style: normal;
}

.ghd-table-wrap { overflow-x: auto; }

.ghd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
}
.ghd-table thead th {
    text-align: left;
    background: #fafbfc;
    color: #64748b;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}
.ghd-table tbody td {
    padding: .8rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.ghd-table tbody tr:last-child td { border-bottom: none; }
.ghd-table tbody tr:hover { background: #fafbfc; }

.ghd-col-sno { font-weight: 700; color: #64748b; width: 50px; }

@media (max-width: 640px) {
    .ghd-table thead th, .ghd-table tbody td { padding: .6rem .7rem; font-size: .8rem; }
    .ghd-info-row { flex-direction: column; align-items: flex-start; gap: .3rem; }
}
