/** Shopify CDN: Minification failed

Line 51:19 Expected identifier but found whitespace
Line 51:21 Unexpected "{"
Line 51:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.fussy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 40px 20px;
}
.fussy-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s ease;
}
.fussy-card:hover {
  transform: translateY(-5px);
}
.fussy-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.fussy-card .tag {
  display: inline-block;
  background-color: #c3f4ba;
  color: black;
  font-size: 12px;
  font-weight: bold;
  border-radius: 8px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.fussy-card h3 {
  font-size: 20px;
  margin: 12px 0 6px;
}
.fussy-card p {
  font-size: 14px;
  color: #444;
}
.liken-insta-section {
  background-color: {{ section.settings.background }};
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  position: relative;
}
.liken-insta-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.liken-insta-block {
  width: 120px;
  height: 180px;
  border-radius: 20px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.liken-insta-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.liken-insta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.liken-insta-floating-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.liken-insta-floating-tag:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .liken-insta-block {
    width: 100px;
    height: 150px;
  }
  .liken-insta-floating-tag {
    font-size: 18px;
    padding: 6px 20px;
  }
}