/* ===== RESET & BASE ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
    --uga-red: #BA0C2F;
    --uga-red-dark: #8a0923;
    --uga-red-light: rgba(186,12,47,0.07);
    --uga-red-soft: rgba(186,12,47,0.03);
    --white: #FFFFFF;
    --black: #0D0F12;

    --g-25: #FCFCFD;
    --g-50: #F8F9FA;
    --g-100: #F1F3F5;
    --g-200: #E9ECEF;
    --g-300: #DEE2E6;
    --g-400: #ADB5BD;
    --g-500: #868E96;
    --g-600: #495057;
    --g-700: #343A40;
    --g-800: #212529;
    --g-900: #0D0F12;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 8px -2px rgba(0,0,0,0.08),0 2px 4px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 48px -8px rgba(0,0,0,0.12);
    --shadow-red: 0 6px 16px -3px rgba(186,12,47,0.22);

    --header-h: 56px;
    --radius: 10px;
    --radius-sm: 6px;
    --gap: 14px;
    --max-w: 1400px;
    --ease: all 0.18s ease;

    --sans: 'DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    --display: 'Playfair Display',Georgia,serif;
}

body {
    font-family: var(--sans);
    background: var(--g-50);
    min-height: 100vh;
    color: var(--g-800);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 13.5px;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--g-200);
}
.header-content {
    max-width: var(--max-w);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--uga-red);
    color: var(--white);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.title h1 {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--g-900);
    line-height: 1.15;
}
.title p {
    font-size: 0.66rem;
    color: var(--g-500);
    font-weight: 400;
    letter-spacing: 0.15px;
}
.reset-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--white);
    border: 1px solid var(--g-300);
    color: var(--g-600);
    padding: 0.32rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ease);
    font-family: var(--sans);
}
.reset-btn:hover {
    background: var(--g-50);
    border-color: var(--g-400);
    color: var(--g-800);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.7rem 1.25rem;
    margin-bottom: 0.85rem;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--g-200);
}
.stat-item { text-align: center; flex: 1; }
.stat-item + .stat-item { border-left: 1px solid var(--g-200); }
.stat-label {
    display: block;
    font-size: 0.6rem;
    color: var(--g-500);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 500;
    margin-bottom: 0.1rem;
}
.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--g-900);
}

/* ===== DASHBOARD GRID ===== */
.main-container {
    max-width: var(--max-w);
    margin: 1rem auto 2rem;
    padding: 0 1.25rem;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: var(--gap);
    min-height: 560px;
}
.grid-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--g-200);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: move;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.grid-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--g-300);
}
.grid-item.dragging { opacity: 0.5; }
.grid-item.over { border: 2px dashed var(--uga-red); background: var(--uga-red-soft); }

.grid-item[data-grid="dossier"] { grid-column: span 6; grid-row: span 2; }
.grid-item[data-grid="contacts"],
.grid-item[data-grid="clubs"]    { grid-column: span 3; }
.grid-item[data-grid="news"],
.grid-item[data-grid="chat"],
.grid-item[data-grid="opportunities"] { grid-column: span 4; }

/* Item Headers */
.item-header {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid var(--g-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.item-header h3 {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--g-700);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.item-header h3 svg { opacity: 0.5; flex-shrink: 0; }

.ai-badge {
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--g-500);
    border: 1px solid var(--g-200);
    border-radius: 4px;
    padding: 0.15rem 0.35rem;
}

/* ===== DOSSIER ===== */
.dossier-actions { display: flex; align-items: center; gap: 0.35rem; }
.ghost-btn {
    background: transparent;
    border: 1px solid var(--g-300);
    color: var(--g-600);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    font-size: 0.66rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ease);
    font-family: var(--sans);
}
.ghost-btn:hover { border-color: var(--uga-red); color: var(--uga-red); background: var(--uga-red-soft); }

