/* ═══════════════════════════════════════════════════════════════
   UNIVGA — Page Reconnaissance  [univga_reconnaissance]
   Hero identique à /ecrivez-nous/ et /a-propos/ (about.css · uab-hero)
   Préfixe : urc-
   ═══════════════════════════════════════════════════════════════ */

:root {
    --urc-navy:   #0b1e4d;
    --urc-navy-2: #163a8a;
    --urc-ink:    #333279;
    --urc-gold:   #f5b042;
    --urc-gold-2: #e89a1e;
    --urc-text:   #0f172a;
    --urc-muted:  #5b6578;
    --urc-line:   #e5e9f2;
    --urc-soft:   #f4f6fb;
    --urc-white:  #ffffff;
    --urc-radius: 18px;
    --urc-shadow: 0 18px 50px -24px rgba(11, 30, 77, .35), 0 8px 20px -10px rgba(11, 30, 77, .12);
    --urc-font:   -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#univga-recon-portal {
    font-family: var(--urc-font);
    color: var(--urc-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    background:
        radial-gradient(ellipse 70% 40% at 10% 20%, rgba(245, 176, 66, .08), transparent 55%),
        radial-gradient(ellipse 60% 45% at 90% 80%, rgba(22, 58, 138, .07), transparent 55%),
        linear-gradient(180deg, #eef1f8 0%, #f7f8fc 36%, #fff 100%);
}

body:has(#univga-recon-portal) .title_single_area,
body:has(#univga-recon-portal) .breadcrumb,
body:has(#univga-recon-portal) .post-meta { display: none !important; }

#univga-recon-portal *,
#univga-recon-portal *::before,
#univga-recon-portal *::after { box-sizing: border-box; }

/* ── Hero ── */
#univga-recon-portal .uab-hero {
    padding: 100px 24px 120px;
}
#univga-recon-portal .uab-hero__inner {
    max-width: 1100px;
}
#univga-recon-portal .uab-hero__title {
    white-space: normal;
    font-size: clamp(1.35rem, 4vw, 3.1rem);
}
#univga-recon-portal .uab-hero__sub {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
#univga-recon-portal .uab-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
#univga-recon-portal .uab-hero__stats {
    margin-top: 40px;
}

.urc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
}
.urc-btn--gold {
    background: linear-gradient(135deg, var(--urc-gold), var(--urc-gold-2));
    color: var(--urc-navy);
    box-shadow: 0 10px 28px rgba(245, 176, 66, .38);
}
.urc-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(245, 176, 66, .48);
    color: var(--urc-navy);
}
.urc-btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
}
.urc-btn--ghost:hover {
    background: rgba(255,255,255,.16);
    color: #fff;
    transform: translateY(-1px);
}
.urc-btn--navy {
    background: var(--urc-navy);
    color: #fff;
    box-shadow: 0 10px 24px rgba(11, 30, 77, .28);
}
.urc-btn--navy:hover {
    transform: translateY(-2px);
    color: #fff;
}
.urc-btn--outline {
    background: #fff;
    color: var(--urc-ink);
    border: 1.5px solid rgba(51, 50, 121, .18);
}
.urc-btn--outline:hover {
    border-color: var(--urc-ink);
    transform: translateY(-1px);
    color: var(--urc-ink);
}

/* ── Identity facts (overlap hero) ── */
.urc-facts {
    position: relative;
    z-index: 4;
    max-width: 1180px;
    margin: -88px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    animation: urc-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes urc-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.urc-fact {
    background: #fff;
    border: 1px solid var(--urc-line);
    border-radius: var(--urc-radius);
    padding: 26px 24px 22px;
    box-shadow: var(--urc-shadow);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
    row-gap: 14px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.urc-fact::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--urc-gold), var(--urc-gold-2));
}
.urc-fact:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(11, 30, 77, .4);
}
.urc-fact__flag {
    font-size: 1.35rem;
    line-height: 1;
    margin: 0;
}
.urc-fact__title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--urc-muted);
    margin: 0;
}
.urc-fact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.urc-fact li {
    font-size: .9rem;
    color: var(--urc-text);
    line-height: 1.45;
    padding-left: 14px;
    position: relative;
}
.urc-fact li::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--urc-gold);
}
.urc-fact li strong { color: var(--urc-navy); font-weight: 700; }
.urc-fact p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: .9rem;
    color: var(--urc-text);
    line-height: 1.55;
}

