/* Convocatorias DE — Frontend styles
   Usa las variables CSS del shell de la intranet (--sh-*).
   Fallbacks para páginas públicas donde app-shell.css no carga. */

.conv-frontend {
    --sh-primary:      #10406D;
    --sh-primary-hover:#0B3155;
    --sh-primary-bg:   #EAF2F8;
    --sh-red:          #dc2626;
    --sh-red-hover:    #b91c1c;
    --sh-red-bg:       #fef2f2;
    --sh-red-light:    rgba(220,38,38,.12);
    --sh-border:       #e2e8f0;
    --sh-border-dark:  #cbd5e1;
    --sh-bg:           #f1f5f9;
    --sh-card:         #ffffff;
    --sh-hover:        #f8fafc;
    --sh-text:         #0f172a;
    --sh-text-nav:     #334155;
    --sh-text-body:    #475569;
    --sh-text-muted:   #64748b;
    --sh-text-subtle:  #94a3b8;
    --sh-green:        #5F7F6D;
    --sh-green-bg:     #EEF4EF;
    --sh-neutral:      #cbd5e1;
    --sh-neutral-light:#F2F0EA;
    --sh-neutral-dark: #5F594B;
    --conv-area-ensenanza: #F15A55;
    --conv-area-investigacion: #10406D;
    --conv-area-gestion: #6F8C79;
    --conv-area-extension: #7A6A8E;
    --conv-area-pasantias: #0F766E;
    --conv-area-becas: #A16207;
    --sh-orange:       #ea580c;
    --sh-orange-bg:    #fff7ed;
    --sh-amber:        #d97706;
    --sh-amber-bg:     #fffbeb;
    --sh-radius:       10px;
    --sh-radius-lg:    12px;
    --sh-shadow:       0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
    --sh-shadow-md:    0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
}

.conv-frontend {
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--sh-text);
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}

.conv-frontend * { box-sizing: border-box; }

/* ── Public organization header ──────────────────────────────────────────── */

.de-shell--public-solicitud .de-shell__main {
    background: #f8fafc;
}

.conv-public-org-header {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 22px;
    padding: 20px 32px 18px;
    border-bottom: 1px solid #dbe3ec;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.conv-public-org-header__logo {
    display: block;
    width: min(460px, 56vw);
    max-height: 72px;
    margin-left: -44px;
    object-fit: contain;
}

.conv-public-org-header__text {
    text-align: right;
    color: #334155;
    min-width: 220px;
}

.conv-public-org-header__text p {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.conv-public-org-header__text span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
}

.de-shell--public-solicitud .conv-frontend {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

/* ── Page header ─────────────────────────────────────────────────────────── */

.conv-page-header {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.conv-page-header__text h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.conv-page-header__text p {
    font-size: 14px;
    color: var(--sh-text-body);
    margin: 0;
}

.conv-solicitud-detail-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    margin-bottom: 24px;
}

.conv-solicitud-detail-header__back {
    grid-column: 1;
    grid-row: 1;
}

.conv-solicitud-detail-header__title {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
}

.conv-solicitud-detail-header__title .conv-area-badge {
    margin-bottom: 8px;
}

.conv-solicitud-detail-header__title h2 {
    margin: 0;
    color: var(--sh-text, #0f172a);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.22;
}

.conv-solicitud-detail-header__subtitle {
    margin-top: 2px;
    color: var(--sh-text-muted, #64748b);
    font-size: 13px;
}

.conv-solicitud-detail-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
}

/* ── Filter tabs ─────────────────────────────────────────────────────────── */

.conv-filter-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.conv-filter-btn {
    padding: 6px 16px;
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    background: var(--sh-card);
    color: var(--sh-text-muted);
    transition: background .15s, color .15s, border-color .15s;
}

.conv-filter-btn:hover {
    background: var(--sh-hover);
    color: var(--sh-text-nav);
    border-color: var(--sh-border-dark);
}

.conv-filter-btn--active {
    background: var(--sh-primary);
    color: #fff;
    border-color: var(--sh-primary);
}

/* ── Llamados grid ───────────────────────────────────────────────────────── */

.conv-llamados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.conv-llamado-card {
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: border-color .15s, box-shadow .15s, transform .12s;
}

.conv-llamado-card:hover {
    border-color: var(--sh-neutral, #B6B2A3);
    box-shadow: var(--sh-shadow-md);
    transform: translateY(-2px);
}

.conv-llamado-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    min-width: 0;
}

.conv-llamado-card__status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.conv-llamado-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
    max-width: max-content;
}

.conv-llamado-card__date {
    color: var(--sh-text-subtle);
    font-size: 12px;
    line-height: 1.2;
}

.conv-card-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border: 1px solid var(--sh-border);
    background: #fff;
    color: var(--sh-text);
    border-radius: 6px;
    padding: 4px 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

.conv-card-action-btn--icon {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 999px;
}

.conv-card-action-btn--icon svg {
    width: 15px;
    height: 15px;
}

.conv-card-action-btn--danger {
    border-color: #fecaca;
    color: #b91c1c;
}

.conv-llamado-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--sh-text);
}

