Student Government Engagement and Success (SGES)
Empowering students to become future community leaders through experiential opportunities in governance, self-advocacy, and leadership within student organizations.
About SGES
Student Government Engagement and Success (SGES) is a departmental program that supports the ASUO. SGES fosters a student-centered environment that promotes active engagement and empowers the next generation of government leaders.
--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); --font-primary: 'Inter', system-ui, -apple-system, sans-serif; --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif; } html { scroll-behavior: smooth; font-size: 16px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-primary); line-height: 1.6; color: var(--text-primary); background-color: var(--surface-alt); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; min-height: 100vh; display: flex; flex-direction: column; } main { flex: 1; } /* Top Navigation */ .navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); z-index: 1000; transition: all 0.3s ease; } .nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; } .logo { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--primary); text-decoration: none; transition: color 0.3s ease; display: flex; align-items: center; } .logo:hover { color: var(--accent); } .nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; } .nav-links a { text-decoration: none; color: var(--text-secondary); font-weight: 500; font-size: 0.9rem; transition: color 0.3s ease; position: relative; } .nav-links a:hover { color: var(--primary); } .nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background: var(--accent); transition: width 0.3s ease; } .nav-links a:hover::after { width: 100%; } /* Main Content */ .main-content { max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem 2rem; } /* Section Styling */ .section { margin-bottom: 5rem; } .section-header { text-align: center; margin-bottom: 3rem; } .section-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; position: relative; } .section-subtitle { font-size: 1.125rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-weight: 400; } /* Hero Section */ .hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; padding: 4rem 2rem; border-radius: 20px; margin-bottom: 4rem; text-align: center; } .hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; } .hero p { font-size: 1.2rem; opacity: 0.9; max-width: 800px; margin: 0 auto; } /* Content Sections */ .content-section { background: var(--surface); border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-sm); margin-bottom: 2rem; border: 1px solid var(--border); } .content-section h2 { font-family: var(--font-display); color: var(--primary); font-size: 1.8rem; margin-bottom: 1.5rem; border-bottom: 3px solid var(--accent); padding-bottom: 0.5rem; font-weight: 600; } .content-section h3 { color: var(--primary-light); font-size: 1.4rem; margin: 1.5rem 0 1rem 0; } .content-section p { margin-bottom: 1rem; color: var(--text-primary); } .content-section ul { margin: 1rem 0 1rem 2rem; } .content-section li { margin-bottom: 0.5rem; } /* Team Section */ .team-section { background: var(--surface); border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); } .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; justify-items: center; align-items: start; margin-top: 2rem; } .team-card { background: var(--surface-alt); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 1.5rem; text-align: center; width: 100%; max-width: 280px; transition: all 0.3s ease; border: 1px solid var(--border); } .team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); } .team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem auto; border: 4px solid var(--accent); background: var(--surface-alt); } .team-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; } .team-title { color: var(--text-secondary); font-size: 0.95rem; font-weight: 400; margin-bottom: 0.75rem; } .team-email { font-size: 0.9rem; color: var(--primary); } .team-email a { color: var(--primary); text-decoration: none; font-weight: 500; transition: color 0.3s ease; padding: 0.5rem 1rem; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); display: inline-block; } .team-email a:hover { color: var(--accent); background: var(--accent); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); } /* Custom photo adjustments */ .ken-ezaki { object-position: 25% 25%; } .photo-adjust-left { object-position: 30% 50%; } .photo-adjust-right { object-position: 70% 50%; } /* Contact Section */ .contact-info { background: var(--surface-alt); padding: 2rem; border-radius: 15px; border-left: 5px solid var(--accent); } .contact-info h3 { color: var(--primary); margin-bottom: 1rem; } .contact-item { display: flex; align-items: center; margin-bottom: 0.75rem; gap: 0.5rem; } .contact-item i { color: var(--accent); width: 20px; } /* Footer */ .footer { background: var(--primary); color: white; text-align: center; padding: 2rem; margin-top: 4rem; } .footer p { opacity: 0.8; } @media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } } /* Responsive Design */ @media (max-width: 768px) { .nav-container { padding: 1rem; } .nav-links { display: none; } .main-content { padding: 6rem 1rem 2rem 1rem; } .hero h1 { font-size: 2.5rem; } .section-title { font-size: 2rem; } .content-section { padding: 1.5rem; } .team-grid { grid-template-columns: 1fr; } }Student Government Engagement and Success (SGES)
Empowering students to become future community leaders through experiential opportunities in governance, self-advocacy, and leadership within student organizations.
About SGES
Student Government Engagement and Success (SGES) is a departmental program that supports the ASUO. SGES fosters a student-centered environment that promotes active engagement and empowers the next generation of government leaders.
Mission & Purpose
SGES empowers students to become future community leaders by providing experiential opportunities in governance, self-advocacy, and leadership within student organizations. The department envisions a campus culture that encourages and enables students to actively participate in and shape the institution.
SGES enhances students' development by offering advising, coaching, contextual knowledge, and transitional support. Staff believe that skills are honed through self-advocacy and are committed to celebrating student successes while providing guidance through challenges.
Support for Experiential Growth
SGES helps students develop through four major areas of support:
Advising and Support
Personalized advising, coaching, and support for ASUO Officers, student-organization leaders, and students. SGES helps them navigate university processes and build self-advocacy skills.
Education and Development
Education, development, and continuity programs that equip student leaders, officers, and advocacy-focused students with tools to advocate for themselves and their communities.
Administrative and Financial Support
Oversight of administrative and financial support services, ensuring adherence to ASUO-managed policies, rules, and standards by ASUO-recognized student organizations.
Career Readiness
Enriching work experiences designed to build career-readiness skills for students employed within the department.
Services for Student Organizations
Student Organization Financial Support
Financial support for ASUO-recognized student organizations is coordinated by SGES and is funded by the Incidental Fee.
Student Organization Leadership Support
Resource support and guidance for leaders of student organizations. SGES assists with event planning, training and education, graphic design, digital display, marketing, fundraising, promotion, and more.
CampusLabs/Engage Resource Hub
Each of ASUO's 200-plus organizations is profiled in the CampusLabs/Engage Resource Hub, including mission and goals, governance structure, meeting and event information, and contact information.
Supply Nest, Poster Distribution, and Office Hours Space
The Center for Student Involvement (CSI) offers a poster-distribution service, equipment check-out center, and space for student-organization office hours on the second floor of the Erb Memorial Union.
Supplemental Funding through ASUO
Organizations may request surplus funding and budget changes. An official from the organization meets with a senator, submits an application, and has it reviewed by the ASUO President. The process takes four to eight weeks.
Stipends
Certain positions within eligible organizations offer a fixed monthly stipend, coordinated by SGES and the Division of Student Life.
ASUO Budget Process
Each year, the ASUO coordinates the process by which the Incidental Fund Budget and the amount of the I-Fee are determined for the next fiscal year.
Division of Student Life Support Funds
Limited financial assistance for students and organizations whose activities relate to the university community. Monies received must be used exclusively for the purpose described in the application.
Financial Guidelines and Resources
Information on ASUO-managed fund activities is available covering a range of topics, including financial guidelines, travel, vendor resources, fundraising, and purchasing.
Services for Students
Legal Services
Legal support and representation (on issues not directly involving the university) for all students. Services include document drafting and review, lease and settlement assistance, family-law support, representation in local misdemeanor cases, landlord-tenant disputes, and advice for students representing themselves.
Student Advocacy Programme
Support and assistance for I-Fee-paying students involved in a dispute with the University of Oregon.
Problem-Solving Support
The Student Conflict Resolution Centre is a private, impartial, and informal resource for effective communication, collaboration, and conflict navigation.
Basic Needs Support
The UO Basic Needs programme ensures access to adequate food, stable housing, affordable childcare, and other essential resources.
Childcare for Student Parents
ASUO subsidizes costs for a childcare provider located at the Spencer View Housing Complex, offering full- and part-time care for children aged six weeks to 12 years.
Eugene Transit
Students have unlimited access to local and rapid transit services through the Lane Transit District.
Bike Share
A programme providing affordable access to bikes, including up to fifteen minutes per day of rental at no cost and subsidized monthly subscription costs.
Evening and Late-Night Transportation
Two transportation programmes promote safety after dark. Duck Rides offers shared van service at no cost, while Night Rides provides discounted ride vouchers with Uber from 10:00 p.m. to 7:30 a.m. in partnership with UO Transportation Services.
Get Involved
The ASUO serves as a hub of student leadership and community engagement. There are hundreds of opportunities to participate – from serving as an elected official or sitting on a university committee to joining an ASUO-recognized student organization. The ASUO promotes diverse opinions, teamwork, and collaborative leadership.
Street Faire
ASUO hosts a bi-annual Street Faire open to everyone. The fair brings the campus together for food and fun, and proceeds help fund food-security initiatives for UO students.
Serve as an Officer or Committee Member
Students can engage directly in democratic governance by serving as an ASUO officer, joining a university committee, or serving on an advisory board. These experiences are an opportunity to gain leadership skills and build professional relationships.
Engage in a Campaign
ASUO members can influence what happens on campus. By participating in campaigns (e.g., addressing food insecurity or tuition issues), students help shape funding decisions and have a platform to make their voices heard.
Work for SGES
SGES employs students in paid positions that help coordinate support services, education, and activities related to student government and the I-Fee. Student employees gain competitive post-graduation employment skills.
Join a Student Organization
ASUO supports more than 200 student organizations covering topics from improv and environmental justice to advertising and women in sports media. Students are encouraged to explore their interests and find community.
Start a Student Organization
Students who cannot find an existing club that meets their interests are encouraged to start their own. Registering as an ASUO-recognized organization opens the door to funding and support services and offers extensive learning and personal growth opportunities.
Volunteer and Speak Up
Even without committing to a full role, students can make their voices heard by contacting their representatives or volunteering part-time. An interest form allows students to share areas they care about so SGES can match them with opportunities.
Civic Engagement
ASUO partners with the university and the Holden Center for Leadership and Community Engagement to encourage civic participation among students.
Contact Information
Office Hours
Location
Phone
Teams Handles
Meet the SGES Team
SGES staff members are advocates for learning and growth made possible by engagement, self-advocacy, and governance. Part of the University of Oregon Division of Student Life, the team coordinates services for student organizations, student government officials, and students who are adversely positioned with the institution.