

// About Us Page Styles
.spspc-more-plugins-section {
  margin-top: 60px !important;
}

.spspc-more-plugins-header {
  text-align: center;
  margin-bottom: 40px !important;
}

.spspc-more-plugins-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #1e1e1e;
  margin: 0 0 10px 0;
}

.spspc-more-plugins-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4e4f52;
  margin: 0;
}

.spspc-more-plugins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  @media (max-width: 992px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 640px) {
    grid-template-columns: 1fr;
  }
}

.spspc-plugin-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px !important;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  position: relative;

  &:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #00a1ff;
  }

  .spspc-plugin-card-icon {
    margin-bottom: 16px !important;

    img {
      width: 48px;
    }

    svg {
      border-radius: 4px;
      overflow: hidden;
    }
  }

  .spspc-plugin-card-content {
    .spspc-plugin-card-title {
      font-size: 20px;
      font-weight: 600;
      color: #333333;
      margin: 0 0 8px 0;
      line-height: 1.3;
    }

    .spspc-plugin-card-desc {
      font-size: 14px;
      line-height: 1.5;
      color: #666666;
      margin: 0;
    }
  }

  .spspc-plugin-card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #00a1ff;
    width: 32px;
    height: 32px;
    border: 1px solid #00a2ff68;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
      display: block;
      width: 16px;
      height: 16px;
    }
  }

  &:hover .spspc-plugin-card-arrow {
    opacity: 1;
  }
}
