/* Explore Other Tools Section */
.explore-tools-section {
  padding: 75px 20px;
  background-color: #f9f9f9; /* Default background */
  position: relative;
  z-index: 0;
}

.explore-tools-container {
  margin: 0 auto;
  max-width: 1120px;
}

.explore-tools-header {
  margin-bottom: 40px;
}

.explore-tools-title {
  font-size: 40px;
  font-weight: 500;
  color: rgba(59, 63, 68, 1);
  margin-bottom: 16px;
}

.explore-tools-description {
  font-size: 20px;
  font-weight: 400;
  color: rgba(105, 106, 114, 1);
  max-width: 600px;
}

.explore-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
}

/* Tool Card */
.tool-card {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border-radius: 12px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.tool-arrow:hover {
  color: inherit;
}

.tool-side {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-info-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 17px 12px;
}

.tool-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background-color: transparent; /* Changed from placeholder bg */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-icon-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  border-radius: 8px; /* Ensure placeholder has radius */
}

.tool-content {
  flex-grow: 1;
}

.tool-title {
  margin-top: 0 !important;
  font-size: 15px;
  font-weight: 500;
  color: rgba(59, 63, 68, 1);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tool-description {
  font-size: 12px;
  font-weight: 400;
  color: rgba(107, 114, 128, 1);
  margin: 0;
  line-height: 1.4;
}

.tool-arrow {
  flex-shrink: 0;
  margin-left: 16px;
  color: rgba(107, 114, 128, 1);
  transition: all 0.3s ease;
}

.tool-card:hover .tool-arrow {
  color: rgba(59, 63, 68, 1);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .explore-tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Responsive adjustments */
@media (max-width: 380px) {
  .explore-tools-section {
    padding: 50px 20px;
  }

  .explore-tools-title {
    font-size: 28px;
  }

  .explore-tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    flex-direction: column;
  }

  .tool-side {
    width: 100%;
    height: 80px;
  }

  .tool-info-wrapper {
    padding: 20px;
  }
}