.conv-llamado-card .conv-meta {
    font-size: 13px;
    color: var(--sh-text-muted);
    margin: 3px 0 0;
}

.conv-card-dates {
    display: grid;
    gap: 6px;
    margin: 12px 0;
    color: var(--sh-text-muted);
    font-size: 12px;
    line-height: 1.35;
}

.conv-card-dates__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.conv-card-dates__row strong {
    color: var(--sh-text);
    font-size: 11px;
    letter-spacing: .02em;
}

.conv-card-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--sh-radius);
    background: rgba(248, 250, 252, 0.9);
}

.conv-card-metric span {
    color: var(--sh-text-muted);
    font-size: 12px;
    font-weight: 700;
}

.conv-card-metric strong {
    color: var(--sh-text);
    font-size: 18px;
    line-height: 1;
}

.conv-cierre-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: 99px;
    background: #f3f4f6;
    color: #111827;
    font-size: 12px;
    font-weight: 600;
}

.conv-audience {
    margin: 12px 0 8px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: var(--sh-radius);
    background: #f9fafb;
}

.conv-audience span,
.conv-detail-item span {
    display: block;
    margin-bottom: 3px;
    color: var(--sh-text-subtle);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.conv-audience strong,
.conv-detail-item strong {
    display: block;
    color: var(--sh-text);
    font-size: 13px;
    line-height: 1.4;
}

.conv-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.conv-card-btn {
    min-height: 38px;
    border-radius: var(--sh-radius);
    padding: 8px 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}

.conv-card-btn--secondary {
    background: var(--sh-card);
    border: 1px solid var(--sh-border-dark);
    color: var(--sh-text-nav);
}

.conv-card-btn--secondary:hover,
.conv-card-btn--secondary:focus-visible {
    outline: none;
    border-color: var(--sh-red);
    color: var(--sh-red);
    background: rgba(220, 38, 38, .04);
}

.conv-card-btn--primary {
    background: var(--sh-primary);
    border: 1px solid var(--sh-primary);
    color: #fff;
}

.conv-card-btn--primary:hover,
.conv-card-btn--primary:focus-visible {
    outline: none;
    background: var(--sh-primary-hover);
    border-color: var(--sh-primary-hover);
}

/* ── Área / función ─────────────────────────────────────────────────────── */

.conv-area-badge {
    --conv-area-accent: var(--conv-area-investigacion);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    color: var(--sh-text-nav);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.conv-area-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--conv-area-accent);
    flex: 0 0 auto;
}

.conv-area-badge--investigacion {
    --conv-area-accent: var(--conv-area-investigacion);
}

.conv-area-badge--ensenanza {
    --conv-area-accent: var(--conv-area-ensenanza);
}

.conv-area-badge--extension {
    --conv-area-accent: var(--conv-area-extension);
}

.conv-area-badge--pasantias {
    --conv-area-accent: var(--conv-area-pasantias);
}

.conv-area-badge--becas {
    --conv-area-accent: var(--conv-area-becas);
}

.conv-area-badge--gestion {
    --conv-area-accent: var(--conv-area-gestion);
}

/* ── Status badges ───────────────────────────────────────────────────────── */

.conv-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
}

