/* Tool Detail */
.digital-tool-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px;
}

.platform-tag {
  display: inline-block;
  padding: 2px 10px;
  margin-right: 6px;
  border-radius: 20px;
  background: #e9f6f2;
  font-size: 0.8rem;
  color: rgb(15, 118, 110)
}

.tool-image { border-radius: 12px !important }
.tool-rating {
  font-weight: 600;
  color: #f59e0b;
}

.tool-thumbnail img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f6f7;
  padding: 8px 10px;
  border-radius: 10px;
  color: #111;
  font-size: 0.9rem
}

/* Icon check */
.feature-list li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #e6f4ee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
@media (max-width: 768px) {
  .feature-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tool_pros ul, .tool_cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -5px;
}
.tool_pros li, .tool_cons li {
  display: flex;
  align-items: start;
  gap: 3px;
  margin-bottom: 0.2rem
}
.tool_pros li::before, .tool_cons li::before {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.tool_pros li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  
}
.tool_cons li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E");
}
/* Tags cloud */
/* Wrapper */
nav.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

/* Tag item */
nav.tagcloud a {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  border-radius: 999px;
  background: #e9f6f2;
  color: #0f766e;
  font-size: 0.8rem !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

nav.tagcloud a:hover {
  background: #ccfbf1;
  color: #0d9488;
}
nav.tagcloud a {
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.tool-sidebar { }

.tool-price {
  position: sticky;
  top: 90px;
  z-index: 1111
}

/* Integrations */
.acf-post-integrations {
	list-style: none;
    margin: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.acf-post-integrations li {
	
}
.acf-post-integrations li a {
	display: flex;
    flex-direction: column;
	align-items: center;
	padding: 6px;
	border-radius: 6px;
	border: 1px solid rgb(235, 235, 235);
	color: #222
}
.acf-post-integrations img {
	border-radius: 6px;
	margin-bottom: 3px;
}
.acf-post-integrations li a span { font-size: 0.8rem}