/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 381:2 Unexpected "<"

**/
<style>
  .standard-padding {
      padding: 100px 0;

      @media (max-width: 1199px) {
          padding: 70px 30px;
      }

      @media (max-width: 767px) {
          padding: 50px 20px;
      }
  }

  section.blogsPreview {
    display: flex;
    flex-direction: column;


    .blogs-preview-contents {
        width: 100%;
        max-width: 1502px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        position: relative;
        margin: 0 auto;

        @media (min-width: 1200px) and (max-width: 1920px) {
          max-width: 78.28vw;
        }

        @media (max-width: 1199px) {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .header-text {
            h1 {
              font-size: 40px;
              font-weight: 400;
              line-height: 100%;
              letter-spacing: 0.6px;
              margin: 0;
              margin-bottom: 20px;
              font-family: 'Segoe UI', Arial;
            }  

            h2 {
              margin-bottom: 20px;
            }
      
            p {
              margin: 0;
              font-family: 'Segoe UI', Arial;
            }
        }

        .preview-content {
          display: flex;
          gap: 24px;

          @media (max-width: 1199px) {
            flex-direction: column;
          }

          .left-content {
            width: 100%;
            max-width: 739px;
            display: flex;
            flex-direction: column;

            @media (max-width: 1199px) {
              max-width: 100%;
            }

            .latest-entry  {
              display: flex;
              flex-direction: column;

              @media (max-width: 1199px) {
                align-items: flex-start;
              }

              .img-container {
                display: flex;
                flex-direction: column;
                width: 100%;
                overflow: hidden;
                border-radius: 16px;
                margin-bottom: 17px;
                transition: 0.5s ease;

                img {
                  width: 100%;
                  height: 100%;
                  max-height: 400px;
                  object-fit: cover;
                  border-radius: 16px;
                  transition: 0.5s ease;

                  @media (max-width: 991px) {
                    min-width: -webkit-fill-available;
                  }
                }
              }

              h3 {
                font-size: 24px;
                font-weight: 400;
                line-height: 31.2px;
                letter-spacing: 0.6px;
                margin: 0;
                margin-bottom: 12px;
                transition: 0.5s ease;
                font-family: 'Segoe UI', Arial;

                @media (max-width: 767px) {
                  font-size: 20px;
                }
              }

              .entry-details {
                display: flex;
                gap: 24px;
                margin-bottom: 12px;

                @media (max-width: 1199px) {
                  justify-content: center;
                }

                p {
                  margin: 0;
                  font-size: 10px;
                  font-family: 'Segoe UI', Arial;
                }
              }

              .metafield-rich_text_field {
                margin-bottom: 12px;

                p {
                  margin: 0;

                  @media (max-width: 1199px) {
                    text-align: left;
                  }
                }
              }

              p {
                margin: 0;
                margin-bottom: 12px;
              }

              .read-more {
                display: flex;
                gap: 10px;
                align-items: center;
                position: relative;
                margin-top: auto;

                @media (max-width: 1199px) {
                  justify-content: center;
                }

                a {
                  text-decoration: none;
                  color: #121212;
                  font-family: 'Segoe UI', Arial;
                }

                svg {
                  transition: 0.5s ease;
                }
              }

              &:hover {
                .img-container {
                  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);

                  img {
                    transform: scale(1.2);
                  }           
                }

                .read-more {
                  svg {
                    transform: translateX(10px);
                  }
                }

                h3 {
                  text-decoration: underline;
                }

              }

            }
          }

          .right-content {
            width: 100%;
            max-width: 739px;
            display: flex;
            flex-direction: column;
            gap: 24px;

            @media (max-width: 1199px) {
              max-width: 100%;
            }

            .entry-item {
              display: flex;
              gap: 17px;

              @media (max-width: 991px) {
                flex-direction: column;
              }

              .entry-image {
                border-radius: 16px;
                display: flex;
                height: min-content;

                .img-container {
                  display: flex;
                  flex-direction: column;
                  width: 100%;
                  overflow: hidden;
                  border-radius: 16px;
                  transition: 0.5s ease;

                  img {
                    width: 100%;
                    min-width: 18.75vw;
                    height: 100%;
                    max-height: 185px;
                    object-fit: cover;
                    border-radius: 16px;
                    overflow: hidden;
                    transition: 0.5s ease;

                    @media (max-width: 1853px) {
                      max-height: -webkit-fill-available;
                    } 

                    @media (max-width: 1199px) {
                      max-height: 185px;
                      min-width: 360px;
                    }

                    @media (max-width: 991px) {
                      max-height: 400px;
                      min-width: -webkit-fill-available;
                    }
                  }
                }
              }

              .entry-content {
                width: -webkit-fill-available;

                @media (max-width: 1199px) {
                  display: flex;
                  flex-direction: column;
                  align-items: flex-start;
                }
                
                h3 {
                  font-size: 24px;
                  font-weight: 400;
                  line-height: 31.2px;
                  letter-spacing: 0.6px;
                  margin: 0;
                  margin-bottom: 12px;
                  transition: 0.5s ease;
                  font-family: 'Segoe UI', Arial;

                  @media (min-width: 1200px) {
                    max-width: 360px;
                    overflow: hidden;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                  }

                  @media (max-width: 767px) {
                    font-size: 20px;
                  }
                }

                .entry-details {
                  display: flex;
                  gap: 24px;
                  margin-bottom: 12px;

                  @media (max-width: 1199px) {
                    justify-content: center;
                  }

                  p {
                    margin: 0;
                    font-size: 10px;
                    font-family: 'Segoe UI', Arial;
                  }
                }

                .metafield-rich_text_field {
                  margin-bottom: 12px;
                  
                  p {
                    margin: 0;

                    @media (max-width: 1199px) {
                      text-align: left;
                    }
                  }
                }

                .read-more {
                  display: flex;
                  gap: 10px;
                  align-items: center;
                  position: relative;
                  margin-top: auto;

                  @media (max-width: 1199px) {
                    justify-content: center;
                  }

                  a {
                    text-decoration: none;
                    color: #121212;
                    font-family: 'Segoe UI', Arial;
                  }

                  svg {
                    transition: 0.5s ease;
                  }
                }

              }

              &:hover {
                .entry-image {
                  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);
                  display: flex;
                  height: min-content;

                  img {
                    transform: scale(1.2);
                  }           
                }

                .read-more {
                  svg {
                    transform: translateX(10px);
                  }
                }

                h3 {
                  text-decoration: underline;
                }

              }

            }
          }
        }

    }
  }


  </style>
