/** Shopify CDN: Minification failed

Line 151:0 Unexpected "{"
Line 151:1 Expected identifier but found "%"
Line 151:18 Expected identifier but found whitespace
Line 151:42 Unexpected "-"
Line 151:107 Expected identifier but found "%"
Line 166:0 Unexpected "{"
Line 166:1 Expected identifier but found "%"
Line 166:18 Expected identifier but found whitespace
Line 166:48 Unexpected "-"
Line 166:101 Expected identifier but found "%"
... and 90 more hidden warnings

**/


/* CSS from section stylesheet tags */
.rc-categories {
  margin-bottom: 3rem;
}

.rc-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.rc-category-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.rc-category-card:hover {
  transform: translateY(-5px);
}

.rc-category-card.is-active {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rc-category-card__image {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.rc-category-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-category-card__title {
  font-size: 1.25rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .rc-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rc-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.rc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.rc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--color-white);
}

.rc-hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.rc-hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.rc-search {
  max-width: 600px;
  margin: 0 auto;
}

.rc-search__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

@media screen and (min-width: 640px) {
  .rc-hero {
    min-height: 500px;
  }

  .rc-hero__title {
    font-size: 3rem;
  }

  .rc-hero__subtitle {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .rc-hero {
    min-height: 600px;
  }

  .rc-hero__title {
    font-size: 3.5rem;
  }
}
{% comment %} TGE: MAIN ARTICLE CONTAINER - Base styling for the article wrapper with gradient background {% endcomment %}
.rc-article {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: #7C7C7C;
  background: linear-gradient(180deg,rgba(124, 124, 124, 1) 0%, rgba(124, 124, 124, 1) 25%, rgba(255, 255, 255, 1) 25%);
}

@media screen and (max-width: 767px) {
.rc-article {
  background:#fff;
}
}

{% comment %} TGE: FULL-WIDTH IMAGE ADJUSTMENTS - Removes top padding when full-width image is used {% endcomment %}
.rc-article:has(.rc-article__featured-image--full-width) {
  padding-top: 0 !important;
}

.rc-article__featured-image--full-width + .rc-article__container {
  padding-top: 0 !important;
}

{% comment %} TGE: ARTICLE CONTAINER LAYOUT - Flexbox container for content organization {% endcomment %}
.rc-article__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

{% comment %} TGE: FEATURED IMAGE STYLING - Base styles for article featured images {% endcomment %}
.rc-article__featured-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

{% comment %} TGE: FULL-WIDTH IMAGE VARIANT - Extends image to full viewport width {% endcomment %}
.rc-article__featured-image--full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  border-radius: 0;
}

{% comment %} TGE: CONTAINED IMAGE VARIANT - Centers image with max-width constraint {% endcomment %}
.rc-article__featured-image--contained {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rc-article__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

{% comment %} TGE: CONTENT WRAPPER - Centers and constrains main content area {% endcomment %}
.rc-article__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

{% comment %} TGE: ARTICLE HEADER - Styling for title, excerpt, date, and author section {% endcomment %}
.rc-article__header {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}
.rc-article__subtitle, .rc-article__subtitle a {
font-size: 1rem;
margin-top: 0;
color: #fff;
text-decoration: none;
}

@media screen and (max-width: 767px) {
.rc-article__header, .rc-article__subtitle, .rc-article__subtitle a {
  color:#000;
}
}
.rc-article__title {
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  line-height: 1.3;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
.rc-article__title {
  font-size: 1.25rem;
  line-height: 1.3;
}
}

.rc-article__excerpt {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
.rc-article__excerpt {display: none;font-size: 1rem; line-height: 1.4;}
}

.rc-article__date,
.rc-article__author {
  color: #fff;
  margin: 0;
  font-size: 0.9rem;
}

{% comment %} TGE: VIDEO EMBED STYLING - Responsive video container with aspect ratio preservation {% endcomment %}
.rc-article__video {
  margin: 1.5rem 0;
}

.rc-article__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  border: solid 2px #f1f1f1;
  background: #000;
}

.rc-article__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

{% comment %} TGE: ARTICLE BODY - Main content text styling {% endcomment %}
.rc-article__body {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .rte h2 { margin-top: 0px !important; font-size: 1.25rem !important;}
}


{% comment %} TGE: TWO-COLUMN LAYOUT - Flexbox layout for main content and sidebar {% endcomment %}
.rc-article-columns {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.rc-article__body {
  flex: 3;
}

{% comment %} TGE: SIDEBAR CONTAINER - Right sidebar with related content {% endcomment %}
.rc-article-sides {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

{% comment %} TGE: RELATED CONTENT BOXES - Styling for related products and resources sections {% endcomment %}
.rc-article-related-products,
.rc-article-related-resources {
  background: #f1f1f1;
  padding: 1.5rem;
}

.rc-article-related-products h3,
.rc-article-related-resources h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #333;
}

.rc-article-related-products ul,
.rc-article-related-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rc-article-related-products li,
.rc-article-related-resources li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}

.rc-article-related-products li:last-child,
.rc-article-related-resources li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rc-article-related-products a,
.rc-article-related-resources a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
}

