/* Shared, light company feed on Just Founded and the Talent overview. */
.talent-notifications { --notification-row-height: 74px; --notification-gap: 6px; min-width: 0; padding: 14px; border-radius: 12px; color: var(--white); }
.talent-notifications[data-company-notifications] { background: var(--navy-light); }
.talent-notifications-head, .talent-notifications-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.talent-notifications-head { margin-bottom: 10px; }
.talent-notifications-head h2 { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.25; font-weight: 600; color: var(--white); }
.talent-notifications-head span, .talent-notifications-foot { font-size: 0.75rem; color: var(--text-light); }
.talent-feed-control, .talent-feed-next { appearance: none; font: inherit; font-size: 0.75rem; color: var(--text-light); cursor: pointer; background: transparent; }
.talent-feed-control { border: 1px solid var(--border-light); border-radius: 999px; padding: 0.25rem 0.6rem; min-width: 4rem; }
.talent-feed-control:hover, .talent-feed-next:hover { color: var(--white); background: var(--navy-lighter); }
.talent-feed-next { border: 0; border-radius: 6px; padding: 0.3rem 0.4rem; }
.talent-notification-viewport { height: calc(var(--notification-count, 3) * var(--notification-row-height) + (var(--notification-count, 3) - 1) * var(--notification-gap)); overflow: hidden; border-radius: 6px; }
.talent-notification-stack { display: grid; gap: var(--notification-gap); }
.talent-notification { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 0.65rem; align-items: center; height: var(--notification-row-height); padding: 8px 12px; border-radius: 6px; background: var(--surface-card); color: var(--white); text-decoration: none; }
.talent-notification:first-child { background: var(--blue-light); }
.talent-notification:hover { background: var(--navy-lighter); }
.talent-company-logo { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--logo-tile-border); border-radius: 5px; background: var(--logo-tile-bg); font-family: var(--font-display); font-weight: 650; font-size: 0.8rem; color: var(--white); overflow: hidden; }
.talent-company-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.talent-notification-body { min-width: 0; }
.talent-notification-kicker { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 2px; line-height: 1.2; }
.talent-notification-signal { display: inline-flex; align-items: center; gap: 5px; color: var(--eyebrow); font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.talent-notification-signal::before { content: ""; width: 5px; height: 5px; flex: none; border-radius: 50%; background: currentColor; }
.talent-notification-date { color: var(--text-light); font-size: 0.625rem; white-space: nowrap; }
.talent-notification-title { display: block; font-size: 0.9375rem; font-weight: 600; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.talent-notification:first-child .talent-notification-title { color: var(--blue); }
.talent-notification-details { margin-top: 2px; color: var(--text-light); font-size: 0.75rem; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.talent-notifications-foot { margin-top: 8px; }
.talent-notifications :focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; }
.talent-notification-actions { display: flex; align-items: center; gap: 0.5rem; }
.talent-notifications--compact { --notification-row-height: 62px; height: 100%; padding: 8px 14px; border-radius: 0; }
.talent-notifications--compact .talent-notifications-head { height: 20px; margin-bottom: 7px; gap: 0.5rem; }
.talent-notifications--compact .talent-notifications-head span { font-size: 0.6875rem; }
.talent-notifications--compact .talent-feed-control, .talent-notifications--compact .talent-feed-next { font-size: 0.6875rem; padding: 0.2rem 0.5rem; min-width: 0; line-height: 1.2; }
.talent-notifications--compact .talent-notification { grid-template-columns: 30px minmax(0, 1fr); gap: 0.6rem; padding: 6px 10px; }
.talent-notifications--compact .talent-company-logo { width: 30px; height: 30px; }
.talent-notifications--compact .talent-notification-title { font-size: 0.875rem; }
.talent-notifications--compact .talent-notification-details { font-size: 0.6875rem; }
@media (max-width: 420px) {
    .talent-notifications:not(.talent-notifications--compact) { padding: 10px; }
    .talent-notifications-head { gap: 0.5rem; }
    .talent-notifications-foot { gap: 0.35rem; font-size: 0.6875rem; }
    .talent-feed-next { padding-right: 0; padding-left: 0; white-space: nowrap; }
    .talent-notification { padding-right: 8px; padding-left: 8px; }
}
