.gjt-wrap {}

.gjt-wrap .card {
    margin: 14px 0;
}

.gjt-consulta-hero {
    display: grid;
    grid-template-columns: minmax(280px, 440px) minmax(320px, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 12px;
}

.gjt-consulta-hero .col50 {
    min-width: 0;
}

.gjt-consulta-hero .gjt-form-consulta {
    max-width: none;
    margin-bottom: 0;
    align-content: start;
}

.gjt-consulta-form-card {
    margin: 0;
    height: 100%;
}

.gjt-consulta-form-card .card-body {
    padding: 18px;
}

.gjt-consulta-resultados {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.gjt-consulta-resultados .gjt-table {
    margin: 0;
    background: #fff;
}

.gjt-table {
    width: 100%;
    border-collapse: collapse;
}

.gjt-table th,
.gjt-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.gjt-table th {
    background: #f6f7f7;
}

.gjt-badge {
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid #ccc;
    border-radius: 999px;
    font-size: 12px;
}

.gjt-alert {
    padding: 10px;
    border: 1px solid #f0c36d;
    background: #fff7e6;
}

.gjt-form-consulta {
    display: grid;
    gap: 10px;
    max-width: 520px;
    margin-bottom: 16px;
}

.gjt-form-consulta input[type="text"],
.gjt-form-consulta input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
}

.gjt-form-consulta button {
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid #2271b1;
    background: #2271b1;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.gjt-public-card {
    border: 0;
    border-radius: 18px;
    background:
        linear-gradient(130deg, rgba(121, 85, 255, 0.2) 0%, rgba(30, 175, 255, 0) 45%),
        linear-gradient(110deg, #1d1f38 0%, #2f2a56 55%, #5e4e9e 100%);
    box-shadow: 0 18px 48px rgba(17, 20, 43, 0.45);
    color: #f6f7ff;
    overflow: hidden;
    position: relative;
}

.gjt-public-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 85% 18%, rgba(114, 227, 255, 0.2), transparent 35%),
        linear-gradient(112deg, transparent 0 67%, rgba(168, 136, 255, 0.25) 67% 72%, transparent 72% 100%);
}

.gjt-public-card__body {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.gjt-public-card__eyebrow {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f3dc2e;
    font-weight: 800;
    text-align: center;
}

.gjt-public-card__lead {
    margin: 0 0 18px;
    font-size: 20px;
    text-align: center;
    line-height: 1.18;
    font-weight: 700;
    max-width: 760px;
}

.gjt-public-card__lead strong {
    color: #ffd33c;
}

.gjt-public-card__calendar {
    margin: 0 auto;
    width: min(360px, 100%);
    border: 2px solid #3aa2ff;
    border-radius: 24px;
    box-shadow:
        0 0 20px rgba(45, 182, 255, 0.55),
        inset 0 0 26px rgba(41, 158, 255, 0.22);
    padding: 18px 18px 14px;
    text-align: center;
    background: rgba(11, 16, 44, 0.36);
}

.gjt-public-card__year {
    display: block;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #5fd4ff;
}

.gjt-public-card__day {
    display: block;
    font-size: clamp(70px, 12vw, 112px);
    line-height: 1;
    font-weight: 900;
    color: #7be3ff;
    text-shadow: 0 0 16px rgba(86, 221, 255, 0.75);
}

.gjt-public-card__month {
    display: block;
    margin-top: 2px;
    font-size: 2.1rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #ffffff;
    font-family: var(--wp--preset--font-family--verdana);
}

.gjt-public-card__meta {
    margin: 16px 0 0;
    text-align: center;
    font-size: 14px;
    color: #dbe8ff;
}

.td-page-content p {
    color: inherit !important;
}

@media (max-width: 680px) {
    .gjt-consulta-hero {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gjt-public-card__body {
        padding: 16px;
    }

    .gjt-public-card__lead {
        font-size: 21px;
    }

    .gjt-public-card__calendar {
        border-radius: 18px;
        padding: 14px 14px 12px;
    }
}