.rc-article-related-products a:hover,
.rc-article-related-resources a:hover {
  color: #666;
}

{% comment %} TGE: RELATED PRODUCT IMAGES - Thumbnail styling for product images {% endcomment %}
.rc-related-product-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
}

.rc-related-product-title {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
}

.rc-article-related-products li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.rc-article-related-products a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s ease;
}

.rc-article-related-products a:hover {
  opacity: 0.8;
}

{% comment %} TGE: RELATED RESOURCE IMAGES - Thumbnail styling with play button overlay {% endcomment %}
.rc-related-resource-image {
  width: 90px;
  height: 60px;
  object-fit: cover;
  vertical-align: middle;
  position: relative;
}

.rc-related-resource-image-container {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

{% comment %} TGE: PLAY BUTTON OVERLAY - Video play button for resource thumbnails {% endcomment %}
.rc-related-resource-image-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.rc-related-resource-image-container .play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid white;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}

.rc-related-resource-image-container:hover .play-button {
  background: rgba(0, 0, 0, 0.9);
}

.rc-related-resource-title {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
}

.rc-article-related-resources li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.rc-article-related-resources a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s ease;
}

.rc-article-related-resources a:hover {
  opacity: 0.8;
}

{% comment %} TGE: MOBILE RESPONSIVE - Stack layout on mobile devices {% endcomment %}
@media screen and (max-width: 767px) {
  .rc-article-columns {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  
  .rc-article-sides {
    order: -1;
  }
}

{% comment %} TGE: SOCIAL SHARING SECTION - Styling for share buttons and container {% endcomment %}
.rc-article__share {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.rc-article__share-title {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.rc-article__share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rc-article__share-button {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  background: #000000;
  font-size: 0.9rem;
}

.rc-article__share-button:hover {
  opacity: 0.9;
}

.rc-article__share-button--facebook,
.rc-article__share-button--twitter,
.rc-article__share-button--linkedin {
  background: #000000;
}

{% comment %} TGE: TABLET RESPONSIVE - Enhanced styling for tablet devices {% endcomment %}
@media screen and (min-width: 768px) {
  .rc-article {
    padding: 3rem 2rem;
  }

  .rc-article__title {
    font-size: 2rem;
  }

  .rc-article__excerpt {
    font-size: 1.1rem;
    max-width: 900px;
  }

  .rc-article__date,
  .rc-article__author {
    font-size: 1rem;
  }

  .rc-article__body {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .rc-article__share-title {
    font-size: 1.25rem;
  }

  .rc-article__share-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .rc-article__share-buttons {
    gap: 1rem;
  }
}

{% comment %} TGE: DESKTOP RESPONSIVE - Enhanced styling for desktop devices {% endcomment %}
@media screen and (min-width: 1024px) {
  .rc-article {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 4rem;
  }

  .rc-article:not(:has(.rc-article__featured-image--full-width)) {
    padding-top: 4rem;
  }

  .rc-article__title {
    font-size: 2rem;
  }
}