/* ── Intro band ── */
.urc-intro {
    max-width: 820px;
    margin: 48px auto 0;
    padding: 0 24px;
    text-align: center;
}
.urc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--urc-gold-2);
    margin-bottom: 12px;
}
.urc-intro h2,
.urc-dir__head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 900;
    color: var(--urc-navy);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 14px;
}
.urc-intro p {
    font-size: 1.05rem;
    color: var(--urc-muted);
    line-height: 1.75;
    margin: 0;
}

/* ── Institutional pillars (2×2 cards) ── */
.urc-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    width: 100%;
    margin: 32px 0 8px;
    padding: 0 clamp(20px, 3.2vw, 64px);
}
.urc-pillar {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
    min-height: 280px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 36px -22px rgba(11, 30, 77, .45);
    transition: transform .28s ease, box-shadow .28s ease;
}
.urc-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -20px rgba(11, 30, 77, .5);
}
.urc-pillar--navy  { background: #0b1e4d; }
.urc-pillar--dark  { background: #0f172a; }
.urc-pillar--amber { background: #b45309; }
.urc-pillar--slate { background: #1e3a5f; }

.urc-pillar__media {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}
.urc-pillar__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.urc-pillar:hover .urc-pillar__media img { transform: scale(1.06); }
.urc-pillar--amber .urc-pillar__media img {
    object-position: 78% 18%;
}
.urc-pillar__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 40%, rgba(0,0,0,.18));
    pointer-events: none;
}
.urc-pillar__body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: #fff;
}
.urc-pillar__tag {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
}
.urc-pillar__body h2 {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin: 0;
    color: #fff;
}
.urc-pillar__body p {
    font-size: .92rem;
    line-height: 1.65;
    margin: 0;
    color: rgba(255,255,255,.78);
}
.urc-pillar__body p strong { color: #fff; font-weight: 700; }
.urc-pillar__body p a {
    color: #f5b042;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.urc-pillar__body p a:hover { color: #fbbf24; }
.urc-pillar__btn {
    align-self: flex-start;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 9px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    transition: background .2s, transform .2s;
}
.urc-pillar__btn:hover {
    background: rgba(255,255,255,.24);
    color: #fff;
    transform: translateY(-1px);
}
.urc-pillar--amber .urc-pillar__btn {
    background: #0b1e4d;
    border-color: transparent;
}
.urc-pillar--dark .urc-pillar__btn {
    background: linear-gradient(135deg, var(--urc-gold), var(--urc-gold-2));
    color: #1a0f00;
    border-color: transparent;
}
.urc-pillar--dark .urc-pillar__btn:hover { color: #1a0f00; }

/* ── CINVU / COMSTECH / OCI showcase ── */
.urc-kicker--gold { color: var(--urc-gold); }
.urc-world {
    width: 100%;
    margin: 40px 0 8px;
    padding: 0 clamp(20px, 3.2vw, 64px);
}
.urc-world__inner {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 80% at 0% 0%, rgba(245,176,66,.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 20% 100%, rgba(0,131,62,.18) 0%, transparent 50%),
        linear-gradient(145deg, #050d28 0%, #0b1e4d 55%, #0f172a 100%);
    box-shadow: 0 28px 60px -28px rgba(11, 30, 77, .55);
    min-height: 0;
}
.urc-world__copy {
    padding: clamp(22px, 2.8vw, 32px) clamp(24px, 3.5vw, 40px) 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    color: #fff;
    min-width: 0;
    max-width: 100%;
}
.urc-world__copy h2 {
    font-size: clamp(1.02rem, 1.65vw, 1.38rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.25;
    margin: 0;
    color: #fff;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.urc-world__copy .urc-kicker {
    margin-bottom: 2px;
}
.urc-world__copy p {
    margin: 0;
    font-size: .98rem;
    line-height: 1.72;
    color: rgba(255,255,255,.78);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}
.urc-world__copy p strong { color: #fff; font-weight: 700; }
.urc-world__gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 10px 10px 8px;
    min-height: 0;
    align-self: stretch;
}
.urc-world__shot {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}
.urc-world__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.urc-world__shot:hover img { transform: scale(1.05); }
.urc-world__shot--hero {
    grid-row: 1 / span 2;
}
.urc-world__shot--hero img {
    object-position: 28% 48%;
}
.urc-world + .urc-world { margin-top: 22px; }
#urc-cinvu .urc-world__inner {
    align-items: stretch;
    grid-template-rows: min-content;
}
#urc-cinvu .urc-world__copy {
    padding-bottom: 18px;
}
#urc-cinvu .urc-world__copy p {
    text-align: justify;
    hyphens: auto;
}
#urc-cinvu .urc-world__gallery {
    height: 0;
    min-height: 100%;
    overflow: hidden;
    padding: 12px;
    align-self: stretch;
}
#urc-cinvu .urc-world__shot {
    min-height: 0;
    height: 100%;
}
#urc-cinvu .urc-world__shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.urc-world--aees .urc-world__inner {
    grid-template-columns: 2fr 1fr;
    min-height: 0;
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(59,130,246,.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 0% 100%, rgba(245,176,66,.12) 0%, transparent 50%),
        linear-gradient(145deg, #0a1628 0%, #12315c 52%, #0b1e4d 100%);
}
.urc-world--aees .urc-world__copy {
    padding: 28px 32px 28px 36px;
    gap: 12px;
}
.urc-world--aees .urc-world__copy h2 {
    white-space: normal;
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
    line-height: 1.25;
}
.urc-world--aees .urc-world__copy p {
    font-size: .9rem;
    line-height: 1.65;
    text-align: justify;
    hyphens: auto;
}
.urc-world--aees .urc-world__logo {
    position: relative;
    padding: 0;
    background: #0b1e4d;
    overflow: hidden;
    height: 0;
    min-height: 100%;
    align-self: stretch;
}
.urc-world--aees .urc-world__logo-photo {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 40%;
    filter: none;
    display: block;
}
.urc-aees-seal {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    width: 149px;
    height: 149px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
    box-shadow: 0 10px 28px rgba(5, 13, 40, .28);
}
.urc-aees-seal img {
    position: relative;
    z-index: 1;
    width: 132%;
    height: 132%;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

/* ── Local partners ── */
.urc-local {
    width: 100%;
    margin: 8px 0 0;
    padding: 48px clamp(20px, 3.2vw, 64px) 8px;
}
.urc-local .urc-intro {
    margin-top: 0;
    margin-bottom: 28px;
}
.urc-local__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.urc-local__card {
    background: #fff;
    border: 1px solid var(--urc-line);
    border-radius: var(--urc-radius);
    overflow: hidden;
    box-shadow: var(--urc-shadow);
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.urc-local__media {
    margin: 0;
    height: 360px;
    overflow: hidden;
    background: #0b1e4d;
}
.urc-local__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.urc-local__card:hover .urc-local__media img { transform: scale(1.04); }
.urc-local__media--portrait img {
    object-position: center 18%;
}
.urc-local__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.urc-local__tag {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--urc-muted);
}
.urc-local__body h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--urc-navy);
    overflow-wrap: break-word;
}
.urc-local__body p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--urc-text);
    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
}