.conv-badge--borrador   { background: var(--sh-bg);      color: var(--sh-text-muted); }
.conv-badge--activo     { background: var(--sh-green-bg); color: var(--sh-green); }
.conv-badge--suspendido { background: var(--sh-amber-bg); color: var(--sh-amber); }
.conv-badge--finalizado { background: #eff6ff;             color: #1d4ed8; }
.conv-badge--desierto   { background: var(--sh-red-bg);   color: var(--sh-red); }

.conv-badge--icon {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid #C9D8CE;
}

.conv-badge--icon svg {
    width: 14px;
    height: 14px;
}

.conv-status-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 8px 0 0;
    color: var(--sh-green, #5F7F6D);
    font-size: 12px;
    font-weight: 600;
}

.conv-status-note svg {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
}

/* ── Form wrapper ────────────────────────────────────────────────────────── */

.conv-form-wrapper,
.conv-detail-wrapper {
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
    padding: 28px 32px;
}

.conv-detail-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.conv-detail-item {
    padding: 12px 14px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    background: var(--sh-hover);
}

.conv-detail-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.conv-detail-link {
    display: inline-block;
    color: var(--sh-red);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.conv-detail-link:hover,
.conv-detail-link:focus-visible {
    outline: none;
    text-decoration: underline;
}

.conv-detail-link--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--sh-primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.conv-detail-link--button:hover,
.conv-detail-link--button:focus-visible {
    background: var(--sh-primary-hover);
    color: #fff;
    text-decoration: none;
}

.conv-form-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--sh-border);
}

.conv-form-header--with-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.conv-form-header__top {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sh-border);
}

.conv-form-header__logo {
    display: block;
    width: 360px;
    max-width: 76%;
    height: auto;
    object-fit: contain;
}

.conv-form-header__info {
    min-width: 0;
    text-align: left;
}

.conv-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--sh-text-muted);
    padding: 0;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
    transition: color .15s;
}

.conv-back-btn:hover { color: var(--sh-red); }

.conv-form-header h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sh-text);
}

.conv-form-header p {
    margin: 0;
    font-size: 13px;
    color: var(--sh-text-muted);
}

/* ── Fields ──────────────────────────────────────────────────────────────── */

.conv-field-group { margin-bottom: 14px; }

.conv-field-group--wide {
    grid-column: 1 / -1;
}

.conv-field-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--sh-text-nav);
}

.conv-field-group .conv-hint {
    font-size: 12px;
    color: var(--sh-text-muted);
    margin-top: 4px;
}

.conv-field-group input[type="text"],
.conv-field-group input[type="email"],
.conv-field-group input[type="number"],
.conv-field-group input[type="url"],
.conv-field-group input[type="file"],
.conv-field-group input[type="date"],
.conv-field-group select,
.conv-field-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--sh-text);
    background: var(--sh-card);
    transition: border-color .15s, box-shadow .15s;
}

.conv-field-group input:focus,
.conv-field-group select:focus,
.conv-field-group textarea:focus {
    outline: none;
    border-color: var(--sh-red);
    box-shadow: 0 0 0 3px var(--sh-red-light);
}

.conv-field-group textarea { min-height: 80px; resize: vertical; }

.conv-file-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    margin-bottom: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .08);
    color: var(--sh-red);
    font-size: 13px;
    font-weight: 700;
}

.conv-file-pill a {
    color: var(--sh-red);
    text-decoration: none;
}

.conv-file-pill a:hover {
    text-decoration: underline;
}

.conv-file-pill button {
    border: 0;
    background: transparent;
    color: var(--sh-red);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.conv-optional-block {
    margin: 18px 0;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    background: var(--sh-card);
    overflow: hidden;
}

.conv-optional-block__head {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: var(--sh-hover);
}

.conv-optional-block__head h3 {
    margin: 0;
    color: var(--sh-text);
    font-size: 15px;
    font-weight: 700;
}

.conv-optional-block__body {
    padding: 16px;
    border-top: 1px solid var(--sh-border);
}

.conv-optional-block.is-open {
    border-color: rgba(220, 38, 38, .28);
}

.conv-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.conv-date-range {
    position: relative;
}

.conv-date-range__trigger {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    background: var(--sh-card);
    color: var(--sh-text);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s, background .15s;
}

.conv-date-range__trigger:hover,
.conv-date-range__trigger:focus-visible {
    outline: none;
    border-color: var(--sh-red);
    box-shadow: 0 0 0 3px var(--sh-red-light);
}

.conv-date-range__trigger:disabled {
    cursor: default;
    opacity: .75;
}

.conv-date-range__arrow {
    color: var(--sh-red);
    font-weight: 700;
}

.conv-date-range__popover {
    position: absolute;
    z-index: 25;
    top: calc(100% + 8px);
    left: 0;
    width: min(340px, 100%);
    padding: 14px;
    border: 1px solid var(--sh-border);
    border-radius: 18px;
    background: var(--sh-card);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .13);
}

