<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>VelocityTX June 2026 Newsletter</title> <style> :root { --orange: #ff6a2a; --pink: #ff4fa3; --gold: #f6b73c; --ink: #1f2430; --muted: #667085; --paper: #fffaf4; --white: #ffffff; --soft-pink: #fff0f7; --soft-gold: #fff6df; --soft-orange: #fff0e8; --line: rgba(31, 36, 48, 0.12); --shadow: 0 24px 70px rgba(31, 36, 48, 0.13); } * { box-sizing: border-box; } body { margin: 0; font-family: Inter, Avenir, Helvetica, Arial, sans-serif; background: radial-gradient(circle at 18% 10%, rgba(255, 79, 163, 0.22), transparent 28%), radial-gradient(circle at 86% 4%, rgba(246, 183, 60, 0.28), transparent 30%), radial-gradient(circle at 78% 58%, rgba(255, 106, 42, 0.16), transparent 34%), #fff7ef; color: var(--ink); line-height: 1.55; } .newsletter { max-width: 1120px; margin: 0 auto; padding: 28px; } .hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--orange), var(--pink) 52%, var(--gold)); border-radius: 36px; padding: 54px; color: white; box-shadow: var(--shadow); min-height: 430px; } .hero::before, .hero::after { content: ""; position: absolute; border-radius: 999px; background: rgba(255, 255, 255, 0.18); filter: blur(1px); } .hero::before { width: 330px; height: 330px; right: -90px; top: -120px; } .hero::after { width: 230px; height: 230px; right: 190px; bottom: -115px; background: rgba(255, 255, 255, 0.12); } .eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 999px; background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(10px); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; } .hero h1 { position: relative; max-width: 780px; margin: 26px 0 18px; font-size: clamp(3.2rem, 8vw, 6.8rem); line-height: 0.86; letter-spacing: -0.08em; text-wrap: balance; } .hero p { position: relative; max-width: 720px; font-size: 1.18rem; margin: 0; color: rgba(255, 255, 255, 0.92); } .hero-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; } .metric { padding: 18px; border-radius: 22px; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.26); backdrop-filter: blur(14px); } .metric strong { display: block; font-size: 1.8rem; line-height: 1; letter-spacing: -0.04em; } .metric span { display: block; margin-top: 8px; font-size: 0.86rem; color: rgba(255, 255, 255, 0.88); font-weight: 700; } .section { margin-top: 28px; background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 34px; padding: 34px; box-shadow: 0 18px 44px rgba(31, 36, 48, 0.08); } .section-header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 24px; } .section-kicker { color: var(--pink); text-transform: uppercase; letter-spacing: 0.13em; font-weight: 900; font-size: 0.78rem; } .section h2, .aim-section h2 { margin: 4px 0 0; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.06em; line-height: 0.95; } .section-summary { max-width: 380px; color: var(--muted); font-weight: 600; } .cards, .photo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .cards.three-up { grid-template-columns: repeat(3, 1fr); } .card, .photo-card { position: relative; overflow: hidden; border-radius: 28px; background: #ffffff; border: 1px solid rgba(31, 36, 48, 0.08); box-shadow: 0 16px 36px rgba(31, 36, 48, 0.08); } .card { padding: 24px; min-height: 260px; } .card::before { content: ""; position: absolute; inset: 0 0 auto; height: 8px; background: linear-gradient(90deg, var(--orange), var(--pink), var(--gold)); } .photo-card img { display: block; width: 100%; height: 230px; object-fit: cover; background: linear-gradient(135deg, rgba(255, 106, 42, 0.25), rgba(255, 79, 163, 0.18), rgba(246, 183, 60, 0.25)); } .photo-card-copy { padding: 24px; } .tag { display: inline-block; margin-bottom: 16px; padding: 7px 11px; border-radius: 999px; background: var(--soft-orange); color: #b43b10; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; } .card:nth-child(2n) .tag, .photo-card:nth-child(2n) .tag, .mini-item:nth-child(2n) .tag { background: var(--soft-pink); color: #b0186d; } .card:nth-child(3n) .tag, .photo-card:nth-child(3n) .tag, .mini-item:nth-child(3n) .tag { background: var(--soft-gold); color: #8b5d00; } .card h3, .photo-card-copy h3 { margin: 0 0 10px; font-size: 1.24rem; letter-spacing: -0.03em; line-height: 1.12; } .card p, .photo-card-copy p { margin: 0; color: var(--muted); font-size: 0.96rem; } .feature, .aim-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; margin: 28px 0; border-radius: 34px; overflow: hidden; background: var(--ink); color: white; box-shadow: 0 18px 44px rgba(31, 36, 48, 0.12); } .feature-art, .aim-visual { min-height: 380px; display: flex; align-items: flex-end; padding: 30px; background-size: cover; background-position: center; } .feature-art { background: linear-gradient(135deg, rgba(255, 106, 42, 0.9), rgba(255, 79, 163, 0.84)), radial-gradient(circle at 24% 28%, rgba(246, 183, 60, 0.95), transparent 34%), radial-gradient(circle at 78% 76%, rgba(255, 255, 255, 0.3), transparent 28%); } .aim-visual { background: linear-gradient(135deg, rgba(255, 106, 42, 0.9), rgba(255, 79, 163, 0.78)), radial-gradient(circle at 25% 20%, rgba(246, 183, 60, 0.95), transparent 34%), radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.26), transparent 28%), url("images/aim-health-rd-summit.jpg"); } .feature-art .badge, .aim-badge { width: 158px; height: 158px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: rgba(255, 255, 255, 0.94); color: var(--ink); font-weight: 950; text-transform: uppercase; letter-spacing: -0.04em; line-height: 0.96; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2); } .feature-copy, .aim-copy { padding: 38px 38px 38px 10px; } .feature-copy .section-kicker, .aim-copy .section-kicker { color: var(--gold); } .feature h2, .aim-section h2 { margin: 8px 0 16px; color: white; } .feature p, .aim-section p { color: rgba(255, 255, 255, 0.82); margin: 0 0 16px; } .pullquote { margin: 22px 0 0; padding: 18px 20px; border-left: 5px solid var(--gold); background: rgba(255, 255, 255, 0.09); border-radius: 16px; color: rgba(255, 255, 255, 0.92); font-weight: 800; } .aim-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; } .aim-stat-row div { padding: 16px; border-radius: 18px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); } .aim-stat-row strong { display: block; font-size: 1.3rem; letter-spacing: -0.04em; } .aim-stat-row span { display: block; margin-top: 4px; color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; font-weight: 700; } .spotlight-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px; align-items: start; } .mini-list { display: grid; gap: 12px; } .mini-item { padding: 18px; border-radius: 22px; background: white; border: 1px solid rgba(31, 36, 48, 0.08); box-shadow: 0 12px 28px rgba(31, 36, 48, 0.06); } .mini-item strong { display: block; margin-bottom: 4px; } .mini-item span { color: var(--muted); font-size: 0.92rem; } .timeline { display: grid; gap: 12px; } .event { display: grid; grid-template-columns: 108px 1fr; gap: 18px; padding: 17px; border-radius: 22px; background: white; border: 1px solid rgba(31, 36, 48, 0.08); align-items: start; box-shadow: 0 10px 24px rgba(31, 36, 48, 0.05); } .date { border-radius: 18px; padding: 12px; text-align: center; background: linear-gradient(135deg, var(--orange), var(--pink)); color: white; font-weight: 950; line-height: 1.05; box-shadow: 0 12px 26px rgba(255, 79, 163, 0.24); } .date small { display: block; font-size: 0.68rem; opacity: 0.86; text-transform: uppercase; letter-spacing: 0.1em; } .event h3 { margin: 0 0 5px; font-size: 1rem; } .event p { margin: 0; color: var(--muted); font-size: 0.93rem; } .footer { margin: 28px 0 10px; padding: 32px; border-radius: 30px; background: var(--ink); color: white; display: flex; justify-content: space-between; gap: 24px; align-items: center; } .footer h2 { margin: 0; letter-spacing: -0.05em; line-height: 0.98; font-size: 2.2rem; } .footer p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.72); } .button { display: inline-flex; padding: 14px 20px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--ink); text-decoration: none; font-weight: 950; white-space: nowrap; } @media (max-width: 900px) { .newsletter { padding: 16px; } .hero { padding: 34px 24px; border-radius: 28px; } .hero-grid, .cards, .cards.three-up, .photo-cards, .spotlight-grid, .feature, .aim-section, .aim-stat-row { grid-template-columns: 1fr; } .section-header, .footer { display: block; } .section { padding: 24px; border-radius: 28px; } .feature-copy, .aim-copy { padding: 28px; } .photo-card img { height: 210px; } .event { grid-template-columns: 86px 1fr; } .button { margin-top: 20px; } } </style> </head> <body> <main class="newsletter"> <section class="hero"> <div class="eyebrow">VelocityTX Strategic Update · June 2026</div> <h1>Innovation with Eastside momentum.</h1> <p> This month, VelocityTX advanced its role as a connector for military medical innovation, bioscience commercialization, neighborhood vitality, workforce development, and community well-being. </p> <div class="hero-grid"> <div class="metric"> <strong>160+</strong> <span>Military researchers and ecosystem partners at ProPEL</span> </div> <div class="metric"> <strong>1,000</strong> <span>AIM Health R&amp;D Summit registrants</span> </div> <div class="metric"> <strong>70%</strong> <span>Movie Night attendees from the Eastside</span> </div> <div class="metric"> <strong>100+</strong> <span>Students + Startups interns welcomed to campus</span> </div> </div> </section> <section class="section page-two"> <div class="section-header"> <div> <div class="section-kicker">Jobs &amp; Innovation</div> <h2>Building the bridge from research to real-world impact.</h2> </div> <p class="section-summary"> From defense health convenings to new life science tenants, VelocityTX continues to strengthen San Antonio’s medical innovation pipeline. </p> </div> <div class="photo-cards"> <article class="photo-card"> <img src="images/propel-event.jpg" alt="Military researchers and ecosystem partners gathered for the ProPEL event at VelocityTX" /> <div class="photo-card-copy"> <span class="tag">Defense Health</span> <h3>ProPEL brings DoD medical research to campus</h3> <p> VelocityTX hosted the Defense Health Agency’s ProPEL event, bringing together more than 160 military researchers and ecosystem partners to learn more about medical research efforts within the Department of Defense. </p> </div> </article> <article class="photo-card"> <img src="images/velocity-bioworks-ribbon-cutting.jpg" alt="Velocity Bioworks ribbon cutting celebration" /> <div class="photo-card-copy"> <span class="tag">Biomanufacturing</span> <h3>Velocity Bioworks celebrates ribbon cutting</h3> <p> The official ribbon cutting marked a major step forward for biomanufacturing capacity on the Eastside and for the broader San Antonio bioscience ecosystem. </p> </div> </article> <article class="photo-card"> <img src="images/city-moa.jpg" alt="City of San Antonio and VelocityTX partnership meeting" /> <div class="photo-card-copy"> <span class="tag">District Growth</span> <h3>City MOA strengthens Eastside Innovation District partnership</h3> <p> The City of San Antonio formally approved the Memorandum of Agreement with VelocityTX, codifying the City’s partnership in the Eastside Innovation District. </p> </div> </article> <article class="photo-card"> <img src="images/aim-health-rd-summit.jpg" alt="AIM Health R&D Summit attendees and speakers" /> <div class="photo-card-copy"> <span class="tag">AIM Summit</span> <h3>AIM Health R&amp;D Summit spotlights military-to-civilian translation</h3> <p> With nearly 1,000 registered attendees, the AIM Health R&amp;D Summit featured panels and conversations on defense health R&amp;D, SBIR/STTR pathways, and the military-to-civilian translation pipeline. </p> </div> </article> <article class="photo-card"> <img src="images/aim-welcome-event.jpg" alt="AIM Summit welcome event with founders, military medical innovation leaders, and partners" /> <div class="photo-card-copy"> <span class="tag">Convening Power</span> <h3>AIM welcome event turns conversations into deal flow</h3> <p> VelocityTX hosted a welcome event alongside the AIM Health R&amp;D Summit, partnering with the Bourbon Club to bring together military medical innovation leaders, founders, and civilian translation partners in an informal setting. </p> </div> </article> <article class="photo-card"> <img src="images/comeback-mobility.jpg" alt="ComeBack Mobility team member at VelocityTX" /> <div class="photo-card-copy"> <span class="tag">New Coworker</span> <h3>ComeBack Mobility joins the community</h3> <p> VelocityTX welcomed ComeBack Mobility to the coworking community. Iryna Popova, the company’s Chief Operating Officer, is now working from campus. </p> </div> </article> <article class="photo-card"> <img src="images/valedyn.jpg" alt="Valedyn medical innovation team or company representatives" /> <div class="photo-card-copy"> <span class="tag">New Tenant</span> <h3>Valedyn chooses San Antonio for medical innovation</h3> <p> Valedyn, the U.S. entity of a Belgian medical innovation group, has joined VelocityTX as a tenant and is developing TA-64, a vascular and metabolic stabilizer with relevance to prolonged casualty care. </p> </div> </article> <article class="photo-card"> <img src="images/gap-flex.jpg" alt="Gap-Flex team or workspace at VelocityTX" /> <div class="photo-card-copy"> <span class="tag">New Tenant</span> <h3>Gap-Flex adds to the Eastside Innovation District</h3> <p> Gap-Flex has joined VelocityTX as a tenant, adding to the growing roster of companies choosing the Eastside Innovation District as their operating home. </p> </div> </article> </div> </section> <section class="aim-section"> <div class="aim-visual"> <div class="aim-badge"> AIM<br /> Health<br /> R&amp;D </div> </div> <div class="aim-copy"> <div class="section-kicker">Summit Spotlight</div> <h2>AIM Summit builds the military-to-civilian innovation pipeline.</h2> <p> VelocityTX hosted a welcome event alongside the AIM Health R&amp;D Summit, partnering with the Bourbon Club to bring together military medical innovation leaders, founders, and civilian translation partners in an informal setting. </p> <p> With nearly 1,000 registered attendees, the AIM Summit featured panels and conversations on defense health R&amp;D, SBIR/STTR pathways, and the military-to-civilian translation pipeline — the exact intersection where VelocityTX is building its national reputation. </p> <div class="aim-stat-row"> <div> <strong>1,000</strong> <span>Nearly registered attendees</span> </div> <div> <strong>SBIR/STTR</strong> <span>Pathways highlighted</span> </div> <div> <strong>Deal Flow</strong> <span>Relationships deepened</span> </div> </div> </div> </section> <section class="feature"> <div class="feature-art"> <div class="badge">Featured<br />Story</div> </div> <div class="feature-copy"> <div class="section-kicker">Tenant Spotlight</div> <h2>Valedyn lands at VelocityTX.</h2> <p> Valedyn, the U.S. entity of a Belgian medical innovation group, has joined VelocityTX as a tenant. The company is developing TA-64, an intravenously administered vascular and metabolic stabilizer with direct relevance to prolonged casualty care. </p> <p> Its presence on campus is a strong proof point for VelocityTX’s national positioning: international companies are choosing San Antonio for its trauma, prehospital, and disaster care ecosystem, including federal partners, clinical infrastructure, and translational pathways. </p> <div class="pullquote"> VelocityTX is becoming a launchpad for companies working at the intersection of military medical need and civilian clinical translation. </div> </div> </section> <section class="section"> <div class="section-header"> <div> <div class="section-kicker">Vibrant Places &amp; Shared Spaces</div> <h2>Creating places where neighbors, partners, and ideas connect.</h2> </div> <p class="section-summary"> Community programming and infrastructure engagement are helping build trust, activate shared spaces, and support a more connected Eastside. </p> </div> <div class="photo-cards"> <article class="photo-card"> <img src="images/movie-night.jpg" alt="Neighbors gathering for Movie Night at VelocityTX" /> <div class="photo-card-copy"> <span class="tag">Community</span> <h3>Movie Night draws Eastside families back to campus</h3> <p> About 60 neighbors joined VelocityTX for a screening of <em>Captain America: Brave New World</em>. Nearly 70% of attendees were Eastside residents, showing growing neighborhood participation. </p> </div> </article> <article class="photo-card"> <img src="images/health-access.jpg" alt="Fresh produce and community resources at VelocityTX Movie Night" /> <div class="photo-card-copy"> <span class="tag">Health Access</span> <h3>Community gatherings support a bigger wellness vision</h3> <p> VIA Metropolitan Transit shared transportation resources, while Nourish’d Produce sold fresh fruit, connecting a fun campus event to broader social determinants of health. </p> </div> </article> <article class="photo-card"> <img src="images/walking-audit.jpg" alt="Community members participating in an Eastside walking audit" /> <div class="photo-card-copy"> <span class="tag">Infrastructure</span> <h3>Walking audit centers resident experience</h3> <p> VelocityTX, LISC, SAGE, ActivateSA, VIA, and community partners walked the area between St. Paul Square and VelocityTX to identify needs related to sidewalks, lighting, drainage, connectivity, and accessibility. </p> </div> </article> <article class="photo-card"> <img src="images/state-of-the-eastside.jpg" alt="Community leaders gathered at State of the Eastside" /> <div class="photo-card-copy"> <span class="tag">Eastside Voice</span> <h3>State of the Eastside highlights inclusive growth</h3> <p> VelocityTX joined residents, leaders, businesses, and organizations at SAGE’s annual State of the Eastside, where collaboration, equitable investment, housing stability, and access to opportunity were central themes. </p> </div> </article> <article class="photo-card"> <img src="images/spurs-watch-party.jpg" alt="Community members at the Spurs Watch Party at The Espee" /> <div class="photo-card-copy"> <span class="tag">Activation</span> <h3>Spurs Watch Party brings community energy downtown</h3> <p> VelocityTX partnered with SAGE, ATG Entertainment, and the City of San Antonio Downtown to host a Game 5 Watch Party at The Espee, celebrating San Antonio pride and community connection. </p> </div> </article> <article class="photo-card"> <img src="images/campus-engagement.jpg" alt="VelocityTX tenants connecting during a campus engagement event" /> <div class="photo-card-copy"> <span class="tag">Coming Up</span> <h3>Fruit Bar Social, Secret Skill Workshop, and Foosball Tournament</h3> <p> Upcoming tenant engagement moments will promote wellness, shared talents, friendly competition, and a dynamic campus culture. </p> </div> </article> </div> </section> <section class="section"> <div class="section-header"> <div> <div class="section-kicker">People &amp; Community Well-Being</div> <h2>Opening pathways for students, interns, and future innovators.</h2> </div> <p class="section-summary"> Summer internship programming and Step Into STEM experiences are connecting students to meaningful career exploration across San Antonio’s innovation ecosystem. </p> </div> <div class="spotlight-grid"> <article class="photo-card"> <img src="images/students-startups-tour.jpg" alt="Students + Startups interns visiting VelocityTX during immersion week" /> <div class="photo-card-copy"> <span class="tag">Featured Story</span> <h3>Students + Startups interns explore VelocityTX</h3> <p> VelocityTX welcomed more than 100 interns participating in the Students + Startups summer internship program as part of immersion week. Interns learned about VelocityTX, the Eastside Innovation District, and the bioscience and technology ecosystem shaping San Antonio’s future. </p> <br /> <p> Velocity Bioworks also shared insights into biotechnology, healthcare advancement, and manufacturing innovation, giving students a deeper look at the industries driving regional opportunity. </p> </div> </article> <div class="mini-list"> <div class="mini-item"> <strong>Intern recruitment complete</strong> <span> The 2026 summer internship programs are ready to welcome a new cohort in June across workforce development, operations, entrepreneurship, marketing, and ecosystem projects. </span> </div> <div class="mini-item"> <strong>Southwest High School visits campus</strong> <span> Step Into STEM hosted students for an Inside Innovation tour, including a U.S. Army Institute of Surgical Research presentation and robot hand prototyping activity. </span> </div> <div class="mini-item"> <strong>Partners in opportunity</strong> <span> VelocityTX is collaborating with Students + Startups, greater:SATX, and the City of San Antonio Ambassador Program to connect students with career exploration and professional development. </span> </div> </div> </div> </section> <section class="section"> <div class="section-header"> <div> <div class="section-kicker">What’s Next</div> <h2>June key moments.</h2> </div> <p class="section-summary"> A snapshot of upcoming meetings, workshops, student experiences, and campus engagement opportunities. </p> </div> <div class="timeline"> <div class="event"> <div class="date"><small>June</small>1</div> <div> <h3>Eastside Access and Infrastructure Meeting</h3> <p> Hosted at Davis Scott YMCA; continued community engagement around neighborhood connectivity and infrastructure priorities. </p> </div> </div> <div class="event"> <div class="date"><small>June</small>3</div> <div> <h3>Intern Professional Development + Step Into STEM</h3> <p> Ice breaker session for interns and a Challenge to ASPIRE workshop for Step Into STEM participants. </p> </div> </div> <div class="event"> <div class="date"><small>June</small>9</div> <div> <h3>Eastside Infrastructure &amp; Access Meeting</h3> <p>Focused session for City of San Antonio staff.</p> </div> </div> <div class="event"> <div class="date"><small>June</small>11</div> <div> <h3>Fruit Bar Social + Secret Skill Workshop</h3> <p> A wellness-forward tenant connection event designed to encourage community, creativity, and shared talents. </p> </div> </div> <div class="event"> <div class="date"><small>June</small>19</div> <div> <h3>In the Eye of the Beholder Student Art Contest</h3> <p>Student art showcase hosted at VelocityTX.</p> </div> </div> <div class="event"> <div class="date"><small>June</small>22</div> <div> <h3>Small Business Infrastructure &amp; Access Meeting</h3> <p>Hosted at Estate Coffee for local small business stakeholders.</p> </div> </div> <div class="event"> <div class="date"><small>June</small>22–26</div> <div> <h3>Second Annual Foosball Tournament</h3> <p> A friendly competition designed to strengthen tenant connections and energize campus engagement. </p> </div> </div> <div class="event"> <div class="date"><small>June</small>23</div> <div> <h3>Teen Medical Academy + Harvard YALP</h3> <p>Step Into STEM hosts Teen Medical Academy, while Rene attends Harvard’s YALP program.</p> </div> </div> <div class="event"> <div class="date"><small>June</small>29</div> <div> <h3>UT San Antonio PREP Interns Begin</h3> <p> A new group of PREP interns starts at VelocityTX, continuing the month’s focus on talent development. </p> </div> </div> </div> </section> <section class="section"> <div class="section-header"> <div> <div class="section-kicker">Community House + Organizational Snapshot</div> <h2>Growing the people, structure, and stories behind the work.</h2> </div> <p class="section-summary"> Community House continues to build the leadership, advisory structure, and storytelling foundation needed to support deeper community impact. </p> </div> <div class="photo-cards"> <article class="photo-card"> <img src="images/brendan-bean-managing-director.jpg" alt="Brendan Bean, Managing Director of Community House" /> <div class="photo-card-copy"> <span class="tag">Managing Director</span> <h3>Brendan Bean leads Community House</h3> <p> Community House welcomes Brendan Bean as Managing Director, helping guide the organization’s next chapter of community-centered programming, partnership development, and Eastside impact. </p> </div> </article> <article class="photo-card"> <img src="images/community-house-advisory-committee-member.jpg" alt="New Community House advisory committee member" /> <div class="photo-card-copy"> <span class="tag">Advisory Committee</span> <h3>New advisory committee member joins Community House</h3> <p> A new advisory committee member joins Community House to support the organization’s community voice, strategic guidance, and commitment to programs that give back to Eastside residents and partners. </p> </div> </article> <article class="photo-card"> <img src="images/community-house-structure.jpg" alt="Community House leadership and advisory structure" /> <div class="photo-card-copy"> <span class="tag">Community House</span> <h3>New leadership and community structure</h3> <p> This section can highlight new CHAC community members, the Standing Committee, company presidents, executive leadership, and the broader community give-back model. </p> </div> </article> <article class="photo-card"> <img src="images/velocitytx-storytelling.jpg" alt="VelocityTX media, podcast, and video storytelling" /> <div class="photo-card-copy"> <span class="tag">Storytelling</span> <h3>Podcasts, videos, and media stories</h3> <p> Use this space to feature recent news releases, podcast episodes, earned media, and short videos that show VelocityTX’s work in action. </p> </div> </article> <article class="photo-card"> <img src="images/velocitytx-team-culture.jpg" alt="VelocityTX staff appreciation and team culture" /> <div class="photo-card-copy"> <span class="tag">Team Culture</span> <h3>Staff appreciation and values in action</h3> <p> Potential highlights include a landscape shout-out for Abel, recognition for the Finance team’s clean audit, staff anniversaries, or a spotlight tied to a core value. </p> </div> </article> </div> </section> <footer class="footer"> <div> <h2>VelocityTX</h2> <p>Advancing bioscience innovation, Eastside vitality, and community opportunity.</p> </div> <a class="button" href="#">Explore the June Update</a> </footer> </main> </body> </html>