.dossier-meta {
    margin: 0.65rem 0.85rem 0;
    font-size: 0.68rem;
    color: var(--g-500);
    background: var(--g-50);
    border: 1px solid var(--g-100);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.6rem;
    line-height: 1.5;
}
.dossier-content {
    flex: 1;
    padding: 0.65rem 0.85rem 0.85rem;
    overflow-y: auto;
    max-height: 600px;
}
.dossier-section { margin-bottom: 1.1rem; }
.dossier-section h4 {
    font-family: var(--display);
    color: var(--g-900);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    padding-left: 0.6rem;
    position: relative;
    letter-spacing: 0;
    text-transform: none;
}
.dossier-section h4::before {
    content: '';
    position: absolute;
    left: 0; top: 3px; bottom: 3px;
    width: 2.5px;
    background: var(--uga-red);
    border-radius: 2px;
}
.dossier-section p {
    color: var(--g-600);
    line-height: 1.7;
    font-size: 0.8rem;
}
.download-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--uga-red);
    color: var(--white);
    border: none;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    font-size: 0.66rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ease);
    font-family: var(--sans);
}
.download-btn:hover { background: var(--uga-red-dark); box-shadow: var(--shadow-red); }

/* ===== CONTACTS, CLUBS ===== */
.contacts-container,
.clubs-container { padding: 0.4rem; flex: 1; overflow-y: auto; }
.faculty-search-wrap { padding: 0.2rem 0.1rem 0.4rem; }
.faculty-search-input {
    width: 100%;
    padding: 0.35rem 0.6rem;
    font-size: 0.76rem;
    border: 1px solid var(--g-200);
    border-radius: var(--radius-sm);
    background: var(--g-50);
    color: var(--g-800);
    outline: none;
    box-sizing: border-box;
    transition: var(--ease);
}
.faculty-search-input:focus { border-color: var(--uga-red); background: #fff; }
.contact-list, .club-list { list-style: none; }
.contact-item, .club-item {
    padding: 0.55rem 0.45rem;
    border-bottom: 1px solid var(--g-100);
    transition: var(--ease);
    border-radius: var(--radius-sm);
}
.contact-item:last-child, .club-item:last-child { border-bottom: none; }
.contact-item:hover, .club-item:hover { background: var(--g-50); }
.contact-name, .club-name {
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--g-800);
    margin-bottom: 0.1rem;
}
.contact-email {
    font-size: 0.7rem;
    color: var(--uga-red);
    text-decoration: none;
    transition: var(--ease);
}
.contact-email:hover { text-decoration: underline; }
.contact-dept { font-size: 0.66rem; color: var(--g-500); margin-top: 0.05rem; }
.club-description { font-size: 0.7rem; color: var(--g-500); margin-top: 0.1rem; }
.club-link {
    display: inline-block;
    font-size: 0.66rem;
    color: var(--uga-red);
    text-decoration: none;
    margin-top: 0.15rem;
    font-weight: 500;
}
.club-link:hover { text-decoration: underline; }

.source-note {
    font-size: 0.62rem;
    color: var(--g-400);
    text-align: center;
    padding: 0.5rem 0 0.3rem;
}
.source-note a { color: var(--uga-red); text-decoration: none; }
.source-note a:hover { text-decoration: underline; }

.refresh-btn {
    background: transparent;
    border: 1px solid var(--g-300);
    border-radius: var(--radius-sm);
    padding: 0.2rem;
    cursor: pointer;
    transition: var(--ease);
    color: var(--g-400);
    display: flex;
    align-items: center;
    justify-content: center;
}
.refresh-btn:hover { background: var(--uga-red-soft); border-color: var(--uga-red); color: var(--uga-red); }

/* ===== NEWS & OPPORTUNITIES ===== */
.news-container { padding: 0.4rem; flex: 1; overflow-y: auto; }
.news-item {
    padding: 0.5rem 0.45rem;
    border-bottom: 1px solid var(--g-100);
    transition: var(--ease);
    border-radius: var(--radius-sm);
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--g-50); }
.news-title { font-weight: 500; font-size: 0.78rem; color: var(--g-800); margin-bottom: 0.1rem; line-height: 1.4; }
.news-source { font-size: 0.66rem; color: var(--g-500); display: flex; align-items: center; gap: 0.25rem; }
.news-date { color: var(--uga-red); font-weight: 500; }

