<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sw19b-outages-index {
  font-family: 'Roboto';
  color: #111111;

  .featured-post {
    display: flex;
    align-items: center;
    margin-top: 50px;
    column-gap: 32px;

    &amp;-info {
      font-size: 16px;
      flex: 1;

      .featured-date {
        margin: 0 0 10px;
      }

      .featured-title {
        font-size: 28px;
        line-height: 1.2;
        font-weight: bold;
        font-family: inherit;
        margin: 0;
      }

      .featured-content {
        font-size: 20px;
        margin-top: 0;
      }

      .featured-author {
        margin: 5px 0 0;
      }
    }

    &amp;-image {
      width: 612px;
      height: 344px;
      object-fit: cover;

      img {
        max-height: 100%;
        object-fit: cover;
      }
    }

    @media (max-width: 992px) {
      flex-direction: column;
      row-gap: 32px;
      margin: 0;

      &amp;-image {
        width: 100%;
        height: auto;
      }

      .featured-post-info .featured-date {
        margin-top: 10px;
      }
    }
  }

  .outages-blog-wrapper {
    margin: 65px 0;

    .cta-button {
      display: flex;
      justify-content: center;
      margin-top: 18px;
    }

    @media (max-width: 425px) {
      margin: 48px 0 32px;

      .cta-button {
        margin-top: 15px;
      }
    }
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(33%, 355px));
    justify-content: space-between;
    row-gap: 40px;

    .blog-item {
      width: 355px;
      font-size: 16px;
      text-decoration: none;
      line-height: 1.31;
      text-align: left;
      max-width: 100%;
      color: inherit;

      &amp;-date {
        padding: 15px 15px 10px;
        font-weight: bold;
      }

      &amp;-image img {
        width: 100%;
        height: 165px;
        object-fit: cover;
      }

      &amp;-content {
        padding: 15px 15px 0;

        .blog-title {
          font-size: 24px;
          font-weight: bold;
          line-height: 1;
          font-family: inherit;
        }

        p {
          margin: 5px 0;
        }
      }
    }

    @media (max-width: 425px) {
      grid-template-columns: 100%;
      row-gap: 20px;
    }
  }
}
</pre></body></html>