/** Shopify CDN: Minification failed

Line 20:21 Expected identifier but found whitespace
Line 20:23 Unexpected "{"
Line 20:32 Expected ":"
Line 33:10 Expected identifier but found whitespace
Line 33:12 Unexpected "{"
Line 33:21 Expected ":"
Line 39:10 Expected identifier but found whitespace
Line 39:12 Unexpected "{"
Line 39:21 Expected ":"
Line 99:10 Expected identifier but found whitespace
... and 33 more hidden warnings

**/


/* CSS from section stylesheet tags */
.blog-section {
    background-color: {{ section.settings.bg_color }};
  }

  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  

  .blog-title {
    font-size: 32px;
    font-weight: bold;
    color: {{ section.settings.title_color }};
    margin-bottom: 10px;
  }

  .blog-description {
    font-size: 16px;
    color: {{ section.settings.desc_color }};
  }



  .blog-grid {
    display: grid;
    gap: 0;
   
  }

  .blog-item {
    display: none;
    grid-template-columns: 330px 1fr;
    gap: 40px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .blog-item.show {
    display: grid;
  }

  .blog-item:last-child {
    border-bottom: none;
  }

  .blog-image-wrapper {
    width: 280px;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
  }

  .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .blog-item:hover .blog-image {
    transform: scale(1.05);
  }

  .blog-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .blog-category {
    font-size: 12px;
    font-weight: 600;
    color: {{ section.settings.accent_color }};
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .blog-item-title {
    font-size: 24px;
    font-weight: 700;
    color: {{ section.settings.title_color }};
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .blog-item-excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: white !important;
    background-color: #2563eb !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
    cursor: pointer;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    margin-top: 16px;
    width: fit-content;
  }

  .blog-link:hover {
    background-color: #1d4ed8 !important;
  }

  .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    .blog-section {
      padding: 40px 16px;
    }

    .blog-title {
      font-size: 24px;
    }

    .blog-item {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .blog-image-wrapper {
      width: 100%;
      max-width: 400px;
    }

    .blog-item-title {
      font-size: 18px;
    }
  }
.page-banner-section {
    padding: var(--section-padding-top, 44px) 20px var(--section-padding-bottom, 80px) 20px;
    background-color: {{ section.settings.bg_color }};
  }

  .page-banner-container {
    max-width: 1368px;
    margin: 0 auto;
  }

  .page-banner-inner {
    text-align: {{ section.settings.text_alignment }};
  }

  .page-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: {{ section.settings.title_color }};
    margin-bottom: 20px;
    line-height: 1.2;
    {% if section.settings.uppercase_title %}
      text-transform: uppercase;
    {% endif %}
  }

  .page-banner-description {
    color: {{ section.settings.desc_color }};
    font-size: 16px;
    line-height: 1.6;
  }

  .page-banner-details {
    margin-bottom: 0;
    text-align: {{ section.settings.text_alignment }};
  }

  .page-banner-summary {
    cursor: pointer;
    list-style: none;
    position: relative;
  }

  .page-banner-summary::-webkit-details-marker {
    display: none;
  }

  .page-banner-details[open] .page-banner-short-desc {
    display: none;
  }

  .page-banner-details[open] .read-more-btn {
    display: none;
  }

  .page-banner-details:not([open]) .page-banner-full-desc {
    display: none;
  }

  .read-more-btn,
  .read-less-btn {
    margin-top: 15px;
    display: inline-block;
    font-weight: 600;
    color: {{ section.settings.accent_color }};
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-size: 16px;
    font-family: inherit;
  }

  .read-more-btn:hover,
  .read-less-btn:hover {
    text-decoration: underline;
  }

  .read-less-container {
    margin-top: 15px;
  }

  .page-banner-short-desc,
  .page-banner-full-desc,
  .page-banner-description {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  .rte {
    font-family: inherit;
  }

  .rte p {
    margin: 0 0 1em 0;
  }

  .rte p:last-child {
    margin-bottom: 0;
  }

  @media screen and (max-width: 768px) {
    .page-banner-section {
      padding: 30px 16px;
    }

    .page-banner-title {
      font-size: 24px;
    }

    .page-banner-description {
      font-size: 14px;
    }
  }
.video-grid-section {
    padding: 40px 20px;
    background-color: {{ section.settings.bg_color }};
  }

  .video-grid-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .video-grid-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: bold;
    color: {{ section.settings.title_color }};
  }

  .video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  .video-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .video-item:hover {
    transform: scale(1.02);
  }

  .video-item-large {
    grid-column: 1;
    grid-row: 1 / 3;
    
  }

  .video-item-small {
    aspect-ratio: 16 / 9;
  }

  .video-item-small:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .video-item-small:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
  }

  .video-item:hover .play-button {
    background-color: rgba(255, 0, 0, 1);
  }

  .play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .video-item:hover .video-overlay {
    opacity: 1;
  }

  .video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
  }

  .video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
  }

  .modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
  }

  .modal-close:hover {
    color: #ccc;
  }

  .modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .video-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
    }

    .video-item-large {
      grid-column: 1;
      grid-row: 1;
    }

    .video-item-small:nth-child(2) {
      grid-column: 1;
      grid-row: 2;
    }

    .video-item-small:nth-child(3) {
      grid-column: 1;
      grid-row: 3;
    }

    .video-grid-title {
      font-size: 24px;
    }

    .play-button {
      width: 50px;
      height: 50px;
    }

    .play-button::after {
      border-left: 14px solid white;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
    }
  }