.urc-local__card--wide {
    grid-column: span 2;
}
.urc-local__media--wide {
    height: 100%;
    min-height: 360px;
    position: relative;
    flex: 1;
}
.urc-local__media--wide img {
    object-position: center 38%;
}
.urc-local__media--wide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 22px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 13, 40, .88) 55%);
    color: #fff;
}
.urc-local__media--wide .urc-local__tag {
    color: rgba(255, 255, 255, .72);
}
.urc-local__media--wide h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}
.urc-local__media--wide p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .86);
    text-align: justify;
    hyphens: auto;
}
.urc-local__media--wide p + p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
}
.urc-flag {
    display: inline;
    font-style: normal;
    font-weight: 400;
}

/* ── Directory ── */
.urc-dir {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 72px clamp(20px, 3.2vw, 64px) 88px;
}
.urc-dir__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}
.urc-dir__head p {
    color: var(--urc-muted);
    margin: 0;
    line-height: 1.7;
}

.urc-toolbar {
    position: sticky;
    top: 8px;
    z-index: 12;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
    margin-bottom: 28px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--urc-line);
    border-radius: 16px;
    box-shadow: 0 10px 30px -18px rgba(11, 30, 77, .28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.urc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}
.urc-filter {
    appearance: none;
    border: 1px solid var(--urc-line);
    background: #fff;
    color: var(--urc-navy);
    font-size: .82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.urc-filter:hover { border-color: rgba(11, 30, 77, .28); }
.urc-filter.is-active {
    background: var(--urc-navy);
    border-color: var(--urc-navy);
    color: #fff;
    box-shadow: 0 6px 16px rgba(11, 30, 77, .25);
}
.urc-search {
    position: relative;
    min-width: min(100%, 240px);
}
.urc-search i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--urc-muted);
    font-size: .85rem;
    pointer-events: none;
}
.urc-search input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--urc-line);
    border-radius: 999px;
    padding: 0 16px 0 38px;
    font-size: .9rem;
    color: var(--urc-text);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.urc-search input:focus {
    border-color: var(--urc-gold);
    box-shadow: 0 0 0 4px rgba(245, 176, 66, .18);
}
.urc-count {
    font-size: .78rem;
    font-weight: 700;
    color: var(--urc-muted);
    letter-spacing: .04em;
    white-space: nowrap;
    margin-left: auto;
}

