/** Shopify CDN: Minification failed

Line 61:0 Unexpected "{"
Line 61:1 Expected identifier but found "%"
Line 79:0 Unexpected "{"
Line 79:1 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.values-section-container {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.values-subtitle {
  font-size: 16px;
  margin-bottom: 10px;
}

.values-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
}

.value-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.value-header {
  display: flex;
  align-items: center;  
}

.value-number {
  font-weight: bold;
  margin-right: 10px;
  font-size:50px !important;
}

.value-title {
  font-weight: bold;
  margin: 0;
}

.value-description {
  line-height: 1.6;
}

{% if section.settings.enable_hover_effect %}
.value-card:hover {
  background-color: #D8A516 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-card:hover .value-title {
  color: var(--hover-title) !important;
}

.value-card:hover .value-number {
  color: var(--hover-number) !important;
}

.value-card:hover .value-description {
  color: var(--hover-text) !important;
}
{% endif %}

@media screen and (max-width: 991px) {
  .values-grid {
    grid-template-columns: repeat({{ section.settings.columns_tablet }}, 1fr) !important;
  }
  
  .values-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }
  
  .values-title {
    font-size: 24px;
  }
  
  .values-subtitle {
    font-size: 14px;
  }
}