/** Shopify CDN: Minification failed

Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 58:8 Expected identifier but found whitespace
Line 58:10 Unexpected "{"
Line 58:19 Expected ":"
Line 72:8 Expected identifier but found whitespace
Line 72:10 Unexpected "{"
Line 72:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.famiglia-section {
  background-color: {{ section.settings.background_color }};
  padding: 60px 20px;
}

.famiglia-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.famiglia-image {
  margin-bottom: 30px;
}
.famiglia-section {
    background: #FBF8F2;
}

.famiglia-image img {
  width: 300px;
  height: 300px;
  border-radius: 48%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.famiglia-heading {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #A87D0B;
  font-weight: 400;
  font-family: Georgia, serif;
}

.famiglia-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: {{ section.settings.text_color }};
}

.famiglia-text p {
  margin-bottom: 20px;
}

.famiglia-text p:last-child {
  margin-bottom: 0;
}

.famiglia-signature {
  font-size: 16px;
  margin-bottom: 30px;
  color: {{ section.settings.text_color }};
}

.famiglia-social {
  display: flex;
  justify-content: center;
}

.famiglia-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1a3a5c;
  border-radius: 50%;
  color: white;
  transition: background-color 0.3s ease;
}

.famiglia-social a:hover {
  background-color: #2c5282;
}

@media screen and (max-width: 749px) {
  .famiglia-section {
    padding: 40px 15px;
  }
  
  .famiglia-image img {
    width: 250px;
    height: 250px;
  }
  
  .famiglia-heading {
    font-size: 26px;
  }
  
  .famiglia-text {
    font-size: 15px;
  }
}