/* ── Cards ── */
.urc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.urc-card {
    background: #fff;
    border: 1px solid var(--urc-line);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 10px 28px -22px rgba(11, 30, 77, .4);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
}
.urc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 176, 66, .45);
    box-shadow: 0 24px 48px -24px rgba(11, 30, 77, .45);
}
.urc-card.is-hidden { display: none; }

.urc-card__logo {
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    background:
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--urc-line);
}
.urc-card__logo img {
    max-width: 100%;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.05);
}
.urc-card__logo img[src*="flagcdn.com"] {
    max-height: 72px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(11, 30, 77, .14);
    filter: none;
}
.urc-card__logo img[src*="paypal"] {
    height: 64px;
    max-height: none;
    width: auto;
    max-width: 100%;
}
.urc-card__logo img[src*="wise.com"],
.urc-card__logo img[src*="uba_footer"] {
    height: 52px;
    max-height: none;
    width: auto;
    max-width: 100%;
}
.urc-card__fallback {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--urc-navy), var(--urc-ink));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .04em;
}
.urc-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.urc-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.urc-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--urc-ink);
}
.urc-chip--cat {
    background: #fff7e8;
    color: #92400e;
}
.urc-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--urc-navy);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -.01em;
}
.urc-card p {
    font-size: .88rem;
    color: var(--urc-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.urc-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.urc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background .2s, color .2s, transform .2s;
}
.urc-link--doc {
    background: #0b1e4d;
    color: #fff;
}
.urc-link--doc:hover { background: #163a8a; color: #fff; transform: translateY(-1px); }
.urc-link--site {
    background: #f4f6fb;
    color: var(--urc-navy);
    border: 1px solid var(--urc-line);
}
.urc-link--site:hover { border-color: var(--urc-navy); color: var(--urc-navy); }

.urc-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--urc-muted);
    font-weight: 600;
}

@media (max-width: 1280px) {
    .urc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
    .urc-pillars { grid-template-columns: 1fr; }
    .urc-pillar { grid-template-columns: 240px 1fr; min-height: 240px; }
    .urc-world {
        padding: 0 16px;
    }
    .urc-world__inner,
    .urc-world--aees .urc-world__inner {
        grid-template-columns: 1fr;
    }
    .urc-world__copy,
    .urc-world--aees .urc-world__copy {
        padding: 22px 18px 20px;
    }
    .urc-world__copy h2,
    .urc-world--aees .urc-world__copy h2 {
        white-space: normal;
        font-size: clamp(1.05rem, 4.6vw, 1.22rem);
        line-height: 1.3;
    }
    .urc-world__gallery { min-height: 280px; }
    #urc-cinvu .urc-world__inner { grid-template-rows: none; }
    #urc-cinvu .urc-world__gallery {
        height: auto;
        min-height: 280px;
    }
    .urc-world--aees .urc-world__logo { min-height: 220px; height: auto; padding: 0; order: -1; }
    .urc-world--aees .urc-world__logo-photo { width: 100%; height: 220px; }
    .urc-aees-seal { width: 112px; height: 112px; left: 16px; bottom: 16px; padding: 0; overflow: visible; }
    .urc-local { padding: 36px 16px 8px; }
    .urc-local__media { height: 280px; }
    .urc-local__media--wide { min-height: 280px; }
}
@media (max-width: 1024px) {
    .urc-grid { grid-template-columns: repeat(2, 1fr); }
    .urc-facts { grid-template-columns: 1fr; margin-top: -56px; }
}
@media (max-width: 720px) {
    #univga-recon-portal .uab-hero { padding: 88px 18px 120px; }
    #univga-recon-portal .uab-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .urc-grid { grid-template-columns: 1fr; }
    .urc-toolbar { position: static; }
    .urc-count { margin-left: 0; width: 100%; }
    .urc-search { width: 100%; min-width: 0; }
    .urc-pillar { grid-template-columns: 1fr; min-height: 0; }
    .urc-local__grid { grid-template-columns: 1fr; }
    .urc-local__card--wide { grid-column: span 1; }
    .urc-world__copy,
    .urc-world--aees .urc-world__copy {
        padding: 18px 16px 16px;
    }
    .urc-world__copy p,
    .urc-world--aees .urc-world__copy p {
        font-size: .92rem;
        line-height: 1.65;
    }
    .urc-world__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 140px;
        min-height: 0;
    }
    .urc-world__shot--hero { grid-column: 1 / -1; grid-row: 1; }
}
