/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:51 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
... and 31 more hidden warnings

**/
<style>
.company-info-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 20px auto;
  background: {{ section.settings.background_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  position: relative;
  color: {{ section.settings.text_color }};
  font-size: {{ section.settings.font_size }}px;
  box-sizing: border-box;
  overflow: hidden; 
}

/* ✅ Watermark inside section */
.company-info-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 60px; 
  font-weight: bold;
  color: #999;
  opacity: 0.05;
  white-space: nowrap;
  z-index: 0; 
  pointer-events: none;
  max-width: 100%; 
  text-align: center;
}

.company-info-title {
  font-size: calc({{ section.settings.font_size }}px + 4px);
  font-weight: 600;
  margin-bottom: 16px;
  color: {{ section.settings.text_color }};
  position: relative;
  z-index: 1; 
}

.company-info-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.company-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-info-label {
  font-weight: 600;
  color: {{ section.settings.text_color }};
}

.company-info-value {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  color: {{ section.settings.text_color }};
  word-break: break-word;
}

.company-info-value a {
  color: #000000;
  text-decoration: none;
  word-break: break-all;
}

.company-info-value a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .company-info-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .company-info-title {
    font-size: calc({{ section.settings.font_size }}px + 2px);
    text-align: center;
  }

  .company-info-watermark {
    font-size: 12vw; 
  }
}

@media (max-width: 480px) {
  .company-info-section {
    padding-left: 12px;
    padding-right: 12px;
    font-size: {{ section.settings.font_size | minus: 2 }}px;
  }

  .company-info-title {
    font-size: {{ section.settings.font_size | plus: 2 }}px;
  }

  .company-info-watermark {
    font-size: 40px; 
  }

  .company-info-value {
    font-size: {{ section.settings.font_size | minus: 2 }}px;
  }
}
</style>
