/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #blog-2459 {
    padding: var(--sectionPadding);
    background-color: #f1f1f1;
  }
  #blog-2459 .cs-container {
    width: 100%;
    /* switches to 1280px at tablet */
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #blog-2459 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #blog-2459 .cs-title,
  #blog-2459 .cs-text {
    max-width: 100%;
  }
  #blog-2459 .cs-card-group {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: clamp(1rem, 1.5vw, 1.25rem);
    row-gap: 1rem;
  }
  #blog-2459 .cs-item {
    text-align: center;
    height: fit-content;
    grid-column: span 12;
    position: relative;
    z-index: 1;
  }
  #blog-2459 .cs-item:before {
    border-radius: 0.25rem;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    /* opacity: 0.05; */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #blog-2459 .cs-picture {
    width: 100%;
    height: clamp(13.75rem, 26vw, 18.75rem);
    overflow: hidden;
    display: block;
    position: relative;
  }
  #blog-2459 .cs-picture img {
    border-radius: 0.25rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #blog-2459 .cs-flex {
    padding: 1.5rem clamp(1rem, 2vw, 1.5rem);
  }
  #blog-2459 .cs-info-wrapper {
    margin: 0 0 1rem 0;
    display: flex;
    justify-content: space-between;
  }
  #blog-2459 .cs-date {
    color: var(--bodyTextColor);
  }

  #blog-2459 .cs-tag {
    color: var(--bodyTextColor);
    background-color: transparent;
    border-radius: 0.25rem;
    border: 2px solid var(--primary);
    padding: 0.1rem 1.1rem 0rem 1.1rem;
}

  #blog-2459 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.3vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0 0 0.5rem 0;
    overflow: hidden;
    color: var(--headerColor);
    display: -webkit-box;
    transition: color 0.3s;
  }
  #blog-2459 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--bodyTextColor);
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  #blog-2459 .cs-link {
    border-radius: 0.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-decoration: none;
    padding: 1rem 1.5rem;
    color: var(--headerColor);
    border-top: 2px solid var(--primary);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    transition: background-color 0.3s, color 0.3s;
  }
  #blog-2459 .cs-link:hover {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
  }
  #blog-2459 .cs-link:hover .cs-link-icon {
    filter: grayscale(0) brightness(10000%);
  }
  #blog-2459 .cs-link-icon {
    width: 1.25rem;
    height: auto;
    display: block;
    position: relative;
    transition: filter 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #blog-2459 .cs-container {
    max-width: 80rem;
  }
  #blog-2459 .cs-card-group {
    align-items: stretch;
  }
  #blog-2459 .cs-item {
    height: auto;
    display: flex;
    flex-direction: column;
    grid-column: span 4;
  }
  #blog-2459 .cs-flex {
    margin-bottom: auto;
  }
}
                                