/* ===== OPPORTUNITY CHECKLIST ===== */
.opp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.5rem 0.45rem;
    border-bottom: 1px solid var(--g-100);
    border-radius: var(--radius-sm);
    transition: var(--ease);
    position: relative;
}
.opp-item:last-of-type { border-bottom: none; }
.opp-item:hover { background: var(--g-50); }
.opp-item:hover .item-x { opacity: 1; }
.opp-check-label { display: flex; align-items: center; padding-top: 0.1rem; cursor: pointer; flex-shrink: 0; }
.opp-checkbox {
    width: 14px; height: 14px;
    accent-color: var(--uga-red);
    cursor: pointer;
    flex-shrink: 0;
}
.opp-body { flex: 1; min-width: 0; }
.opp-title { font-weight: 500; font-size: 0.78rem; color: var(--g-800); margin-bottom: 0.1rem; line-height: 1.4; }
.opp-meta { font-size: 0.66rem; color: var(--g-500); display: flex; align-items: center; gap: 0.25rem; }
.opp-done .opp-title { text-decoration: line-through; color: var(--g-400); }
.opp-done .opp-meta { color: var(--g-300); }
.add-more-btn {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.4rem;
    background: none;
    border: 1px dashed var(--g-200);
    border-radius: var(--radius-sm);
    color: var(--g-500);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--ease);
    text-align: center;
}
.add-more-btn:hover { border-color: var(--uga-red); color: var(--uga-red); background: var(--uga-red-soft); }

/* ===== CHAT ===== */
.chat-container { flex: 1; display: flex; flex-direction: column; height: 360px; }
.chat-messages {
    flex: 1;
    padding: 0.65rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.message {
    max-width: 86%;
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1.55;
    animation: msgPop 0.15s ease;
}
@keyframes msgPop { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }
.message.user {
    background: var(--uga-red);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}
.message.assistant {
    background: var(--g-100);
    color: var(--g-800);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}
.message.assistant.loading { color: var(--g-400); font-style: italic; }
.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem 0.4rem;
}
.quick-chip {
    border: 1px solid var(--g-200);
    background: var(--white);
    color: var(--g-600);
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    font-size: 0.64rem;
    cursor: pointer;
    transition: var(--ease);
    font-family: var(--sans);
    font-weight: 500;
}
.quick-chip:hover { border-color: var(--uga-red); color: var(--uga-red); background: var(--uga-red-soft); }
.chat-input-container {
    padding: 0.5rem 0.65rem;
    border-top: 1px solid var(--g-100);
    display: flex;
    gap: 0.35rem;
    background: var(--white);
}
.chat-input {
    flex: 1;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--g-200);
    border-radius: 18px;
    font-size: 0.78rem;
    transition: var(--ease);
    font-family: var(--sans);
    color: var(--g-800);
    background: var(--g-50);
}
.chat-input:focus { outline: none; border-color: var(--uga-red); box-shadow: 0 0 0 2px var(--uga-red-light); background: var(--white); }
.chat-input::placeholder { color: var(--g-400); }
.chat-send {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--uga-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chat-send:hover { background: var(--uga-red-dark); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,15,18,0.55);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
    background: var(--white);
    border-radius: 14px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(10px);
    transition: transform 0.22s ease;
}
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-header {
    background: var(--uga-red);
    color: var(--white);
    padding: 1.3rem 1.5rem;
    border-radius: 14px 14px 0 0;
}
.modal-header h2 {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: -0.3px;
}
.modal-header > p { font-size: 0.8rem; opacity: 0.8; }
.progress-container { margin-top: 1rem; }
.progress-bar { height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--white); border-radius: 2px; transition: width 0.3s ease; }
.progress-text { display: block; margin-top: 0.3rem; font-size: 0.7rem; opacity: 0.75; }
.modal-body { padding: 1.3rem 1.5rem; }
.question-slide { display: none; animation: fadeSlide 0.3s ease; }
.question-slide.active { display: block; }
@keyframes fadeSlide { from{opacity:0;transform:translateX(12px)} to{opacity:1;transform:translateX(0)} }
.question-label {
    display: block;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--g-900);
    margin-bottom: 0.65rem;
    letter-spacing: -0.2px;
}
.question-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--g-300);
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--ease);
    font-family: var(--sans);
    color: var(--g-800);
}
.question-input:focus { outline: none; border-color: var(--uga-red); box-shadow: 0 0 0 3px var(--uga-red-light); }
select.question-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23868E96' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}
.input-hint { margin-top: 0.3rem; font-size: 0.7rem; color: var(--g-500); }
.modal-footer {
    padding: 0.85rem 1.5rem;
    border-top: 1px solid var(--g-100);
    display: flex;
    justify-content: space-between;
}
.modal-btn {
    padding: 0.45rem 1rem;
    border: none;
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--sans);
}
.modal-btn.prev-btn { background: var(--g-100); color: var(--g-600); }
.modal-btn.prev-btn:hover:not(:disabled) { background: var(--g-200); }
.modal-btn.prev-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.modal-btn.next-btn { background: var(--uga-red); color: var(--white); margin-left: auto; }
.modal-btn.next-btn:hover { background: var(--uga-red-dark); box-shadow: var(--shadow-red); }

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    width: 24px; height: 24px;
    border: 2px solid var(--g-200);
    border-top-color: var(--uga-red);
    border-radius: 50%;
    animation: spin 0.65s linear infinite;
    margin: 1.2rem auto;
}
@keyframes spin { to{transform:rotate(360deg)} }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 1.25rem; right: 1.25rem;
    background: var(--g-900);
    color: var(--white);
    padding: 0.55rem 1rem;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateY(70px);
    opacity: 0;
    transition: var(--ease);
    z-index: 1001;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #0ca678; }
