
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Our Events</title>
<link>https://www.alcus.org/events/event_list.asp</link>
<description><![CDATA[  
 
 
 

 
  :root {
    --alc-blue: #2c5092;
    --alc-blue-light: #cadaf0;
    --alc-plum: #79527c;
    --alc-lavender: #a47daa;
    --alc-bg-light: #f5f6f8;
    --alc-text: #333333;
    --alc-magenta: #d7009b;
  }

  /* Scope everything to the events page container so we don't touch other pages */
  .alc-events-page {
    font-family: Arial, sans-serif;
    background-color: var(--alc-bg-light);
  }

  .alc-events-page a {
    color: var(--alc-blue) !important;
    text-decoration: none;
  }

  .alc-events-page a:hover {
    color: var(--alc-magenta) !important;
    text-decoration: underline;
  }

  /* HERO – similar feel to Volunteer / Language Access */
  .alc-events-hero {
    background: radial-gradient(circle at top left, #cadaf0 0%, #2c5092 45%, #79527c 100%);
    padding: 28px 16px 34px;
    margin: 0 0 24px;
  }

  .alc-events-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    color: #ffffff;
  }

  .alc-events-hero-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
  }

  .alc-events-hero-title {
    font-family: "Quattrocento Sans", Arial, sans-serif; /* headings only */
    font-size: 30px;
    margin: 0 0 8px;
  }

  .alc-events-hero-subtitle {
    font-size: 15px;
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .alc-events-hero {
      padding: 24px 12px 26px;
    }

    .alc-events-hero-title {
      font-size: 24px;
    }

    .alc-events-hero-subtitle {
      font-size: 14px;
    }
  }

  /* Buttons – pill style, no lime green */
  .alc-events-page input[type="button"],
  .alc-events-page input[type="submit"],
  .alc-events-page input[type="reset"] {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid var(--alc-blue) !important;
    background: var(--alc-blue) !important;
    color: #ffffff !important;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    text-transform: none;
  }

  .alc-events-page input[type="button"]:hover,
  .alc-events-page input[type="submit"]:hover,
  .alc-events-page input[type="reset"]:hover {
    background: #1f3a6b !important;
    border-color: #1f3a6b !important;
  }

  .alc-events-page select {
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid var(--alc-blue-light);
  }

  /* Card around the events list */
  .alc-events-list-card {
    max-width: 1100px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 18px 18px 24px;
  }

  .alc-events-list-card table {
    width: 100%;
    border-collapse: collapse;
  }

  .alc-events-list-card td {
    font-size: 13px;
    line-height: 1.4;
    padding: 8px 6px;
    color: var(--alc-text);
    border-bottom: 1px solid #e2e7f0;
    background-color: #ffffff;
  }

  .alc-events-list-card tr:last-child td {
    border-bottom: none;
  }

  .alc-events-list-header-row td {
    background-color: var(--alc-blue) !important;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  @media (max-width: 768px) {
    .alc-events-list-card {
      border-radius: 16px;
      padding: 14px 10px 20px;
      margin-bottom: 24px;
    }

    .alc-events-list-card td {
      font-size: 12px;
    }
  }
 

 
 
   
     Events Calendar 
     ALC Events 
     
      Explore upcoming webinars, networking sessions, and conferences designed to help
      language companies connect, learn, and grow.
     
   
 

 
  document.addEventListener("DOMContentLoaded", function () {
    // 1) Scope the main content
    var main =
      document.getElementById("sp-main") ||
      document.getElementById("ContentArea") ||
      document.querySelector("#MainBody") ||
      document.body;

    if (main && !main.classList.contains("alc-events-page")) {
      main.classList.add("alc-events-page");
    }

    if (!main) return;

    // 2) Hide the old "Our Events" title + intro paragraph
    var headings = main.querySelectorAll("h1, h2, .PageTitle, .PageHeading");
    for (var i = 0; i < headings.length; i++) {
      var htxt = (headings[i].textContent || "").trim().toLowerCase();
      if (htxt.indexOf("our events") === 0) {
        headings[i].style.display = "none";
      }
    }

    var paras = main.querySelectorAll("p");
    for (var j = 0; j < paras.length; j++) {
      var ptxt = (paras[j].textContent || "").trim();
      if (ptxt.indexOf("ALC offers a wide range of large and smaller events") === 0) {
        paras[j].style.display = "none";
      }
    }

    // 3) Find the main events table (the one containing "Upcoming Events")
    var eventsTable = null;
    var tables = main.getElementsByTagName("table");

    for (var t = 0; t < tables.length; t++) {
      if (/upcoming events/i.test(tables[t].textContent || "")) {
        eventsTable = tables[t];
        break;
      }
    }

    if (!eventsTable) return;

    // 4) Turn the table's parent into a card
    var wrapper = eventsTable.parentElement;
    if (!wrapper) return;

    if (!wrapper.classList.contains("alc-events-list-card")) {
      wrapper.classList.add("alc-events-list-card");
    }

    // 5) Make the header row ("UPCOMING EVENTS") stand out
    var rows = eventsTable.rows;
    for (var r = 0; r < rows.length; r++) {
      var rowText = (rows[r].textContent || "").trim().toLowerCase();
      if (rowText.indexOf("upcoming events") === 0) {
        rows[r].classList.add("alc-events-list-header-row");
        break;
      }
    }
  });
 ]]></description>