.conv-date-range__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.conv-date-range__nav strong {
    color: var(--sh-text);
    font-size: 13px;
    text-transform: capitalize;
}

.conv-date-range__nav button,
.conv-date-range__footer button {
    border: 1px solid var(--sh-border);
    border-radius: 999px;
    background: #fff;
    color: var(--sh-text);
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.conv-date-range__nav button {
    width: 32px;
    height: 32px;
}

.conv-date-range__weekdays,
.conv-date-range__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.conv-date-range__weekdays {
    margin-bottom: 6px;
    color: var(--sh-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.conv-date-range__day {
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--sh-text);
    font-family: inherit;
    cursor: pointer;
}

.conv-date-range__day:hover,
.conv-date-range__day:focus-visible {
    outline: none;
    background: var(--sh-red-light);
}

.conv-date-range__day.is-in-range {
    background: rgba(220, 38, 38, .08);
}

.conv-date-range__day.is-selected {
    background: var(--sh-red);
    color: #fff;
    font-weight: 700;
}

.conv-date-range__day--empty {
    pointer-events: none;
}

.conv-date-range__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: var(--sh-text-muted);
    font-size: 12px;
}

.conv-date-range__footer button {
    padding: 6px 10px;
    color: var(--sh-red);
}

.conv-people-picker {
    display: grid;
    gap: 8px;
}

.conv-people-picker__selected {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.conv-people-picker__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .08);
    color: var(--sh-red);
    font-size: 12px;
    font-weight: 700;
}

.conv-people-picker__chip button {
    border: 0;
    background: transparent;
    color: var(--sh-red);
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.conv-people-picker__list {
    display: grid;
    gap: 6px;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 4px;
}

.conv-people-picker__option {
    width: 100%;
    min-height: 64px;
    text-align: left;
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    background: var(--sh-card);
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.conv-people-picker__option:hover,
.conv-people-picker__option:focus-visible {
    outline: none;
    border-color: var(--sh-red);
    background: var(--sh-hover);
    box-shadow: 0 0 0 3px var(--sh-red-light);
}

.conv-people-picker__option-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sh-text);
    line-height: 1.35;
}

.conv-people-picker__option-meta {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--sh-text-muted);
}

.conv-people-picker__empty {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--sh-hover);
    color: var(--sh-text-muted);
    font-size: 13px;
}

.conv-people-picker__external-button {
    justify-self: start;
    border: 1px solid var(--sh-border);
    border-radius: 999px;
    background: #fff;
    color: var(--sh-text);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
}

.conv-people-picker__external-button:hover,
.conv-people-picker__external-button:focus-visible {
    outline: none;
    border-color: rgba(220, 38, 38, .35);
    color: var(--sh-red);
    background: rgba(220, 38, 38, .04);
}

.conv-people-picker__external {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.conv-course-picker {
    display: grid;
    gap: 8px;
}

.conv-course-picker__selected {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.conv-course-picker__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--sh-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.conv-course-picker__clear {
    border: none;
    background: transparent;
    color: var(--sh-red);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.conv-course-picker__list {
    display: grid;
    gap: 6px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}

.conv-course-picker__option {
    width: 100%;
    min-height: 64px;
    text-align: left;
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    background: var(--sh-card);
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.conv-course-picker__option:hover,
.conv-course-picker__option:focus-visible {
    outline: none;
    border-color: var(--sh-red);
    background: var(--sh-hover);
    box-shadow: 0 0 0 3px var(--sh-red-light);
}

.conv-course-picker__option.is-active {
    border-color: rgba(220, 38, 38, 0.24);
    background: rgba(220, 38, 38, 0.04);
}

.conv-course-picker__option-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sh-text);
    line-height: 1.35;
}

.conv-course-picker__option-meta {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--sh-text-muted);
}

.conv-course-picker__empty {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--sh-hover);
    color: var(--sh-text-muted);
    font-size: 13px;
}

.conv-funding-picker {
    display: grid;
    gap: 8px;
}

