/** Shopify CDN: Minification failed

Line 51:10 Expected identifier but found whitespace
Line 51:12 Unexpected "{"
Line 51:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.media-embeds-section {
  padding: 40px 20px;
  background-color: var(--section-bg, #ffffff);
}
.media-embeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.media-embed-block {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.media-embed-video iframe {
    width: 100%;
    height: 433px;
    border: none;
}
.media-embed-info {
  padding: 15px;
}
.media-embed-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 6px;
}
.media-embed-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.icons-info-wrapper {
  max-width: 1230px;
  width: 100%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: {{ section.settings.section_padding }};
  box-sizing: border-box;
  padding-inline:12px;
}

.icons-info-box {
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #000;
}

.icons-info-icon {
  height: 55px;
  margin-bottom: 15px;
}

.icons-info-icon img {
  max-height: 55px;
  width: auto;
}

.icons-info-heading {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 20px;
}

.icons-info-subheading {
  font-size: 14px;
  color: rgb(10 10 10 / 72%);
  line-height: 1.2;
}