Paid Housing Survey

<!DOCTYPE html>

<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Blum Center Housing Survey Blurb</title>
  <style>
    @font-face {
      font-family: 'Avenir';
      src: local('Avenir'), local('Avenir Next'), local('Avenir LT Std');
    }
 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
 
    body {
      font-family: 'Avenir', 'Avenir Next', 'Avenir LT Std', 'Century Gothic', Futura, sans-serif;
      background: #fff;
      color: #1a1a1a;
    }
 
    .survey-blurb {
      max-width: 680px;
      padding: 2.5rem;
      border-left: 3px solid #005AA7;
    }
 
    .label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #005AA7;
      margin-bottom: 0.75rem;
    }
 
    .headline {
      font-size: 26px;
      font-weight: 800;
      line-height: 1.25;
      color: #1a1a1a;
      margin-bottom: 1rem;
    }
 
    .body-text {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: #444;
      margin-bottom: 0.75rem;
    }
 
    .details {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.6;
      color: #666;
      margin-bottom: 1.75rem;
    }
 
    .details span {
      display: inline-block;
      margin-right: 1.25rem;
    }
 
    .details span::before {
      content: '— ';
      color: #005AA7;
    }
 
    .cta {
      display: inline-block;
      background: #005AA7;
      color: #fff;
      font-family: 'Avenir', 'Avenir Next', 'Avenir LT Std', 'Century Gothic', Futura, sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 2px;
      transition: background 0.2s ease;
    }
 
    .cta:hover {
      background: #004080;
    }
  </style>
</head>
<body>
  <div class="survey-blurb">
    <p class="label">Active Research &nbsp;·&nbsp; Spring 2026</p>
    <h2 class="headline">How is housing affecting your time at UCSB?</h2>
    <p class="body-text">The Blum Center is conducting a research study on how housing costs shape undergraduate students' basic needs, academic outcomes, and wellbeing. Your responses will directly inform policy recommendations to UCSB leadership.</p>
    <p class="details">
      <span>~20 minutes</span>
      <span>$20 digital gift card</span>
      <span>Completely confidential</span>
      <span>Open to UCSB undergrads 18+</span>
    </p>
  </div>
</body>
</html>