.conv-funding-picker__selected {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.conv-funding-picker__chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--sh-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.conv-funding-picker__clear {
    border: none;
    background: transparent;
    color: var(--sh-red);
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.conv-funding-picker__list {
    display: grid;
    gap: 6px;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 4px;
}

.conv-funding-picker__option {
    width: 100%;
    min-height: 64px;
    text-align: left;
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    background: var(--sh-card);
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.conv-funding-picker__option:hover,
.conv-funding-picker__option:focus-visible {
    outline: none;
    border-color: var(--sh-red);
    background: var(--sh-hover);
    box-shadow: 0 0 0 3px var(--sh-red-light);
}

.conv-funding-picker__option.is-active {
    border-color: rgba(220, 38, 38, 0.24);
    background: rgba(220, 38, 38, 0.04);
}

.conv-funding-picker__option-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sh-text);
    line-height: 1.35;
}

.conv-funding-picker__option-meta {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--sh-text-muted);
}

.conv-funding-picker__empty {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--sh-hover);
    color: var(--sh-text-muted);
    font-size: 13px;
}

.conv-funding-picker__other-button {
    justify-self: start;
    border: 1px solid var(--sh-border);
    border-radius: 999px;
    background: #fff;
    color: var(--sh-text);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
}

.conv-funding-picker__other-button:hover,
.conv-funding-picker__other-button:focus-visible {
    outline: none;
    border-color: rgba(220, 38, 38, 0.35);
    color: var(--sh-red);
    background: rgba(220, 38, 38, 0.04);
}

/* ── Etapas frontend ────────────────────────────────────────────────────── */

.conv-etapas-editor {
    display: grid;
    gap: 14px;
}