.toast.error { background: #e03131; }
.toast.info { background: var(--g-800); }

/* ===== ITEM REMOVE BUTTONS ===== */
.item-x {
    position: absolute;
    top: 0.4rem;
    right: 0.35rem;
    background: var(--white);
    border: 1px solid var(--g-200);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g-400);
    opacity: 0;
    transition: var(--ease);
    z-index: 2;
    padding: 0;
}
.contact-item, .club-item, .news-item {
    position: relative;
}
.contact-item:hover .item-x,
.club-item:hover .item-x,
.news-item:hover .item-x {
    opacity: 1;
}
.item-x:hover {
    background: var(--uga-red-light);
    border-color: var(--uga-red);
    color: var(--uga-red);
}

/* ===== SCROLLABLE CONTAINERS ===== */
.contacts-container,
.clubs-container,
.news-container,
#opportunityList {
    max-height: 280px;
    overflow-y: auto;
    padding: 0.4rem;
    flex: 1;
}
.dossier-content {
    max-height: 550px;
    overflow-y: auto;
}

/* ===== CAREER BUBBLES ===== */
.career-bubbles-section {
    margin: 0.65rem 0.85rem 0;
    padding: 0.65rem 0.7rem;
    background: var(--g-50);
    border: 1px solid var(--g-100);
    border-radius: var(--radius);
}
.career-bubbles-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--g-500);
    margin-bottom: 0.45rem;
}
.career-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.career-bubble {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--white);
    border: 1px solid var(--g-300);
    border-radius: 999px;
    padding: 0.25rem 0.5rem 0.25rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--g-700);
    transition: var(--ease);
}
.career-bubble:hover {
    border-color: var(--uga-red);
    color: var(--uga-red);
    background: var(--uga-red-soft);
}
.bubble-x {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g-400);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    transition: var(--ease);
    flex-shrink: 0;
}
.bubble-x:hover {
    color: var(--uga-red);
    background: var(--uga-red-light);
}

/* ===== LINKED NEWS ===== */
.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.news-link:hover .news-title {
    color: var(--uga-red);
    text-decoration: underline;
}
.news-link:hover {
    background: var(--g-50);
}
@media (max-width:1200px) {
    .dashboard-grid { grid-template-columns: repeat(6,1fr); }
    .grid-item[data-grid="dossier"] { grid-column: span 6; }
    .grid-item[data-grid="contacts"],
    .grid-item[data-grid="clubs"],
    .grid-item[data-grid="news"],
    .grid-item[data-grid="chat"],
    .grid-item[data-grid="opportunities"] { grid-column: span 3; }
}
@media (max-width:768px) {
    .header-content { flex-direction: column; height: auto; padding: 0.6rem 1rem; gap: 0.3rem; text-align: center; }
    .logo-section { flex-direction: column; }
    .stats-bar { flex-wrap: wrap; gap: 0.4rem; padding: 0.5rem 0.6rem; }
    .stat-item { flex: 1 1 45%; border-left: none !important; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .grid-item[data-grid] { grid-column: span 1 !important; }
    .modal-container { width: 96%; }
    .dossier-actions { flex-direction: column; align-items: flex-end; }
}