/* SCSS Framework boilerplate from Ristretto: https://github.com/kylelarkin/ristretto */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body, select, input, textarea {
  color: #333; }

::-moz-selection {
  background: #ccc;
  color: #000;
  text-shadow: none; }

::selection {
  background: #ccc;
  color: #000;
  text-shadow: none; }

a:link {
  -webkit-tap-highlight-color: #ccc; }

ins {
  background-color: #ccc;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ccc;
  color: #000;
  font-style: italic;
  font-weight: bold; }

.conversation {
  background-color: #F4F9F8;
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 0; }
  .conversation:before {
    background-color: #F4F9F8;
    content: '';
    z-index: -10;
    position: absolute;
    left: -100%;
    height: 100%;
    width: 500%; }
  @media only screen and (min-width: 768px) {
    .conversation {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem 4rem; } }
  @media only screen and (min-width: 1344px) {
    .conversation {
      grid-gap: 1rem;
      grid-template-columns: repeat(4, 1fr); } }
  .conversation h2.conversation-header {
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
    padding: 2rem 0 1.5rem 0;
    display: inline-block; }
    @media only screen and (min-width: 768px) {
      .conversation h2.conversation-header {
        grid-column: 1/ span 2; } }
    @media only screen and (min-width: 1344px) {
      .conversation h2.conversation-header {
        grid-column: 1/ span 4; } }
  .conversation a {
    background-image: none !important; }
    .conversation a:hover {
      padding: 0 !important; }
  .conversation .conversation-container {
    display: flex; }
    @media only screen and (min-width: 1024px) {
      .conversation .conversation-container {
        margin-top: .25rem; } }
    .conversation .conversation-container .join-icon {
      align-items: center;
      background-color: #3CAA8B;
      border-radius: 100%;
      color: #fff;
      display: flex;
      font-size: 1.625rem;
      justify-content: center;
      max-height: 60px;
      max-width: 60px;
      min-height: 60px;
      min-width: 60px; }
      .conversation .conversation-container .join-icon svg {
        margin-left: 1.5px; }
    .conversation .conversation-container .item-description {
      width: calc(100% - 60px);
      margin-left: 1.5rem; }
      .conversation .conversation-container .item-description h3, .conversation .conversation-container .item-description h3 a {
        color: #3CAA8B;
        font-family: "proxima-nova", Helvetica, Arial, sans-serif;
        font-size: 1rem;
        font-weight: 700;
        line-height: 19px;
        letter-spacing: 1.3333330154418945px;
        text-transform: uppercase;
        margin-bottom: .5rem;
        place-self: start; }
      .conversation .conversation-container .item-description p {
        font-size: 1.0625rem;
        font-weight: 300;
        line-height: 25px;
        letter-spacing: 0.5277777910232544px;
        margin: 0 0 1rem 0;
        place-self: start; }
      .conversation .conversation-container .item-description .social-links {
        margin-top: 1rem; }
        .conversation .conversation-container .item-description .social-links a {
          font-size: 1.1875rem;
          margin-right: 1.5rem; }
      .conversation .conversation-container .item-description .more {
        font-family: "proxima-nova", Helvetica, Arial, sans-serif;
        font-size: 0.875rem;
        font-weight: 700;
        line-height: 17px;
        letter-spacing: 1.166666030883789px;
        text-transform: uppercase;
        place-self: end start; }
        .conversation .conversation-container .item-description .more svg {
          margin-left: .5rem; }