.conv-etapas-editor__intro,
.conv-empty-state p {
    margin: 0;
    color: var(--sh-text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.conv-etapa-card,
.conv-empty-state,
.conv-postulante-card {
    border: 1px solid var(--sh-border);
    border-radius: 18px;
    background: var(--sh-card);
    padding: 18px;
}

.conv-etapa-card.is-active {
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.conv-etapa-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.conv-etapa-card__head strong {
    color: var(--sh-text);
    font-size: 14px;
}

.conv-etapa-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 30px;
    border-radius: 999px;
    background: var(--sh-red-light);
    color: var(--sh-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.conv-etapa-card__toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sh-text-muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.conv-etapa-card__toggle input {
    accent-color: var(--sh-red);
}

.conv-etapa-card__body {
    margin-top: 16px;
}

.conv-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.conv-public-link-card {
    align-items: center;
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    box-shadow: var(--sh-shadow);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.5fr);
    margin: 0 0 20px;
    padding: 16px;
}

.conv-public-link-card strong {
    color: var(--sh-text);
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.conv-public-link-card p {
    color: var(--sh-text-muted);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.conv-public-link-card__control {
    display: flex;
    gap: 8px;
    min-width: 0;
}

.conv-public-link-card__control input {
    background: var(--sh-hover);
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    color: var(--sh-text-body);
    flex: 1 1 auto;
    font: inherit;
    font-size: 13px;
    min-height: 38px;
    min-width: 0;
    padding: 7px 10px;
}

.conv-call-actions-panel {
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    box-shadow: var(--sh-shadow);
    margin: 0 0 14px;
    overflow: hidden;
}

.conv-call-action-row {
    align-items: center;
    border-bottom: 1px solid var(--sh-border);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.7fr);
    padding: 10px 14px;
}

.conv-call-action-row:last-child {
    border-bottom: 0;
}

.conv-call-action-row strong {
    color: var(--sh-text);
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.conv-call-action-row p {
    color: var(--sh-text-muted);
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
}

.conv-call-actions-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.conv-call-action-tile {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
}

.conv-call-action-tile + .conv-call-action-tile {
    border-left: 1px solid var(--sh-border);
}

.conv-call-action-tile--difusion {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
}

.conv-call-action-tile.conv-call-action-tile--cierre {
    border-left: 0;
    border-top: 1px solid var(--sh-border);
}

.conv-call-action-buttons {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}

.conv-call-action-buttons > button {
    flex: 1 1 0;
    min-width: 0;
}

.conv-call-action-tile strong {
    color: var(--sh-text);
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.conv-call-action-tile p {
    color: var(--sh-text-muted);
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
}

.conv-postulaciones-list {
    display: grid;
    gap: 12px;
}

.conv-postulaciones-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.conv-postulaciones-summary__stat,
.conv-postulaciones-summary__breakdown {
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    background: var(--sh-card);
    padding: 14px;
}

.conv-postulaciones-summary__stat span {
    display: block;
    color: var(--sh-text-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.conv-postulaciones-summary__stat strong {
    color: var(--sh-text);
    font-size: 22px;
    line-height: 1.1;
}

.conv-postulaciones-summary__breakdown {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.conv-postulaciones-summary__breakdown span {
    border: 1px solid rgba(220, 38, 38, .14);
    border-radius: 999px;
    background: rgba(220, 38, 38, .04);
    color: var(--sh-red);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
}

.conv-empty-state {
    display: grid;
    gap: 8px;
}

.conv-empty-state strong {
    color: var(--sh-text);
}

.conv-postulante-card {
    display: grid;
    gap: 10px;
}

.conv-postulante-card strong {
    display: block;
    color: var(--sh-text);
}

.conv-postulante-card span {
    color: var(--sh-text-muted);
}

.conv-postulante-card__meta,
.conv-postulante-card__docs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}

.conv-postulante-card__docs a {
    color: var(--sh-red);
    font-weight: 700;
    text-decoration: none;
}

/* ── Section title ───────────────────────────────────────────────────────── */

.conv-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--sh-text-subtle);
    margin: 24px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--sh-border);
}

/* ── Checkbox ────────────────────────────────────────────────────────────── */

.conv-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
    color: var(--sh-text-body);
}

.conv-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--sh-red);
}

.conv-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.conv-checkbox-label input[type="radio"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--sh-red);
}

/* ── Submit button ───────────────────────────────────────────────────────── */

.conv-submit-btn {
    background: var(--sh-primary);
    color: #fff;
    border: none;
    border-radius: var(--sh-radius);
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-family: inherit;
    transition: background .15s;
}

.conv-submit-btn:hover:not(:disabled) { background: var(--sh-primary-hover); }
.conv-submit-btn:disabled { opacity: .55; cursor: not-allowed; }
.conv-submit-btn--inline { width: auto; min-width: 180px; }

/* ── States ──────────────────────────────────────────────────────────────── */

.conv-loading {
    text-align: center;
    padding: 48px;
    color: var(--sh-text-muted);
    font-size: 15px;
}

.conv-error {
    background: var(--sh-red-bg);
    border: 1px solid rgba(220,38,38,.25);
    border-radius: var(--sh-radius);
    padding: 12px 16px;
    color: var(--sh-red);
    font-size: 14px;
    margin-bottom: 16px;
}

.conv-success {
    background: var(--sh-green-bg);
    border: 1px solid rgba(22,163,74,.3);
    border-radius: var(--sh-radius-lg);
    padding: 36px 32px;
    text-align: center;
}

.conv-success h2 { color: var(--sh-green); margin-bottom: 10px; }
.conv-success p  { color: var(--sh-green); margin: 0; }

.conv-empty {
    text-align: center;
    color: var(--sh-text-muted);
    padding: 48px 20px;
    font-size: 15px;
}

.conv-public-code-card {
    width: min(460px, 100%);
    margin: 26px 0 0;
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
    padding: 28px 32px;
}

.conv-public-code-card h2 {
    margin: 0 0 6px;
    color: var(--sh-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.conv-public-code-card p {
    margin: 0 0 18px;
    color: var(--sh-text-body);
    font-size: 14px;
    line-height: 1.5;
}

.conv-public-send-modal {
    background: #ffffff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
    padding: 26px 28px 24px;
}

/* ── File upload status ──────────────────────────────────────────────────── */

.conv-file-status { margin-top: 6px; font-size: 13px; color: var(--sh-green); }
.conv-file-status.error { color: var(--sh-red); }

/* ── Revision history ────────────────────────────────────────────────────── */

.conv-revision-item {
    background: var(--sh-bg);
    border-radius: var(--sh-radius);
    border-left: 3px solid var(--sh-red);
    padding: 12px 16px;
    margin-bottom: 10px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .conv-form-wrapper  { padding: 20px 16px; }
    .conv-detail-wrapper { padding: 20px 16px; }
    .conv-grid-2        { grid-template-columns: 1fr; }
    .conv-llamados-grid { grid-template-columns: 1fr; }
    .conv-page-header   { flex-direction: column; }
    .conv-form-header__logo {
        width: 280px;
        max-width: 94%;
    }
    .conv-card-actions  { grid-template-columns: 1fr; }
    .conv-card-metric   { align-items: flex-start; flex-direction: column; }
    .conv-llamado-card__actions { justify-content: flex-end; }
    .conv-postulaciones-summary { grid-template-columns: 1fr; }
    .conv-detail-actions { justify-content: stretch; }
    .conv-submit-btn--inline { width: 100%; }
}

@media (max-width: 640px) {
    .conv-solicitud-detail-header {
        grid-template-columns: 1fr;
    }

    .conv-solicitud-detail-header__actions {
        grid-column: 1;
        grid-row: 2;
    }

    .conv-solicitud-detail-header__title {
        grid-row: 3;
    }

    .conv-solicitud-detail-header__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* ── Intranet UI alignment ──────────────────────────────────────────────── */

body.iecon-module-page .de-shell__main .conv-frontend,
.de-shell .de-shell__main .conv-frontend {
    width: 100%;
    max-width: none;
    color: #111827;
    font-family: 'PT Sans', sans-serif;
}

body.iecon-module-page .de-shell__main .conv-page-header,
.de-shell .de-shell__main .conv-page-header {
    margin: 0 0 30px;
    align-items: center;
}

body.iecon-module-page .de-shell__main .conv-page-header__text h1,
.de-shell .de-shell__main .conv-page-header__text h1 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
}

body.iecon-module-page .de-shell__main .conv-page-header__text p,
.de-shell .de-shell__main .conv-page-header__text p {
    color: #475569;
    font-size: 16px;
    line-height: 1.5;
}

body.iecon-module-page .de-shell__main .conv-llamados-grid,
.de-shell .de-shell__main .conv-llamados-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

body.iecon-module-page .de-shell__main .conv-llamado-card,
.de-shell .de-shell__main .conv-llamado-card,
body.iecon-module-page .de-shell__main .conv-form-wrapper,
.de-shell .de-shell__main .conv-form-wrapper,
body.iecon-module-page .de-shell__main .conv-detail-wrapper,
.de-shell .de-shell__main .conv-detail-wrapper,
body.iecon-module-page .de-shell__main .conv-success,
.de-shell .de-shell__main .conv-success,
body.iecon-module-page .de-shell__main .conv-empty,
.de-shell .de-shell__main .conv-empty {
    background: #fff;
    border: 1px solid var(--sh-border, #e2e8f0);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .07);
}

body.iecon-module-page .de-shell__main .conv-llamado-card,
.de-shell .de-shell__main .conv-llamado-card {
    padding: 24px;
}

body.iecon-module-page .de-shell__main .conv-llamado-card:hover,
.de-shell .de-shell__main .conv-llamado-card:hover {
    border-color: var(--sh-neutral, #B6B2A3);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

body.iecon-module-page .de-shell__main .conv-llamado-card h3,
.de-shell .de-shell__main .conv-llamado-card h3 {
    color: #111827;
    font-size: 18px;
    line-height: 1.25;
}

body.iecon-module-page .de-shell__main .conv-meta,
.de-shell .de-shell__main .conv-meta {
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

body.iecon-module-page .de-shell__main .conv-form-wrapper,
.de-shell .de-shell__main .conv-form-wrapper,
body.iecon-module-page .de-shell__main .conv-detail-wrapper,
.de-shell .de-shell__main .conv-detail-wrapper {
    padding: 28px;
}

.de-shell--public-postulacion .de-shell__main .conv-form-wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

body.iecon-module-page .de-shell__main .conv-form-header,
.de-shell .de-shell__main .conv-form-header {
    border-bottom-color: #eef2f7;
}

body.iecon-module-page .de-shell__main .conv-form-header h2,
.de-shell .de-shell__main .conv-form-header h2 {
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
}

body.iecon-module-page .de-shell__main .conv-section-title,
.de-shell .de-shell__main .conv-section-title {
    color: #475569;
    border-bottom-color: #e2e8f0;
}

body.iecon-module-page .de-shell__main .conv-field-group label,
.de-shell .de-shell__main .conv-field-group label {
    color: #334155;
    font-weight: 700;
}

body.iecon-module-page .de-shell__main .conv-field-group input[type="text"],
body.iecon-module-page .de-shell__main .conv-field-group input[type="email"],
body.iecon-module-page .de-shell__main .conv-field-group input[type="number"],
body.iecon-module-page .de-shell__main .conv-field-group input[type="url"],
body.iecon-module-page .de-shell__main .conv-field-group input[type="file"],
body.iecon-module-page .de-shell__main .conv-field-group input[type="date"],
body.iecon-module-page .de-shell__main .conv-field-group select,
body.iecon-module-page .de-shell__main .conv-field-group textarea,
.de-shell .de-shell__main .conv-field-group input[type="text"],
.de-shell .de-shell__main .conv-field-group input[type="email"],
.de-shell .de-shell__main .conv-field-group input[type="number"],
.de-shell .de-shell__main .conv-field-group input[type="url"],
.de-shell .de-shell__main .conv-field-group input[type="file"],
.de-shell .de-shell__main .conv-field-group input[type="date"],
.de-shell .de-shell__main .conv-field-group select,
.de-shell .de-shell__main .conv-field-group textarea {
    min-height: 44px;
    border-color: #d6dde6;
    border-radius: 8px;
    font-size: 15px;
}

body.iecon-module-page .de-shell__main .conv-submit-btn,
.de-shell .de-shell__main .conv-submit-btn,
body.iecon-module-page .de-shell__main .conv-frontend button,
.de-shell .de-shell__main .conv-frontend button {
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: .08em;
}

body.iecon-module-page .de-shell__main .conv-people-picker__external-button,
.de-shell .de-shell__main .conv-people-picker__external-button,
body.iecon-module-page .de-shell__main .conv-funding-picker__other-button,
.de-shell .de-shell__main .conv-funding-picker__other-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    padding: 9px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    transition: background .15s, border-color .15s, box-shadow .15s;
}

body.iecon-module-page .de-shell__main .conv-people-picker__external-button:hover,
.de-shell .de-shell__main .conv-people-picker__external-button:hover,
body.iecon-module-page .de-shell__main .conv-people-picker__external-button:focus-visible,
.de-shell .de-shell__main .conv-people-picker__external-button:focus-visible,
body.iecon-module-page .de-shell__main .conv-funding-picker__other-button:hover,
.de-shell .de-shell__main .conv-funding-picker__other-button:hover,
body.iecon-module-page .de-shell__main .conv-funding-picker__other-button:focus-visible,
.de-shell .de-shell__main .conv-funding-picker__other-button:focus-visible {
    outline: none;
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #111827;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

body.iecon-module-page .de-shell__main .conv-submit-btn,
.de-shell .de-shell__main .conv-submit-btn {
    background: var(--sh-primary, #10406D);
}

body.iecon-module-page .de-shell__main .conv-submit-btn:hover:not(:disabled),
.de-shell .de-shell__main .conv-submit-btn:hover:not(:disabled) {
    background: var(--sh-primary-hover, #0B3155);
}

body.iecon-module-page .de-shell__main .conv-badge,
.de-shell .de-shell__main .conv-badge,
body.iecon-module-page .de-shell__main .conv-cierre-badge,
.de-shell .de-shell__main .conv-cierre-badge {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .conv-public-org-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
        padding: 14px 16px 16px;
    }

    .conv-public-org-header__logo {
        width: min(360px, 100%);
        max-height: 62px;
        margin-left: -34px;
    }

    .conv-public-org-header__text {
        min-width: 0;
        text-align: left;
    }

    .de-shell--public-solicitud .conv-frontend {
        width: min(100% - 24px, 1120px);
    }

    .conv-public-link-card {
        grid-template-columns: 1fr;
    }

    .conv-public-link-card__control {
        align-items: stretch;
        flex-direction: column;
    }

    .conv-call-action-row {
        grid-template-columns: 1fr;
    }

    .conv-call-actions-grid {
        grid-template-columns: 1fr;
    }

    .conv-call-action-tile {
        grid-template-columns: 1fr;
    }

    .conv-call-action-buttons {
        width: 100%;
    }

    .conv-call-action-tile + .conv-call-action-tile {
        border-left: 0;
        border-top: 1px solid var(--sh-border);
    }

    body.iecon-module-page .de-shell__main .conv-page-header,
    .de-shell .de-shell__main .conv-page-header {
        align-items: flex-start;
    }

    body.iecon-module-page .de-shell__main .conv-page-header__text h1,
    .de-shell .de-shell__main .conv-page-header__text h1 {
        font-size: 26px;
    }
}