<lastBuildDate>Thu, 11 Jun 2026 06:57:26 GMT</lastBuildDate>
<pubDate>Wed, 24 Jun 2026 18:00:00 GMT</pubDate>
<copyright>Copyright &#xA9; 2026 Association of Language Companies</copyright>
<atom:link href="https://www.alcus.org/events/event_rss.asp?cat=21153" rel="self" type="application/rss+xml"></atom:link>
<item>
<title>Language Access in 2026:  What does it all mean?</title>
<link>https://www.alcus.org/events/EventDetails.aspx?id=2063794</link>
<guid>https://www.alcus.org/events/EventDetails.aspx?id=2063794</guid>
<description><![CDATA[<div id="alc-featured-event-card">
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:wght@400;700&display=swap');

    #alc-featured-event-card {
      --alc-blue: #2c5092;
      --alc-secondary-blue: #7598cc;
      --alc-light-blue: #cadaf0;
      --alc-plum: #79527c;
      --alc-lavender: #a47daa;
      --alc-light-lavender: #ddbad8;
      --alc-magenta: #d7009b;
      --alc-text: #24324a;
      --alc-muted: #5f6f89;
      --alc-border: #dbe6f5;
      --alc-bg: #f7f9fd;
      font-family: 'Quattrocento Sans', Arial, sans-serif;
    }

    #alc-featured-event-card * {
      box-sizing: border-box;
    }

    .alc-event-wrapper {
      max-width: 1040px;
      margin: 0 auto 34px auto;
      padding: 0 16px;
    }

    .alc-event-card {
      background: #ffffff;
      border: 1px solid var(--alc-border);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 12px 34px rgba(44, 80, 146, 0.14);
    }

    .alc-event-hero-img {
      width: 100%;
      display: block;
      height: auto;
    }

    .alc-event-body {
      padding: 34px 36px 38px 36px;
    }

    .alc-event-type {
      display: inline-block;
      margin-bottom: 14px;
      padding: 7px 14px;
      border-radius: 999px;
      background: var(--alc-light-blue);
      color: var(--alc-blue);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .alc-event-title {
      margin: 0 0 14px 0;
      color: var(--alc-blue);
      font-size: 32px;
      line-height: 1.15;
      font-weight: 700;
    }

    .alc-event-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0 0 24px 0;
    }

    .alc-meta-item {
      padding: 10px 14px;
      border: 1px solid var(--alc-border);
      border-radius: 14px;
      background: var(--alc-bg);
      color: var(--alc-text);
      font-size: 15px;
      line-height: 1.35;
    }

    .alc-meta-item strong {
      color: var(--alc-blue);
    }

    .alc-event-description {
      color: var(--alc-text);
      font-size: 17px;
      line-height: 1.65;
      margin: 0 0 18px 0;
    }

    .alc-section-heading {
      margin: 34px 0 16px 0;
      color: var(--alc-blue);
      font-size: 25px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
    }

    .alc-outcomes-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 24px 0 30px 0;
    }

    .alc-outcome {
      border: 1px solid var(--alc-border);
      border-radius: 18px;
      background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
      padding: 20px;
    }

    .alc-outcome h3 {
      margin: 0 0 8px 0;
      color: var(--alc-blue);
      font-size: 19px;
      line-height: 1.25;
      font-weight: 700;
    }

    .alc-outcome p {
      margin: 0;
      color: var(--alc-muted);
      font-size: 15.5px;
      line-height: 1.5;
    }

    .alc-people-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 20px 0 30px 0;
    }

    .alc-person {
      border: 1px solid var(--alc-border);
      border-radius: 18px;
      background: #ffffff;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(44, 80, 146, 0.07);
    }

    .alc-headshot-wrap {
      display: flex;
      justify-content: center;
      margin: 0 0 16px 0;
    }

    .alc-headshot-placeholder,
    .alc-headshot {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      object-fit: cover;
    }

    .alc-headshot-placeholder {
      border: 2px dashed var(--alc-border);
      background: var(--alc-bg);
      color: var(--alc-muted);
      font-size: 13px;
      line-height: 1.3;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .alc-person h3 {
      margin: 0 0 5px 0;
      color: var(--alc-blue);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
      text-align: center;
    }

    .alc-speaker-role {
      margin: 0 0 10px 0;
      color: var(--alc-magenta);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      text-align: center;
    }

    .alc-speaker-title {
      margin: 0 0 10px 0;
      color: var(--alc-text);
      font-size: 15.5px;
      line-height: 1.45;
      font-weight: 700;
      text-align: center;
    }

    .alc-speaker-bio {
      margin: 0;
      color: var(--alc-muted);
      font-size: 15px;
      line-height: 1.55;
    }

    .alc-event-cta {
      text-align: center;
      margin-top: 30px;
    }

    .alc-event-cta a {
      display: inline-block;
      padding: 14px 26px;
      border-radius: 999px;
      background: var(--alc-magenta);
      color: #ffffff !important;
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 18px rgba(215, 0, 155, 0.22);
    }

    .alc-event-cta a:hover {
      background: var(--alc-plum);
      color: #ffffff !important;
      text-decoration: none;
    }

    .alc-note {
      margin-top: 18px;
      color: var(--alc-muted);
      font-size: 14.5px;
      line-height: 1.45;
      text-align: center;
    }

    @media (max-width: 760px) {
      .alc-event-body {
        padding: 26px 22px 30px 22px;
      }

      .alc-event-title {
        font-size: 26px;
      }

      .alc-outcomes-section,
      .alc-people-section {
        grid-template-columns: 1fr;
      }

      .alc-event-meta {
        display: block;
      }

      .alc-meta-item {
        margin-bottom: 10px;
      }
    }
  </style>

  <div class="alc-event-wrapper">
    <div class="alc-event-card">
      <img class="alc-event-hero-img" src="https://cdn.ymaws.com/alcus.site-ym.com/resource/resmgr/2026/webinars/june_24,_2026_-_200_pm_edt__.jpg" alt="Language Access in 2026: What does it all mean?" />

      <div class="alc-event-body">
        <div class="alc-event-type">The ALC Webinar</div>

        <h1 class="alc-event-title">Language Access in 2026: What does it all mean?</h1>

        <div class="alc-event-meta">
          <div class="alc-meta-item"><strong>Date:</strong> June 24, 2026</div>
          <div class="alc-meta-item"><strong>Time:</strong> 2:00 PM EDT</div>
          <div class="alc-meta-item"><strong>Format:</strong> Online Webinar</div>
          <div class="alc-meta-item"><strong>Pricing:</strong> Free for the ALC members | $50 for non-members</div>
        </div>

        <p class="alc-event-description">
          This ALC webinar will clarify what language access means in practice in 2026, bringing together perspectives from community-based organizations, legal experts, and municipal leaders.
        </p>

        <p class="alc-event-description">
          Participants will gain practical language for client conversations, strategies for building stronger community partnerships, and insight into how stakeholders are approaching implementation today.
        </p>

        <p class="alc-event-description">
          The session is designed to help the ALC members move beyond compliance and navigate language access with confidence, clarity, and a focus on sustainable solutions.
        </p>

        <h2 class="alc-section-heading">Speakers and Moderator</h2>

        <div class="alc-people-section">
          <div class="alc-person">
            <div class="alc-headshot-wrap">
              <img class="alc-headshot" src="https://www.alcus.org/resource/resmgr/2026/webinars/poojadadhania_hs.png" alt="Pooja Dadhania headshot" />
            </div>
            <p class="alc-speaker-role">Legal / Policy Expert</p>
            <h3>Pooja Dadhania</h3>
            <p class="alc-speaker-title">Professor of Law, California Western School of Law</p>
            <p class="alc-speaker-bio">
Pooja Dadhania is a Professor of Law at California Western School of Law, where she teaches immigration, asylum and refugee law, and civil procedure. Her research focuses on language access in the immigration system. She previously represented asylum seekers and survivors of abuse and clerked in federal appellate and district courts.
            </p>
          </div>

          <div class="alc-person">
            <div class="alc-headshot-wrap">
              <img class="alc-headshot" src="https://www.alcus.org/resource/resmgr/2026/webinars/Luis_Lopez_Resendiz_hs.png" alt="Luis López Reséndiz headshot" />
            </div>
            <p class="alc-speaker-role">Community-Based Organization Representative</p>
            <h3>Luis López Reséndiz</h3>
            <p class="alc-speaker-title">(Acting) Director of Interpreting, Comunidades Indígenas en Liderazgo</p>
            <p class="alc-speaker-bio">
Luis López Resendiz is CIELO’s Director of Operations and a Ñuú Savi advocate committed to Indigenous rights and visibility for Indigenous migrants in the United States. A UC Berkeley graduate, poet, and media contributor, he also hosts the Tu’un Dali Podcast, created by and for Indigenous communities.
            </p>
          </div>

          <div class="alc-person">
            <div class="alc-headshot-wrap">
              <img class="alc-headshot" src="https://www.alcus.org/resource/resmgr/2026/webinars/jeniffervivarwong_hs.png" alt="Jennifer Vivar-Wong headshot" />
            </div>
            <p class="alc-speaker-role">Municipality / Government Perspective</p>
            <h3>Jennifer Vivar-Wong</h3>
            <p class="alc-speaker-title">Language Access Manager, City of Boston</p>
            <p class="alc-speaker-bio">
Jeniffer Vivar Wong is Executive Director of the Mayor’s Office of Language and Communications Access for the City of Boston. She leads efforts to ensure residents who speak languages other than English and people with disabilities can access city resources, programs, events, and information through inclusive, coordinated language and communications access.
            </p>
          </div>

          <div class="alc-person">
            <div class="alc-headshot-wrap">
              <img class="alc-headshot" src="https://www.alcus.org/resource/resmgr/2026/webinars/daniellegregor_hs.jpg" alt="Danielle Gregor headshot" />
            </div>
            <p class="alc-speaker-role">Moderator</p>
            <h3>Danielle Gregor</h3>
            <p class="alc-speaker-title">ALC / Subcommittee Leadership</p>
            <p class="alc-speaker-bio">
Danielle Gregor is the second-generation owner of Sign Language Interpreting Professionals, where she leads strategy, operations, and administration. A certified interpreter raised bilingually with Deaf grandparents, she is committed to quality communication access, interpreter mentoring, and workforce inclusion. She serves on the ALC Board and ASTM F43 leadership.
            </p>
          </div>
        </div>

        <div class="alc-event-cta">
          <a href="https://www.alcus.org/events/register.aspx?id=2063794" target="_blank" rel="noopener">Register on the ALC Website</a>
        </div>

        <p class="alc-note">
          Join the conversation and gain practical tools to navigate today’s language access landscape with confidence.
        </p>
      </div>
    </div>
  </div>

  <script>
    (function () {
      function moveALCCard() {
        var card = document.getElementById('alc-featured-event-card');
        var main = document.getElementById('sp-main');

        if (card && main && card.parentNode !== main) {
          main.insertBefore(card, main.firstElementChild || null);
        }
      }

      moveALCCard();
      setTimeout(moveALCCard, 500);
      setTimeout(moveALCCard, 1500);
    })();
  </script>
</div>]]></description>
<pubDate>Wed, 24 Jun 2026 19:00:00 GMT</pubDate>
</item>
</channel>
</rss>
