.blog-latest-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--content-vertical-space) 0;
  box-sizing: border-box;
  gap: 10px; }
  .blog-latest-list h1 {
    color: white;
    letter-spacing: 1.5px;
    font-weight: bolder; }
  .blog-latest-list .blog-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 40px;
    justify-content: space-between; }
    .blog-latest-list .blog-content .blog-latest-item {
      text-decoration: none;
      display: flex;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      flex-direction: column;
      justify-content: flex-end;
      max-width: 100%;
      max-height: 300px;
      min-height: 400px;
      width: 100%;
      height: 100%; }
      .blog-latest-list .blog-content .blog-latest-item .blog-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .blog-latest-list .blog-content .blog-latest-item .content {
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 40px;
        justify-content: flex-end;
        gap: 10px; }
        .blog-latest-list .blog-content .blog-latest-item .content p {
          color: white;
          position: relative;
          z-index: 1; }
        .blog-latest-list .blog-content .blog-latest-item .content h3 {
          color: white;
          position: relative;
          z-index: 1;
          font-weight: bolder; }
        .blog-latest-list .blog-content .blog-latest-item .content .background {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31.99%, rgba(79, 95, 114, 0.6) 93.43%); }
      .blog-latest-list .blog-content .blog-latest-item.border-radius-top-left {
        border-top-left-radius: 10px; }
      .blog-latest-list .blog-content .blog-latest-item.border-radius-top-right {
        border-top-right-radius: 10px; }
      .blog-latest-list .blog-content .blog-latest-item.border-radius-bottom-left {
        border-bottom-left-radius: 10px; }
      .blog-latest-list .blog-content .blog-latest-item.border-radius-bottom-right {
        border-bottom-right-radius: 10px; }
    @media (min-width: 768px) {
  .blog-latest-list .blog-content .blog-latest-item {
    max-width: unset;
    max-height: 600px; } }
    @media (min-width: 1024px) {
  .blog-latest-list .blog-content .blog-latest-item {
    flex: 1;
    min-width: 300px;
    max-width: none; } }
    @media (min-width: 1200px) {
  .blog-latest-list .blog-content .blog-latest-item {
    flex: 1;
    min-width: 350px;
    max-width: none; } }
